Merge remote-tracking branch 'upstream/main'

the commit.
This commit is contained in:
Kunthawat Greethong
2025-12-18 16:12:53 +07:00
8 changed files with 70 additions and 3 deletions

View File

@@ -152,9 +152,23 @@ export const MODEL_OPTIONS: Record<string, ModelOption[]> = {
maxOutputTokens: 65_536 - 1,
// Gemini context window = input token + output token
contextWindow: 1_048_576,
// Recommended by Google: https://ai.google.dev/gemini-api/docs/gemini-3?thinking=high#temperature
temperature: 1.0,
dollarSigns: 4,
},
// https://ai.google.dev/gemini-api/docs/models#gemini-3-pro
{
name: "gemini-3-flash-preview",
displayName: "Gemini 3 Flash (Preview)",
description: "Powerful coding model at a good price",
// See Flash 2.5 comment below (go 1 below just to be safe, even though it seems OK now).
maxOutputTokens: 65_536 - 1,
// Gemini context window = input token + output token
contextWindow: 1_048_576,
// Recommended by Google: https://ai.google.dev/gemini-api/docs/gemini-3?thinking=high#temperature
temperature: 1.0,
dollarSigns: 2,
},
// https://ai.google.dev/gemini-api/docs/models#gemini-2.5-pro-preview-03-25
{
name: "gemini-2.5-pro",