We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7840435 commit a3dcb04Copy full SHA for a3dcb04
coagent/agents/aswarm/core.py
@@ -85,6 +85,8 @@ async def get_chat_completion(
85
p.pop("function_call", None)
86
p.pop("refusal", None)
87
88
+ p.pop("reasoning_content", None) # Remove possible reasoning content.
89
+
90
try:
91
response = await self.client.acompletion(**create_params)
92
async for chunk in response:
coagent/agents/util.py
@@ -72,7 +72,7 @@ async def is_user_confirmed(
72
""",
73
)
74
],
75
- client,
+ client=client,
76
77
answer = reply.content
78
return answer.strip().lower() == "true"
0 commit comments