Skip to content

Commit 440bca3

Browse files
committed
Run fmt
1 parent 62dd7a7 commit 440bca3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

agent_chat/src/functions/llm_chat.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ async def llm_chat(agent_input: LlmChatInput) -> dict[str, str]:
5151
log.error("llm_chat function failed", error=e)
5252
raise
5353
else:
54-
log.info("llm_chat function completed", assistant_raw_response=assistant_raw_response)
54+
log.info(
55+
"llm_chat function completed", assistant_raw_response=assistant_raw_response
56+
)
5557

5658
assistant_response = {
5759
"role": assistant_raw_response.choices[0].message.role,

0 commit comments

Comments
 (0)