Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Feb 19, 2024
1 parent a27f870 commit d06f8ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sam/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ def process_run(event: {str, Any}, say: Say, voice_prompt: bool = False):
logger.info(
f"Tool Call={tool_call.id} Function={tool_call.function.name}"
)
logger.debug(f"Tool Call={tool_call.id} Arguments={tool_call.function.arguments}")
logger.debug(
f"Tool Call={tool_call.id} Arguments={tool_call.function.arguments}"
)
kwargs = json.loads(tool_call.function.arguments)
tool_outputs.append(
{
Expand Down

0 comments on commit d06f8ac

Please sign in to comment.