CreateAssistantRequest constructor

const CreateAssistantRequest({
  1. required String model,
  2. String? name,
  3. String? description,
  4. String? instructions,
  5. List<AssistantTool>? tools,
  6. ToolResources? toolResources,
  7. Map<String, String>? metadata,
  8. double? temperature,
  9. double? topP,
  10. 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,
});