mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 23:01:56 +00:00
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:
parent
977dfec5c9
commit
9b08f92dd9
11 changed files with 37 additions and 21 deletions
|
|
@ -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 = () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue