com.launchableinc.openai.assistants.Tool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Basic java objects for the OpenAI GPT APIs
package com.launchableinc.openai.assistants;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@NoArgsConstructor
@AllArgsConstructor
@Data
public class Tool {
/**
* The type of tool being defined
*/
AssistantToolsEnum type;
/**
* Function definition, only used if type is "function"
*/
AssistantFunction function;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy