We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f976349 commit 96a1aecCopy full SHA for 96a1aec
src/agents/models/openai_responses.py
@@ -231,8 +231,8 @@ async def _fetch_response(
231
else:
232
logger.debug(
233
f"Calling LLM {self.model} with input:\n"
234
- f"{json.dumps(list_input, indent=2)}\n"
235
- f"Tools:\n{json.dumps(converted_tools.tools, indent=2)}\n"
+ f"{json.dumps(list_input, indent=2, ensure_ascii=False)}\n"
+ f"Tools:\n{json.dumps(converted_tools.tools, indent=2, ensure_ascii=False)}\n"
236
f"Stream: {stream}\n"
237
f"Tool choice: {tool_choice}\n"
238
f"Response format: {response_format}\n"
0 commit comments