From 44bddc286b03f4c6272ca8dd7e4208323967c4bd Mon Sep 17 00:00:00 2001 From: Roman Ventskus Date: Sun, 3 Mar 2024 20:59:16 +0100 Subject: [PATCH] init --- lib/src/model/chat_complete/response/message.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/model/chat_complete/response/message.dart b/lib/src/model/chat_complete/response/message.dart index 740f81b..8bc20cc 100644 --- a/lib/src/model/chat_complete/response/message.dart +++ b/lib/src/model/chat_complete/response/message.dart @@ -3,7 +3,7 @@ class Message { final String content; final String id = "${DateTime.now().millisecondsSinceEpoch}"; final Map? functionCall; - final Map? toolCalls; + final List>? toolCalls; Message({required this.role, required this.content, this.functionCall, this.toolCalls});