mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 11:29:46 +00:00
Fix unnecessary single quotes escaping in Google AI (#118522)
This commit is contained in:
@@ -140,7 +140,7 @@ class APIInstance:
|
||||
"""Call a LLM tool, validate args and return the response."""
|
||||
async_conversation_trace_append(
|
||||
ConversationTraceEventType.LLM_TOOL_CALL,
|
||||
{"tool_name": tool_input.tool_name, "tool_args": str(tool_input.tool_args)},
|
||||
{"tool_name": tool_input.tool_name, "tool_args": tool_input.tool_args},
|
||||
)
|
||||
|
||||
for tool in self.tools:
|
||||
|
||||
Reference in New Issue
Block a user