ee.carlrobert.llm.client.openai.completion.request.ToolFunctionParameters 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;
import java.util.List;
import java.util.Map;
public class ToolFunctionParameters {
private String type;
private Map properties;
private List required;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
public List getRequired() {
return required;
}
public void setRequired(List required) {
this.required = required;
}
}