ModifyGptAssistantRequest constructor

ModifyGptAssistantRequest({
  1. String? name,
  2. String? description,
  3. required String model,
  4. String? instructions,
  5. List<AssistantTool> tools = const [],
  6. List<String>? fileIds,
  7. Map<String, dynamic>? metadata,
})

Implementation

ModifyGptAssistantRequest(
    { this.name,
      this.description,
      required this.model,
      this.instructions,
      this.tools = const [],
      this.fileIds,
      this.metadata});