(20250123) Bug fix in LLM invocation.

This commit is contained in:
2025-01-23 10:32:09 +05:30
parent ff037e596e
commit 816789fce5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ async def invoke_llm(
"model": llm_response.model,
"output": llm_response.output,
"tokens": llm_response.tokens.model_dump(),
"invocationId": llm_response.invocationId
"invocationId": str(llm_response.invocationId)
} if success else None
)