AIAssistantToolStartedEvent constructor

AIAssistantToolStartedEvent({
  1. String? streamParentMessageId,
  2. int? runId,
  3. String? threadId,
  4. String? toolCallId,
  5. String? toolCallName,
  6. String? displayName,
  7. String? executionText,
  8. String? arguments,
  9. int? id,
  10. String? type,
  11. String? conversationId,
  12. String? parentId,
  13. Map<String, dynamic>? additionalProperties,
})

Implementation

AIAssistantToolStartedEvent({
  this.streamParentMessageId,
  this.runId,
  this.threadId,
  this.toolCallId,
  this.toolCallName,
  this.displayName,
  this.executionText,
  this.arguments,
  int? id,
  String? type,
  String? conversationId,
  String? parentId,
  Map<String, dynamic>? additionalProperties,
}) : super(
        id: id,
        type: type,
        conversationId: conversationId,
        parentId: parentId,
        additionalProperties: additionalProperties,
      );