All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.carlrobert.llm.client.openai.completion.request.Tool Maven / Gradle / Ivy

There is a newer version: 0.8.28
Show newest version
package ee.carlrobert.llm.client.openai.completion.request;

public class Tool {

  private String type;
  private ToolFunction function;

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public ToolFunction getFunction() {
    return function;
  }

  public void setFunction(ToolFunction function) {
    this.function = function;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy