CreateThreadAndRun constructor

CreateThreadAndRun({
  1. required String assistantId,
  2. String? model,
  3. String? instructions,
  4. Map? metadata,
  5. ThreadModel? thread,
  6. List? tools,
})

Implementation

CreateThreadAndRun({
  required this.assistantId,
  this.model,
  this.instructions,
  this.metadata,
  this.thread,
  this.tools
});