A Java and Retrofit2 based Client Library that you can use to interact with Google Bard. It can be used in Android or any Java and Kotlin Project.
To use library in your gradle project follow the steps below:
- Add this in your root
build.gradle
at the end of repositories:allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
- Add the dependency
dependencies { def BARD4J_VERSION = "..." implementation "com.github.llmjava:bard4j:$BARD4J_VERSION" }
To use the library in your Maven project, follow the steps below:
- Add the JitPack repository to your build file:
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
- Add the dependency
<dependency> <groupId>com.github.llmjava</groupId> <artifactId>bard4j</artifactId> <version>${BARD4J_VERSION}</version> </dependency>
Example code to use the Bard API:
Create a configuration file
# Set API key using env variable or put actual value
bard.apiKey=${env:BARD_API_KEY}
Create an instance of BardClient
and submit text generation requests
import com.github.llmjava.bard.*;
public class Main {
public static void main(String[] args) {
BardConfig config = BardConfig.fromProperties("bard4j.properties");
BardClient client = new BardClient.Builder().withConfig(config).build();
String input = "tell me a joke";
System.out.println(client.generate(input));
}
}
Clone the repository and import as Maven project in IntelliJ IDEA or Eclipse
Before building the project, make sure you have the following things installed.
- Maven
- Java 8
To install the API client library to your local Maven repository, simply execute:
mvn install
To build the library using Gradle, execute the following command
./gradlew build
Refer to the official documentation for more information.