Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
romanventskus-u committed Mar 3, 2024
1 parent 556b076 commit 44bddc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/model/chat_complete/response/message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Message {
final String content;
final String id = "${DateTime.now().millisecondsSinceEpoch}";
final Map<String, dynamic>? functionCall;
final Map<String, dynamic>? toolCalls;
final List<Map<String, dynamic>>? toolCalls;

Message({required this.role, required this.content, this.functionCall, this.toolCalls});

Expand Down

0 comments on commit 44bddc2

Please sign in to comment.