ee.carlrobert.llm.client.openai.completion.request.ToolFunction 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.openai.completion.request;
public class ToolFunction {
private String name;
private String description;
private ToolFunctionParameters parameters;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public ToolFunctionParameters getParameters() {
return parameters;
}
public void setParameters(ToolFunctionParameters parameters) {
this.parameters = parameters;
}
}