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

com.launchableinc.openai.assistants.Tool Maven / Gradle / Ivy

The newest version!
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