diff --git a/llm/cli.py b/llm/cli.py index c15e3ac..96b7d33 100644 --- a/llm/cli.py +++ b/llm/cli.py @@ -888,11 +888,6 @@ def logs_list( click.echo("\n## System:\n\n{}".format(row["system"])) current_system = row["system"] attachments = attachments_by_id.get(row["id"]) - # ### Attachments - - # 1. **image/jpeg**: `/path/example.jpg` - # 2. **image/png**: `https://example.com/image.png` - # 3. **application/pdf**: `` if attachments: click.echo("\n### Attachments\n") for i, attachment in enumerate(attachments, 1): @@ -909,7 +904,7 @@ def logs_list( ) elif attachment["content_length"]: click.echo( - "{}. **{}**: ``".format( + "{}. **{}**: `<{} bytes>`".format( i, attachment["type"], f"{attachment['content_length']:,}",