Skip to content

Commit

Permalink
better output formatting for longer lines
Browse files Browse the repository at this point in the history
  • Loading branch information
aantn committed Jun 5, 2024
1 parent 8491c80 commit eab27a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holmes.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def ask(
# we need to print this separately with markup=False because it contains arbitrary text and we don't want console.print to interpret it
console.print(f"{tool_call.description}. Output=\n{tool_call.result}", markup=False)
console.print(f"[bold green]AI:[/bold green]", end=" ")
console.print(text_result)
console.print(text_result, soft_wrap=True)


@investigate_app.command()
Expand Down

0 comments on commit eab27a4

Please sign in to comment.