Skip to content

Commit 460feb5

Browse files
committed
quoting
1 parent 74f6f2c commit 460feb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/eva/assistant/agentic/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ async def _run_tool_loop(
207207
"latency": llm_stats.get("latency", 0.0),
208208
"parameters": json.dumps(llm_stats.get("parameters", {})),
209209
"tool_calls": json.dumps(response_tool_calls_for_stats) if response_tool_calls_for_stats else "",
210-
"reasoning": llm_stats.get("reasoning_content", ""),
210+
"reasoning": f'"{llm_stats.get("reasoning_content", "")}"',
211211
}
212212
self.agent_perf_stats.append(perf_stat)
213213
logger.debug(

0 commit comments

Comments
 (0)