From 8aede553621009269046f2b027649ec03bb76da9 Mon Sep 17 00:00:00 2001 From: Rune Olsen Date: Thu, 4 Dec 2025 14:28:31 +0100 Subject: [PATCH] Small changes --- oai.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oai.py b/oai.py index f780523..b008e21 100644 --- a/oai.py +++ b/oai.py @@ -195,10 +195,11 @@ def chat(): table.add_row("Base URL", OPENROUTER_BASE_URL or "[Not set]") table.add_row("Streaming", "Enabled" if STREAM_ENABLED == "on" else "Disabled") table.add_row("Database", str(database) or "[Not set]") + table.add_row("Current Model", str(selected_model["name"]) or "[Not set]") console.print(Panel(table, title="[bold green]Current Configurations[/]", title_align="left")) continue - # **NEW: Handle /clear command to clear the screen** + # Handle /clear command to clear the screen if user_input.lower() == "/clear": clear_screen() console.print("[bold cyan]Screen cleared. Ready for your next input![/]")