feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
|
|
|
import { Cloud } from "lucide-react"
|
|
|
|
|
import type { ComponentProps, ReactNode } from "react"
|
|
|
|
|
import {
|
|
|
|
|
Command,
|
|
|
|
|
CommandDialog,
|
|
|
|
|
CommandEmpty,
|
|
|
|
|
CommandGroup,
|
|
|
|
|
CommandInput,
|
|
|
|
|
CommandItem,
|
|
|
|
|
CommandList,
|
|
|
|
|
CommandSeparator,
|
|
|
|
|
CommandShortcut,
|
|
|
|
|
} from "@/components/ui/command"
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
DialogTrigger,
|
|
|
|
|
} from "@/components/ui/dialog"
|
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorProps = ComponentProps<typeof Dialog>
|
|
|
|
|
|
|
|
|
|
export const ModelSelector = (props: ModelSelectorProps) => (
|
|
|
|
|
<Dialog {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorTriggerProps = ComponentProps<typeof DialogTrigger>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorTrigger = (props: ModelSelectorTriggerProps) => (
|
|
|
|
|
<DialogTrigger {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorContentProps = ComponentProps<typeof DialogContent> & {
|
|
|
|
|
title?: ReactNode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorContent = ({
|
|
|
|
|
className,
|
|
|
|
|
children,
|
|
|
|
|
title = "Model Selector",
|
|
|
|
|
...props
|
|
|
|
|
}: ModelSelectorContentProps) => (
|
|
|
|
|
<DialogContent className={cn("p-0", className)} {...props}>
|
|
|
|
|
<DialogTitle className="sr-only">{title}</DialogTitle>
|
|
|
|
|
<Command className="**:data-[slot=command-input-wrapper]:h-auto">
|
|
|
|
|
{children}
|
|
|
|
|
</Command>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorDialogProps = ComponentProps<typeof CommandDialog>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorDialog = (props: ModelSelectorDialogProps) => (
|
|
|
|
|
<CommandDialog {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorInputProps = ComponentProps<typeof CommandInput>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorInput = ({
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: ModelSelectorInputProps) => (
|
|
|
|
|
<CommandInput className={cn("h-auto py-3.5", className)} {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorListProps = ComponentProps<typeof CommandList>
|
|
|
|
|
|
2025-12-25 05:28:04 +05:30
|
|
|
export const ModelSelectorList = ({
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: ModelSelectorListProps) => (
|
|
|
|
|
<div className="relative">
|
|
|
|
|
<CommandList
|
|
|
|
|
className={cn(
|
|
|
|
|
// Hide scrollbar on all platforms
|
|
|
|
|
"[&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]",
|
|
|
|
|
className,
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
{/* Bottom shadow indicator for scrollable content */}
|
|
|
|
|
<div className="pointer-events-none absolute bottom-0 left-0 right-0 h-12 bg-gradient-to-t from-muted/80 via-muted/40 to-transparent" />
|
|
|
|
|
</div>
|
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorEmptyProps = ComponentProps<typeof CommandEmpty>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorEmpty = (props: ModelSelectorEmptyProps) => (
|
|
|
|
|
<CommandEmpty {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorGroupProps = ComponentProps<typeof CommandGroup>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorGroup = (props: ModelSelectorGroupProps) => (
|
|
|
|
|
<CommandGroup {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorItemProps = ComponentProps<typeof CommandItem>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorItem = (props: ModelSelectorItemProps) => (
|
|
|
|
|
<CommandItem {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorShortcutProps = ComponentProps<typeof CommandShortcut>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorShortcut = (props: ModelSelectorShortcutProps) => (
|
|
|
|
|
<CommandShortcut {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorSeparatorProps = ComponentProps<
|
|
|
|
|
typeof CommandSeparator
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorSeparator = (props: ModelSelectorSeparatorProps) => (
|
|
|
|
|
<CommandSeparator {...props} />
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorLogoProps = Omit<
|
|
|
|
|
ComponentProps<"img">,
|
|
|
|
|
"src" | "alt"
|
|
|
|
|
> & {
|
|
|
|
|
provider: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorLogo = ({
|
|
|
|
|
provider,
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: ModelSelectorLogoProps) => {
|
|
|
|
|
// Use Lucide icon for bedrock since models.dev doesn't have a good AWS icon
|
|
|
|
|
if (provider === "amazon-bedrock") {
|
|
|
|
|
return <Cloud className={cn("size-4", className)} />
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
test: add Vitest and Playwright testing infrastructure (#512)
* test: add Vitest and Playwright testing infrastructure
- Add Vitest for unit tests (39 tests)
- cached-responses.test.ts
- ai-providers.test.ts
- chat-helpers.test.ts
- utils.test.ts
- Add Playwright for E2E tests (3 smoke tests)
- Homepage load
- Japanese locale
- Settings dialog
- Add CI workflow (.github/workflows/test.yml)
- Add vitest.config.mts and playwright.config.ts
- Update .gitignore for test artifacts
* test: add more E2E tests for UI components
- Chat panel tests (interactive elements, iframe)
- Settings tests (dark mode, language, draw.io theme)
- Save dialog tests (buttons exist)
- History dialog tests
- Model config tests
- Keyboard interaction tests
- Upload area tests
Total: 15 E2E tests, all passing
* test: fix E2E test issues from review
Fixes based on Gemini and Codex review:
- Remove brittle nth(1) selector in keyboard tests
- Remove waitForTimeout(500) race condition
- Remove if(isVisible) silent skip patterns
- Add proper assertions instead of no-op checks
- Remove expect(count >= 0) that always passes
- Remove unused hasProviderUI variable
All 14 E2E tests and 39 unit tests pass.
* style: auto-format with Biome
* fix: resolve lint errors for CI
* test(e2e): add diagram generation tests with mocked AI responses
- Add tests for generate, edit, and append diagram operations
- Use SSE mocked responses matching AI SDK UI message stream format
- Generate mxCell XML directly in tests for deterministic assertions
- Tests verify tool card rendering and 'Complete' badge state
* test: add comprehensive E2E tests for all major features
- Error handling tests (API errors, rate limits, network timeout, truncated XML)
- Multi-turn conversation tests (sequential requests, history preservation)
- File upload tests (upload button, file preview, sending with message)
- Theme switching tests (dark mode toggle, persistence, system preference)
- Language switching tests (EN/JA/ZH, persistence, locale URLs)
- Iframe interaction tests (draw.io loading, toolbar, diagram rendering)
- Copy/paste tests (chat input, XML input, special characters)
- History restore tests (new chat, persistence, browser navigation)
* refactor: extract shared test helpers and improve error assertions
- Create tests/e2e/lib/helpers.ts with shared SSE mock functions
- Add proper error UI assertions to error-handling.spec.ts
- Remove waitForTimeout calls in favor of real assertions
- Update 6 test files to use shared helpers
* docs: add testing section to CONTRIBUTING.md
* fix: improve test infrastructure based on PR review
- Fix double build in CI: remove redundant build from playwright webServer
- Export chat helpers from shared module for proper unit testing
- Replace waitForTimeout with explicit waits in E2E tests
- Add data-testid attributes to settings and new chat buttons
- Add list reporter for CI to show failures in logs
- Add Playwright browser caching to speed up CI
- Add vitest coverage configuration
- Fix conditional test assertions to use test.skip() instead of silent pass
- Remove unused variables flagged by linter
* fix: improve E2E test assertions and remove silent skips
- Replace silent test.skip() with explicit conditional skips
- Add actual persistence assertion after page reload
- Use data-testid selector for new chat button test
* refactor: add shared fixtures and test.step() patterns
- Add tests/e2e/lib/fixtures.ts with shared test helpers
- Add tests/e2e/fixtures/diagrams.ts with XML test data
- Add expectBeforeAndAfterReload() helper for persistence tests
- Add test.step() for better test reporting in complex tests
- Consolidate mock helpers into fixtures module
- Reduce code duplication across 17 test files
* fix: make persistence tests more reliable
- Remove expectBeforeAndAfterReload from mocked API tests
- Add explicit test.step() for before/after reload checks
- Add retry config for flaky clipboard tests
- Add sleep after reload for language persistence test
* test: remove flaky XML paste test
* docs: run both unit and e2e tests before PR
* chore: add type check and unit test git hooks
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-01-05 01:37:32 +09:00
|
|
|
// biome-ignore lint/performance/noImgElement: External URL from models.dev
|
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
|
|
|
<img
|
|
|
|
|
{...props}
|
|
|
|
|
alt={`${provider} logo`}
|
|
|
|
|
className={cn("size-4 dark:invert", className)}
|
|
|
|
|
height={16}
|
|
|
|
|
src={`https://models.dev/logos/${provider}.svg`}
|
|
|
|
|
width={16}
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorLogoGroupProps = ComponentProps<"div">
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorLogoGroup = ({
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: ModelSelectorLogoGroupProps) => (
|
|
|
|
|
<div
|
|
|
|
|
className={cn(
|
|
|
|
|
"-space-x-1 flex shrink-0 items-center [&>img]:rounded-full [&>img]:bg-background [&>img]:p-px [&>img]:ring-1 dark:[&>img]:bg-foreground",
|
|
|
|
|
className,
|
|
|
|
|
)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export type ModelSelectorNameProps = ComponentProps<"span">
|
|
|
|
|
|
|
|
|
|
export const ModelSelectorName = ({
|
|
|
|
|
className,
|
|
|
|
|
...props
|
|
|
|
|
}: ModelSelectorNameProps) => (
|
|
|
|
|
<span className={cn("flex-1 truncate text-left", className)} {...props} />
|
|
|
|
|
)
|