Skip to content

Commit

Permalink
Merge pull request #4 from narenaryan/fix/remove-panel
Browse files Browse the repository at this point in the history
fix: remove panel to make it easy to copy
  • Loading branch information
narenaryan authored Jun 24, 2024
2 parents d6db8e9 + 56f42af commit 55a8647
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/promptml_cli/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# pylint: disable=invalid-name
version = "0.2.1"
version = "0.2.2"
6 changes: 3 additions & 3 deletions src/promptml_cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ def run():
continue
message += chunk
markdown_content = Markdown(message, "\n")
panel = Panel(markdown_content, border_style=neon_blue, safe_box=True)
live.update(panel)
live.update(markdown_content)

if not args.raw:
console.print(f"\nTime taken: {time.time() - now} seconds", style="bold green")
time_taken = round(time.time() - now, 2)
console.print(f"\nTime taken: {time_taken} seconds", style="bold green")

if __name__ == '__main__':
run()

0 comments on commit 55a8647

Please sign in to comment.