From b56ee93e1674a6dd0b9a8f654bf54fb1c186fe20 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Fri, 19 Dec 2025 14:20:43 +0800 Subject: [PATCH 1/3] chore: attachment margin --- .../components/message-entry-container/attachment-popover.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 67adf7a0a86bb48e6aaea5b96dd8125f1110e4c0 Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Fri, 19 Dec 2025 14:23:01 +0800 Subject: [PATCH 2/3] remove: paper-score --- webapp/_webapp/src/views/chat/actions/actions.ts | 9 --------- 1 file changed, 9 deletions(-) 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( From fe3001ddea0672adf263e2ffdffbaccb1145eced Mon Sep 17 00:00:00 2001 From: Junyi Hou Date: Sat, 20 Dec 2025 15:01:55 +0800 Subject: [PATCH 3/3] update the supported models --- internal/api/chat/list_supported_models_v2.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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{