ChatArea retry button uses setInput instead of direct sendToGateway, fix bootstrap spinner stuck for non-logged-in users, remove dead CSS (aurora-title/sidebar-open/quick-action-chips), add ai components (ReasoningBlock/StreamingText/ChatMode/ModelSelector/TaskProgress), add ClassroomPlayer + ResizableChatLayout + artifact panel Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
592 B
SQL
11 lines
592 B
SQL
-- Add is_embedding column to models table
|
|
-- Distinguishes embedding models from chat/completion models
|
|
ALTER TABLE models ADD COLUMN IF NOT EXISTS is_embedding BOOLEAN NOT NULL DEFAULT FALSE;
|
|
|
|
-- Add model_type column for future extensibility (chat, embedding, image, audio, etc.)
|
|
ALTER TABLE models ADD COLUMN IF NOT EXISTS model_type TEXT NOT NULL DEFAULT 'chat';
|
|
|
|
-- Index for quick filtering of embedding models
|
|
CREATE INDEX IF NOT EXISTS idx_models_is_embedding ON models(is_embedding) WHERE is_embedding = TRUE;
|
|
CREATE INDEX IF NOT EXISTS idx_models_model_type ON models(model_type);
|