fix: update tool call content formatting and enhance mouse click description

This commit is contained in:
2025-05-19 20:42:18 +02:00
parent 36cfeffe9c
commit 7192f4bc18
2 changed files with 2 additions and 2 deletions

View File

@@ -117,7 +117,7 @@ class AIProcessor:
self.session.messages.append(
aic.Message(
role="assistant",
content=str(tool_calls),
content=str(((tc.function.name, tc.function.arguments) for tc in tool_calls)),
)
)