diff --git a/internal/api/chat/list_supported_models_v2.go b/internal/api/chat/list_supported_models_v2.go index fe0f4df..7c37a7b 100644 --- a/internal/api/chat/list_supported_models_v2.go +++ b/internal/api/chat/list_supported_models_v2.go @@ -35,14 +35,6 @@ func (s *ChatServerV2) ListSupportedModels( InputPrice: 200, OutputPrice: 800, }, - { - Name: "GPT-4o", - Slug: "openai/gpt-4o", - TotalContext: 128000, - MaxOutput: 16400, - InputPrice: 250, - OutputPrice: 1000, - }, { Name: "GPT-4.1-mini", Slug: "openai/gpt-4.1-mini", @@ -75,6 +67,14 @@ func (s *ChatServerV2) ListSupportedModels( InputPrice: 30, OutputPrice: 250, }, + { + Name: "Gemini 3 Flash Preview", + Slug: "google/gemini-3-flash-preview", + TotalContext: 1050000, + MaxOutput: 65500, + InputPrice: 50, + OutputPrice: 300, + }, } } else { models = []*chatv2.SupportedModel{ diff --git a/webapp/_webapp/src/components/message-entry-container/attachment-popover.tsx b/webapp/_webapp/src/components/message-entry-container/attachment-popover.tsx index 4fab06b..73b042e 100644 --- a/webapp/_webapp/src/components/message-entry-container/attachment-popover.tsx +++ b/webapp/_webapp/src/components/message-entry-container/attachment-popover.tsx @@ -4,7 +4,7 @@ import { STYLES } from "../message-card"; // Components export const AttachmentPopover = ({ attachment }: { attachment: string }) => ( - + attachment diff --git a/webapp/_webapp/src/views/chat/actions/actions.ts b/webapp/_webapp/src/views/chat/actions/actions.ts index 761b294..757bd4e 100644 --- a/webapp/_webapp/src/views/chat/actions/actions.ts +++ b/webapp/_webapp/src/views/chat/actions/actions.ts @@ -35,15 +35,6 @@ export const useActions = ({ enabled, filter }: useActionsProps) => { ShowHistory(); }, }, - { - name: ":paper-score", - description: "Analyze Paper Score", - action: async () => { - setPrompt(""); - inputRef?.current?.focus(); - await sendMessageStream("Go through the paper and give me a score of the current paper.", ""); - }, - }, ]; return items.filter(