CreateGptAssistantRequest constructor

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

Implementation

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