com.launchableinc.openai.runs.RunCreateRequest 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.runs;
import com.launchableinc.openai.assistants.Tool;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
import java.util.Map;
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
public class RunCreateRequest {
String assistantId;
// Optional
String model;
String instructions;
List tools;
Map metadata;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy