Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions internal/api/chat/list_supported_models_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { STYLES } from "../message-card";
// Components
export const AttachmentPopover = ({ attachment }: { attachment: string }) => (
<Popover placement="bottom" showArrow={true} className="!mt-1">
<PopoverTrigger className="bg-gray-200 !rounded-xl !flex !w-fit noselect">
<PopoverTrigger className="bg-gray-200 !rounded-xl !flex !w-fit mt-1 noselect">
<span className="!text-xs !text-gray-400 border border-gray-300 !rounded-lg !px-1">attachment</span>
</PopoverTrigger>
<PopoverContent className={STYLES.attachment.content}>
Expand Down
9 changes: 0 additions & 9 deletions webapp/_webapp/src/views/chat/actions/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Loading