CreateAssistantRequest constructor
const
CreateAssistantRequest({
- required String model,
- String? name,
- String? description,
- String? instructions,
- List<
AssistantTool> ? tools, - ToolResources? toolResources,
- Map<
String, String> ? metadata, - double? temperature,
- double? topP,
- AssistantResponseFormat? responseFormat,
Implementation
const CreateAssistantRequest({
required this.model,
this.name,
this.description,
this.instructions,
this.tools,
this.toolResources,
this.metadata,
this.temperature,
this.topP,
this.responseFormat,
});