com.launchableinc.openai.assistants.AssistantFunction 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.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Map;
/**
* @description:
* @author: vacuity
* @create: 2023-11-20 10:09
**/
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
public class AssistantFunction {
private String description;
private String name;
private Map parameters;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy