Skip to content

Commit

Permalink
Use -- none -- for no prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Feb 27, 2025
1 parent 3d4871f commit c58e3a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ def logs_list(
# In conversation log mode only show it for the first one
if conversation_id:
should_show_conversation = False
click.echo("## Prompt\n\n{}".format(row["prompt"] or "- none -"))
click.echo("## Prompt\n\n{}".format(row["prompt"] or "-- none --"))
if row["system"] != current_system:
if row["system"] is not None:
click.echo("\n## System\n\n{}".format(row["system"]))
Expand Down

0 comments on commit c58e3a2

Please sign in to comment.