We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2fcdc1 commit e2dc1e8Copy full SHA for e2dc1e8
1 file changed
flowllm/core/schema/message.py
@@ -29,6 +29,10 @@ def simple_dump(self, add_reasoning: bool = False) -> dict:
29
30
if self.tool_calls:
31
result["tool_calls"] = [x.simple_output_dump() for x in self.tool_calls]
32
+
33
+ if self.tool_call_id:
34
+ result["tool_call_id"] = self.tool_call_id
35
36
return result
37
38
@property
0 commit comments