Skip to content

Commit 56f42af

Browse files
committed
fix: remove panel to make it easy to copy
1 parent d6db8e9 commit 56f42af

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/promptml_cli/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# pylint: disable=invalid-name
2-
version = "0.2.1"
2+
version = "0.2.2"

src/promptml_cli/main.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ def run():
129129
continue
130130
message += chunk
131131
markdown_content = Markdown(message, "\n")
132-
panel = Panel(markdown_content, border_style=neon_blue, safe_box=True)
133-
live.update(panel)
132+
live.update(markdown_content)
134133

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

138138
if __name__ == '__main__':
139139
run()

0 commit comments

Comments
 (0)