ee.carlrobert.llm.client.codegpt.request.chat.Metadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of llm-client Show documentation
Show all versions of llm-client Show documentation
Java http client wrapped around the OkHttp3 library
package ee.carlrobert.llm.client.codegpt.request.chat;
public class Metadata {
private final String pluginVersion;
private final String platformVersion;
public Metadata(String pluginVersion, String platformVersion) {
this.pluginVersion = pluginVersion;
this.platformVersion = platformVersion;
}
public String getPluginVersion() {
return pluginVersion;
}
public String getPlatformVersion() {
return platformVersion;
}
}