AIChatMessageToolCall constructor

const AIChatMessageToolCall({
  1. required String id,
  2. required String name,
  3. required String argumentsRaw,
  4. required Map<String, dynamic> arguments,
})

A tool that the model wants to call.

Implementation

const AIChatMessageToolCall({
  required this.id,
  required this.name,
  required this.argumentsRaw,
  required this.arguments,
});