Skip to content

Commit 541a99c

Browse files
authored
fix(model): Remove the validation that tool_call_id must be empty. (#497)
1 parent f094abe commit 541a99c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/domain/agent/singleagent/internal/agentflow/callback_reply_chunk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ func concatToolsNodeOutput(ctx context.Context, output *schema.StreamReader[call
286286
msgs := convToolsNodeCallbackOutput(cbOut)
287287

288288
for _, msg := range msgs {
289-
if msg == nil || msg.ToolCallID == "" {
289+
if msg == nil {
290290
continue
291291
}
292292

0 commit comments

Comments
 (0)