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![/]")