Skip to content

Commit 32f0393

Browse files
committed
Removing fallback from call_id
1 parent ebe28b6 commit 32f0393

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/crewai/src/crewai/llms/providers/openai/completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ def _to_responses_input(message: LLMMessage) -> list[dict[str, Any] | LLMMessage
779779
items.append(
780780
{
781781
"type": "function_call",
782-
"call_id": call.get("id"),
782+
"call_id": call.get("id", ""),
783783
"name": function.get("name", ""),
784784
"arguments": args,
785785
}

0 commit comments

Comments
 (0)