We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f6f2c commit 460feb5Copy full SHA for 460feb5
src/eva/assistant/agentic/system.py
@@ -207,7 +207,7 @@ async def _run_tool_loop(
207
"latency": llm_stats.get("latency", 0.0),
208
"parameters": json.dumps(llm_stats.get("parameters", {})),
209
"tool_calls": json.dumps(response_tool_calls_for_stats) if response_tool_calls_for_stats else "",
210
- "reasoning": llm_stats.get("reasoning_content", ""),
+ "reasoning": f'"{llm_stats.get("reasoning_content", "")}"',
211
}
212
self.agent_perf_stats.append(perf_stat)
213
logger.debug(
0 commit comments