Filter model selector by API keys and add user-facing documentation

- Model selector now only shows models with configured API keys
- Added yellow hint in model selector UI explaining the filtering
- Updated README.md to document the filtering behavior in both API Keys and /model sections
- Bumped version to 0.7.11
This commit is contained in:
Mario Zechner 2025-11-16 21:01:31 +01:00
parent 977dfec5c9
commit 9b08f92dd9
11 changed files with 37 additions and 21 deletions

View file

@ -35,6 +35,12 @@ export class ModelSelectorComponent extends Container {
this.addChild(new Text(chalk.blue("─".repeat(80)), 0, 0));
this.addChild(new Spacer(1));
// Add hint about API key filtering
this.addChild(
new Text(chalk.yellow("Only showing models with configured API keys (see README for details)"), 0, 0),
);
this.addChild(new Spacer(1));
// Create search input
this.searchInput = new Input();
this.searchInput.onSubmit = () => {