feat: resolve issues #101, #102, #103#92
Merged
Conversation
#103 - No-model warning: InputBar now shows an amber banner when the user tries to send without a model selected, instead of silently dropping the prompt. #102 - Model picker in settings: replace text+datalist inputs with a proper searchable dropdown (same style as the chat window picker, no routing profiles). Global default model picker also syncs defaultProviderId automatically. Provider default model field is now a <select> populated from fetched models. Removed redundant 'Default Provider' field (the picker sets it implicitly). #101 - Folder/sidebar UI improvements: - Indent guide lines: opacity 0.22 → 0.40 for better visibility - Folder custom icon: set emoji or image URL in Folder Settings; Simple Icons CDN picker (type a slug, preview, apply) built into the modal - Provider logo: new logoUrl field on ProviderConfig, auto-filled from Simple Icons based on provider type; shown next to conversations in the sidebar - New conversations inherit defaultModel/defaultProviderId from settings Also: SchemaFormRenderer now skips fields with renderOverride === false, allowing sections to be hidden without removing schema contributions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #101, #102, #103
#103 — Prompt dropped when no model set
InputBarnow shows an amber warning banner when the user tries to send without a model selected, instead of silently dropping the prompt. Typing in the input clears the warning. The banner links contextually to the model picker.#102 — Model picker in settings
defaultProviderId. Includes a "Clear selection" button.<select>populated from the provider's fetched + custom models.SchemaFormRenderernow skips fields whererenderOverrides[key] === false, enabling fields to be hidden without modifying the schema.#101 — Folder/sidebar UI improvements
0.22→0.40for better at-a-glance visibility.react,docker), preview the icon live, click Use to apply. No package install required.logoUrlfield onProviderConfig, auto-filled from Simple Icons based on provider type (OpenAI, Anthropic, Gemini, Ollama, Bedrock, GitHub Copilot). When set, the logo replaces the generic chat bubble icon next to each conversation in the sidebar.defaultModel/defaultProviderIdfrom settings (including provider-leveldefaultModelfallback).Other
types.ts:ConversationFoldergetsicon?: string;ProviderConfiggetslogoUrl?: string.