From bbd72fb8b0bb6de580d2041a0150016227c63ac0 Mon Sep 17 00:00:00 2001 From: Stefan Avram <98915060+Slickstef11@users.noreply.github.com> Date: Sat, 5 Sep 2026 09:51:32 -0400 Subject: [PATCH 01/94] fix(console): connect enterprise form to Chatwoot (#47488) Co-authored-by: slickstef11 --- infra/console.ts | 2 ++ packages/console/app/src/routes/api/enterprise.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/infra/console.ts b/infra/console.ts index 764807d978fb..44d82a2fb0d9 100644 --- a/infra/console.ts +++ b/infra/console.ts @@ -244,6 +244,7 @@ const bucketNew = new sst.cloudflare.Bucket("ZenDataNew") const DISCORD_INCIDENT_WEBHOOK_URL = new sst.Secret("DISCORD_INCIDENT_WEBHOOK_URL") const AWS_SES_ACCESS_KEY_ID = new sst.Secret("AWS_SES_ACCESS_KEY_ID") const AWS_SES_SECRET_ACCESS_KEY = new sst.Secret("AWS_SES_SECRET_ACCESS_KEY") +const ENTERPRISE_SALES_INBOX_EMAIL = new sst.Secret("ENTERPRISE_SALES_INBOX_EMAIL") const SALESFORCE_CLIENT_ID = new sst.Secret("SALESFORCE_CLIENT_ID") const SALESFORCE_CLIENT_SECRET = new sst.Secret("SALESFORCE_CLIENT_SECRET") @@ -273,6 +274,7 @@ new sst.cloudflare.x.SolidStart("Console", { EMAILOCTOPUS_API_KEY, AWS_SES_ACCESS_KEY_ID, AWS_SES_SECRET_ACCESS_KEY, + ENTERPRISE_SALES_INBOX_EMAIL, SALESFORCE_CLIENT_ID, SALESFORCE_CLIENT_SECRET, SALESFORCE_INSTANCE_URL, diff --git a/packages/console/app/src/routes/api/enterprise.ts b/packages/console/app/src/routes/api/enterprise.ts index ff8f229e8b9e..65f5c72b2311 100644 --- a/packages/console/app/src/routes/api/enterprise.ts +++ b/packages/console/app/src/routes/api/enterprise.ts @@ -98,7 +98,7 @@ ${body.phone ? `${body.phone}
` : ""}`.trim() return false }), AWS.sendEmail({ - to: "contact@anoma.ly", + to: Resource.ENTERPRISE_SALES_INBOX_EMAIL.value, subject: `Enterprise Inquiry from ${body.name}`, body: emailContent, replyTo: body.email, From 7c2199d84a5830f70a8250731a42ff958145b4d6 Mon Sep 17 00:00:00 2001 From: far-ouq <125839498+far-ouq@users.noreply.github.com> Date: Sat, 5 Sep 2026 19:29:29 -0400 Subject: [PATCH 02/94] fix(opencode): add GitLab reasoning variants (#47306) --- bun.lock | 6 +++--- packages/core/package.json | 2 +- packages/opencode/package.json | 2 +- packages/opencode/src/provider/transform.ts | 5 ++++- .../opencode/test/provider/transform.test.ts | 18 ++++++++++++++++-- 5 files changed, 25 insertions(+), 8 deletions(-) diff --git a/bun.lock b/bun.lock index 12e2a52f1b13..ac048b971514 100644 --- a/bun.lock +++ b/bun.lock @@ -341,7 +341,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.13.0", + "gitlab-ai-provider": "6.14.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", @@ -634,7 +634,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.13.0", + "gitlab-ai-provider": "6.14.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", @@ -3845,7 +3845,7 @@ "github-slugger": ["github-slugger@2.0.0", "", {}, "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw=="], - "gitlab-ai-provider": ["gitlab-ai-provider@6.13.0", "", { "dependencies": { "@anthropic-ai/sdk": "^0.71.0", "@anycable/core": "^0.9.2", "graphql-request": "^6.1.0", "isomorphic-ws": "^5.0.0", "openai": "^6.16.0", "socket.io-client": "^4.8.1", "vscode-jsonrpc": "^8.2.1", "zod": "^3.25.76" }, "peerDependencies": { "@ai-sdk/provider": ">=3.0.0", "@ai-sdk/provider-utils": ">=4.0.0" } }, "sha512-JDZhNjvoiB7xBfesNegXNDg6ItKf9M2l8/DifuIyuvYmGgaZnDDbl89QrOKSoIzAOpo/+3Om0qviBPm84nGEbg=="], + "gitlab-ai-provider": ["gitlab-ai-provider@6.14.0", "", { "dependencies": { "@anthropic-ai/sdk": "^0.71.0", "@anycable/core": "^0.9.2", "graphql-request": "^6.1.0", "isomorphic-ws": "^5.0.0", "openai": "^6.16.0", "socket.io-client": "^4.8.1", "vscode-jsonrpc": "^8.2.1", "zod": "^3.25.76" }, "peerDependencies": { "@ai-sdk/provider": ">=3.0.0", "@ai-sdk/provider-utils": ">=4.0.0" } }, "sha512-qTkmFhcHXH0tjQN6i5D2lz9OpmYN0lwJdmFIXlsmy6IiYVV2dmsqMemlDNjpE5M8gdSC+61n4mByPzVsyBu0lg=="], "glob": ["glob@13.0.5", "", { "dependencies": { "minimatch": "^10.2.1", "minipass": "^7.1.2", "path-scurry": "^2.0.0" } }, "sha512-BzXxZg24Ibra1pbQ/zE7Kys4Ua1ks7Bn6pKLkVPZ9FZe4JQS6/Q7ef3LG1H+k7lUf5l4T3PLSyYyYJVYUvfgTw=="], diff --git a/packages/core/package.json b/packages/core/package.json index 276b0fe8f76d..5e6ccd4c4738 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -108,7 +108,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.13.0", + "gitlab-ai-provider": "6.14.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", diff --git a/packages/opencode/package.json b/packages/opencode/package.json index b5c8e1d3ac8e..4d3710b62cb5 100644 --- a/packages/opencode/package.json +++ b/packages/opencode/package.json @@ -120,7 +120,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.13.0", + "gitlab-ai-provider": "6.14.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", diff --git a/packages/opencode/src/provider/transform.ts b/packages/opencode/src/provider/transform.ts index 89b9c88ae3cc..f0be2d153751 100644 --- a/packages/opencode/src/provider/transform.ts +++ b/packages/opencode/src/provider/transform.ts @@ -1824,11 +1824,14 @@ function reasoningEffort(model: Provider.Model, effort: string) { case "ai-gateway-provider": case "merge-gateway-ai-sdk-provider": return { reasoningEffort: effort } + case "gitlab-ai-provider": + if (model.family?.startsWith("gpt")) return { reasoningEffort: effort } + if (model.family?.startsWith("claude")) return { thinking: { type: "adaptive", effort } } + return case "@ai-sdk/cohere": case "@ai-sdk/perplexity": case "@ai-sdk/vercel": case "@ai-sdk/alibaba": - case "gitlab-ai-provider": return } } diff --git a/packages/opencode/test/provider/transform.test.ts b/packages/opencode/test/provider/transform.test.ts index 9d767581b706..2f3e4a10c646 100644 --- a/packages/opencode/test/provider/transform.test.ts +++ b/packages/opencode/test/provider/transform.test.ts @@ -3798,10 +3798,11 @@ describe("ProviderTransform sampling defaults - DeepSeek", () => { describe("ProviderTransform.reasoningVariants", () => { const model = (reasoning_options: ModelsDev.Model["reasoning_options"]) => ({ reasoning_options }) as ModelsDev.Model - const target = (npm: string, id = "test-model") => + const target = (npm: string, id = "test-model", family = "") => ({ id, providerID: "test", + family, api: { id, npm, url: "" }, capabilities: { reasoning: true }, limit: { output: 64_000 }, @@ -3951,6 +3952,19 @@ describe("ProviderTransform.reasoningVariants", () => { }) }) + test("maps GitLab model efforts to provider-specific options", () => { + const options = model([{ type: "effort", values: ["max"] }]) + const openai = target("gitlab-ai-provider", "duo-chat-gpt-5-6-sol", "gpt-sol") + const anthropic = target("gitlab-ai-provider", "duo-chat-opus-4-8", "claude-opus") + + expect(ProviderTransform.reasoningVariants(options, openai)).toEqual({ + max: { reasoningEffort: "max" }, + }) + expect(ProviderTransform.reasoningVariants(options, anthropic)).toEqual({ + max: { thinking: { type: "adaptive", effort: "max" } }, + }) + }) + test("uses adaptive reasoning config for Anthropic models on Bedrock", () => { expect( ProviderTransform.reasoningVariants( @@ -4150,7 +4164,7 @@ describe("ProviderTransform.reasoningVariants", () => { expect(ProviderTransform.reasoningVariants(effort, target("@ai-sdk/github-copilot", "gemini-3-pro"))).toEqual({}) }) - test.each(["@ai-sdk/cohere", "@ai-sdk/perplexity", "@ai-sdk/vercel", "@ai-sdk/alibaba", "gitlab-ai-provider"])( + test.each(["@ai-sdk/cohere", "@ai-sdk/perplexity", "@ai-sdk/vercel", "@ai-sdk/alibaba"])( "does not invent effort controls for %s", (npm) => { expect(ProviderTransform.reasoningVariants(model([{ type: "effort", values: ["high"] }]), target(npm))).toEqual( From 1ddaeec480e64388276e4b76af141d4ce04f5b69 Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 6 Sep 2026 12:31:27 +0800 Subject: [PATCH 03/94] docs(console): add localized refund FAQs for Go and Zen (#47575) --- packages/console/app/src/i18n/ar.ts | 7 +++++++ packages/console/app/src/i18n/br.ts | 7 +++++++ packages/console/app/src/i18n/da.ts | 7 +++++++ packages/console/app/src/i18n/de.ts | 7 +++++++ packages/console/app/src/i18n/en.ts | 6 ++++++ packages/console/app/src/i18n/es.ts | 7 +++++++ packages/console/app/src/i18n/fr.ts | 7 +++++++ packages/console/app/src/i18n/it.ts | 7 +++++++ packages/console/app/src/i18n/ja.ts | 7 +++++++ packages/console/app/src/i18n/ko.ts | 7 +++++++ packages/console/app/src/i18n/no.ts | 7 +++++++ packages/console/app/src/i18n/pl.ts | 7 +++++++ packages/console/app/src/i18n/ru.ts | 7 +++++++ packages/console/app/src/i18n/th.ts | 7 +++++++ packages/console/app/src/i18n/tr.ts | 7 +++++++ packages/console/app/src/i18n/uk.ts | 6 ++++++ packages/console/app/src/i18n/zh.ts | 7 +++++++ packages/console/app/src/i18n/zht.ts | 7 +++++++ packages/console/app/src/routes/go/index.tsx | 9 +++++++++ packages/console/app/src/routes/zen/index.tsx | 10 ++++++++++ 20 files changed, 143 insertions(+) diff --git a/packages/console/app/src/i18n/ar.ts b/packages/console/app/src/i18n/ar.ts index fb7dae2a844e..54547d776216 100644 --- a/packages/console/app/src/i18n/ar.ts +++ b/packages/console/app/src/i18n/ar.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "إلغاء", "common.creating": "جارٍ الإنشاء...", "common.create": "إنشاء", + "common.contactUs": "اتصل بنا", "common.videoUnsupported": "متصفحك لا يدعم وسم الفيديو.", "common.figure": "شكل {{n}}.", @@ -224,6 +225,9 @@ export const dict = { "zen.faq.q8": "هل يمكنني استخدام Zen مع وكلاء برمجة آخرين؟", "zen.faq.a8": "بينما يعمل Zen بشكل رائع مع OpenCode، يمكنك استخدام Zen مع أي وكيل. اتبع تعليمات الإعداد في وكيل البرمجة المفضل لديك.", + "zen.faq.q9": "هل يمكنني استرداد أموالي؟", + "zen.faq.a9": + "قد تكون مؤهلًا لاسترداد أموالك إذا تم الخصم خلال آخر 14 يومًا ولم تستخدم الرصيد الناتج عن عملية الشراء هذه. {{contact}} لطلب استرداد الأموال.", "zen.cta.start": "ابدأ مع Zen", "zen.pricing.title": "أضف رصيد 20 دولار (دفع حسب الاستخدام)", @@ -363,6 +367,9 @@ export const dict = { "go.faq.q9": "ما الفرق بين النماذج المجانية وGo؟", "go.faq.a9": "تشمل النماذج المجانية Big Pickle بالإضافة إلى النماذج الترويجية المتاحة في ذلك الوقت، مع حصة قدرها 200 طلب/يوم. يقدّم Go مجموعة منسقة من النماذج مع حصص طلبات أعلى مطبقة عبر نوافذ متجددة (5 ساعات، وأسبوعية، وشهرية)، تعادل الحصص الأساسية فيها تقريبًا $12 لكل 5 ساعات و$30 في الأسبوع و$60 في الشهر؛ وقد تختلف الحصص حسب النموذج (تختلف أعداد الطلبات الفعلية حسب النموذج والاستخدام).", + "go.faq.q10": "هل يمكنني استرداد أموالي؟", + "go.faq.a10": + "قد تكون مؤهلًا لاسترداد أموالك إذا تم الخصم خلال آخر 14 يومًا ولم تستخدم مخصصات Go خلال فترة الفوترة تلك. {{contact}} لطلب استرداد الأموال.", "zen.api.error.rateLimitExceeded": "تم تجاوز حد الطلبات. يرجى المحاولة مرة أخرى لاحقًا.", "zen.api.error.modelNotSupported": "النموذج {{model}} غير مدعوم", diff --git a/packages/console/app/src/i18n/br.ts b/packages/console/app/src/i18n/br.ts index 7faba59026e3..a0ead2369689 100644 --- a/packages/console/app/src/i18n/br.ts +++ b/packages/console/app/src/i18n/br.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Cancelar", "common.creating": "Criando...", "common.create": "Criar", + "common.contactUs": "Contate-nos", "common.videoUnsupported": "Seu navegador não suporta a tag de vídeo.", "common.figure": "Fig {{n}}.", @@ -228,6 +229,9 @@ export const dict = { "zen.faq.q8": "Posso usar o Zen com outros agentes de codificação?", "zen.faq.a8": "Embora o Zen funcione muito bem com o OpenCode, você pode usar o Zen com qualquer agente. Siga as instruções de configuração no seu agente de codificação preferido.", + "zen.faq.q9": "Posso receber um reembolso?", + "zen.faq.a9": + "Você pode ter direito a um reembolso se a cobrança foi feita nos últimos 14 dias e você não usou os créditos dessa compra. {{contact}} para solicitar um reembolso.", "zen.cta.start": "Comece com o Zen", "zen.pricing.title": "Adicionar $20 de saldo pré-pago", @@ -373,6 +377,9 @@ export const dict = { "go.faq.q9": "Qual a diferença entre os modelos gratuitos e o Go?", "go.faq.a9": "Os modelos gratuitos incluem Big Pickle e modelos promocionais disponíveis no momento, com uma cota de 200 requisições/dia. O Go oferece uma seleção de modelos com cotas de requisição mais altas aplicadas em janelas móveis (5 horas, semanal e mensal), aproximadamente equivalentes a cotas básicas de $12 por 5 horas, $30 por semana e $60 por mês; as cotas específicas podem variar por modelo (as contagens reais de requisições variam de acordo com o modelo e o uso).", + "go.faq.q10": "Posso receber um reembolso?", + "go.faq.a10": + "Você pode ter direito a um reembolso se a cobrança foi feita nos últimos 14 dias e você não usou sua cota do Go durante esse período de faturamento. {{contact}} para solicitar um reembolso.", "zen.api.error.rateLimitExceeded": "Limite de taxa excedido. Por favor, tente novamente mais tarde.", "zen.api.error.modelNotSupported": "Modelo {{model}} não suportado", diff --git a/packages/console/app/src/i18n/da.ts b/packages/console/app/src/i18n/da.ts index a62039593876..3f659a2181ca 100644 --- a/packages/console/app/src/i18n/da.ts +++ b/packages/console/app/src/i18n/da.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Annuller", "common.creating": "Opretter...", "common.create": "Opret", + "common.contactUs": "Kontakt os", "common.videoUnsupported": "Din browser understøtter ikke video-tagget.", "common.figure": "Fig {{n}}.", @@ -226,6 +227,9 @@ export const dict = { "zen.faq.q8": "Kan jeg bruge Zen med andre kodningsagenter?", "zen.faq.a8": "Selvom Zen fungerer godt med OpenCode, kan du bruge Zen med enhver agent. Følg opsætningsinstruktionerne i din foretrukne kodningsagent.", + "zen.faq.q9": "Kan jeg få en refusion?", + "zen.faq.a9": + "Du kan muligvis få en refusion, hvis opkrævningen blev foretaget inden for de seneste 14 dage, og du ikke har brugt kreditten fra dette køb. {{contact}} for at anmode om en refusion.", "zen.cta.start": "Kom godt i gang med Zen", "zen.pricing.title": "Tilføj $20 Pay as you go-saldo", @@ -369,6 +373,9 @@ export const dict = { "go.faq.q9": "Hvad er forskellen på gratis modeller og Go?", "go.faq.a9": "Gratis modeller inkluderer Big Pickle plus kampagnemodeller, der er tilgængelige på det pågældende tidspunkt, med en kvote på 200 forespørgsler/dag. Go tilbyder et kurateret modeludvalg med højere forespørgselskvoter håndhævet over rullende perioder (5 timer, ugentligt og månedligt), omtrent svarende til basiskvoter på $12 pr. 5 timer, $30 pr. uge og $60 pr. måned; modelspecifikke kvoter kan variere (det faktiske antal forespørgsler varierer efter model og brug).", + "go.faq.q10": "Kan jeg få en refusion?", + "go.faq.a10": + "Du kan muligvis få en refusion, hvis opkrævningen blev foretaget inden for de seneste 14 dage, og du ikke har brugt din Go-kvote i den pågældende faktureringsperiode. {{contact}} for at anmode om en refusion.", "zen.api.error.rateLimitExceeded": "Hastighedsgrænse overskredet. Prøv venligst igen senere.", "zen.api.error.modelNotSupported": "Model {{model}} understøttes ikke", diff --git a/packages/console/app/src/i18n/de.ts b/packages/console/app/src/i18n/de.ts index 5dab86ea585d..dbb97d89a88d 100644 --- a/packages/console/app/src/i18n/de.ts +++ b/packages/console/app/src/i18n/de.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Abbrechen", "common.creating": "Erstelle...", "common.create": "Erstellen", + "common.contactUs": "Kontaktiere uns", "common.videoUnsupported": "Dein Browser unterstützt das Video-Tag nicht.", "common.figure": "Abb. {{n}}.", @@ -228,6 +229,9 @@ export const dict = { "zen.faq.q8": "Kann ich Zen mit anderen Coding-Agents nutzen?", "zen.faq.a8": "Während Zen großartig mit OpenCode funktioniert, kannst du Zen mit jedem Agent nutzen. Folge den Einrichtungsanweisungen in deinem bevorzugten Coding-Agent.", + "zen.faq.q9": "Kann ich eine Rückerstattung erhalten?", + "zen.faq.a9": + "Du hast möglicherweise Anspruch auf eine Rückerstattung, wenn die Zahlung innerhalb der letzten 14 Tage erfolgt ist und du das Guthaben aus diesem Kauf nicht verwendet hast. {{contact}}, um eine Rückerstattung anzufordern.", "zen.cta.start": "Starte mit Zen", "zen.pricing.title": "Füge $20 Pay-as-you-go Guthaben hinzu", @@ -371,6 +375,9 @@ export const dict = { "go.faq.q9": "Was ist der Unterschied zwischen kostenlosen Modellen und Go?", "go.faq.a9": "Kostenlose Modelle beinhalten Big Pickle sowie Werbemodelle, die zum jeweiligen Zeitpunkt verfügbar sind, mit einem Kontingent von 200 Anfragen/Tag. Go bietet eine kuratierte Modellauswahl mit höheren Anfragekontingenten, die über rollierende Zeitfenster (5 Stunden, wöchentlich und monatlich) durchgesetzt werden, grob äquivalent zu Basiskontingenten von $12 pro 5 Stunden, $30 pro Woche und $60 pro Monat; modellspezifische Kontingente können abweichen (tatsächliche Anfragezahlen variieren je nach Modell und Nutzung).", + "go.faq.q10": "Kann ich eine Rückerstattung erhalten?", + "go.faq.a10": + "Du hast möglicherweise Anspruch auf eine Rückerstattung, wenn die Zahlung innerhalb der letzten 14 Tage erfolgt ist und du dein Go-Kontingent in diesem Abrechnungszeitraum nicht genutzt hast. {{contact}}, um eine Rückerstattung anzufordern.", "zen.api.error.rateLimitExceeded": "Ratenlimit überschritten. Bitte versuche es später erneut.", "zen.api.error.modelNotSupported": "Modell {{model}} wird nicht unterstützt", diff --git a/packages/console/app/src/i18n/en.ts b/packages/console/app/src/i18n/en.ts index ee4dfe1aaf43..e39b42eb761f 100644 --- a/packages/console/app/src/i18n/en.ts +++ b/packages/console/app/src/i18n/en.ts @@ -225,6 +225,9 @@ export const dict = { "zen.faq.q8": "Can I use Zen with other coding agents?", "zen.faq.a8": "While Zen works great with OpenCode, you can use Zen with any agent. Follow the setup instructions in your preferred coding agent.", + "zen.faq.q9": "Can I get a refund?", + "zen.faq.a9": + "You may qualify for a refund if the charge was made within the last 14 days and you have not used the credits from that purchase. {{contact}} to request a refund.", "zen.cta.start": "Get started with Zen", "zen.pricing.title": "Add $20 Pay as you go balance", @@ -368,6 +371,9 @@ export const dict = { "go.faq.q9": "What is the difference between free models and Go?", "go.faq.a9": "Free models include Big Pickle plus promotional models available at the time, with a quota of 200 requests/day. Go offers a curated model lineup with higher request quotas enforced across rolling windows (5-hour, weekly, and monthly), roughly equivalent to base allowances of $12 per 5 hours, $30 per week, and $60 per month; model-specific allowances may differ (actual request counts vary by model and usage).", + "go.faq.q10": "Can I get a refund?", + "go.faq.a10": + "You may qualify for a refund if the charge was made within the last 14 days and you have not used your Go allowance during that billing period. {{contact}} to request a refund.", "zen.api.error.rateLimitExceeded": "Rate limit exceeded. Please try again later.", "zen.api.error.modelNotSupported": "Model {{model}} is not supported", diff --git a/packages/console/app/src/i18n/es.ts b/packages/console/app/src/i18n/es.ts index f9c7bbbd52eb..47fc8a446139 100644 --- a/packages/console/app/src/i18n/es.ts +++ b/packages/console/app/src/i18n/es.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Cancelar", "common.creating": "Creando...", "common.create": "Crear", + "common.contactUs": "Contáctanos", "common.videoUnsupported": "Tu navegador no soporta la etiqueta de video.", "common.figure": "Fig {{n}}.", @@ -229,6 +230,9 @@ export const dict = { "zen.faq.q8": "¿Puedo usar Zen con otros agentes de codificación?", "zen.faq.a8": "Aunque Zen funciona genial con OpenCode, puedes usar Zen con cualquier agente. Sigue las instrucciones de configuración en tu agente de codificación preferido.", + "zen.faq.q9": "¿Puedo obtener un reembolso?", + "zen.faq.a9": + "Podrías tener derecho a un reembolso si el cargo se realizó en los últimos 14 días y no has utilizado el crédito de esa compra. {{contact}} para solicitar un reembolso.", "zen.cta.start": "Empieza con Zen", "zen.pricing.title": "Añade $20 de saldo prepago", @@ -374,6 +378,9 @@ export const dict = { "go.faq.q9": "¿Cuál es la diferencia entre los modelos gratuitos y Go?", "go.faq.a9": "Los modelos gratuitos incluyen Big Pickle y los modelos promocionales disponibles en ese momento, con una cuota de 200 solicitudes/día. Go ofrece una selección de modelos con cuotas de solicitudes más altas aplicadas en ventanas móviles (de 5 horas, semanales y mensuales), aproximadamente equivalentes a cuotas base de 12 $ por 5 horas, 30 $ por semana y 60 $ por mes; las cuotas específicas pueden variar según el modelo (la cantidad real de solicitudes varía según el modelo y el uso).", + "go.faq.q10": "¿Puedo obtener un reembolso?", + "go.faq.a10": + "Podrías tener derecho a un reembolso si el cargo se realizó en los últimos 14 días y no has utilizado tu cuota de Go durante ese periodo de facturación. {{contact}} para solicitar un reembolso.", "zen.api.error.rateLimitExceeded": "Límite de tasa excedido. Por favor, inténtalo de nuevo más tarde.", "zen.api.error.modelNotSupported": "Modelo {{model}} no soportado", diff --git a/packages/console/app/src/i18n/fr.ts b/packages/console/app/src/i18n/fr.ts index ea7fccc63dc0..e5a913315177 100644 --- a/packages/console/app/src/i18n/fr.ts +++ b/packages/console/app/src/i18n/fr.ts @@ -57,6 +57,7 @@ export const dict = { "common.cancel": "Annuler", "common.creating": "Création...", "common.create": "Créer", + "common.contactUs": "Contactez-nous", "common.videoUnsupported": "Votre navigateur ne prend pas en charge la balise vidéo.", "common.figure": "Fig {{n}}.", @@ -227,6 +228,9 @@ export const dict = { "zen.faq.q8": "Puis-je utiliser Zen avec d'autres agents de code ?", "zen.faq.a8": "Zen fonctionne très bien avec OpenCode, mais vous pouvez utiliser Zen avec n'importe quel agent. Suivez les instructions de configuration dans votre agent préféré.", + "zen.faq.q9": "Puis-je obtenir un remboursement ?", + "zen.faq.a9": + "Vous pourriez avoir droit à un remboursement si le paiement a été effectué au cours des 14 derniers jours et que vous n’avez pas utilisé le crédit de cet achat. {{contact}} pour demander un remboursement.", "zen.cta.start": "Commencez avec Zen", "zen.pricing.title": "Ajoutez 20 $ de solde Pay as you go", @@ -374,6 +378,9 @@ export const dict = { "go.faq.q9": "Quelle est la différence entre les modèles gratuits et Go ?", "go.faq.a9": "Les modèles gratuits incluent Big Pickle ainsi que les modèles promotionnels disponibles à ce moment-là, avec un quota de 200 requêtes/jour. Go propose une sélection de modèles avec des quotas de requêtes plus élevés appliqués sur des fenêtres glissantes (5 heures, hebdomadaire et mensuelle), à peu près équivalents à des quotas de base de 12 $ par 5 heures, 30 $ par semaine et 60 $ par mois ; les quotas propres à chaque modèle peuvent varier (le nombre réel de requêtes varie selon le modèle et l'utilisation).", + "go.faq.q10": "Puis-je obtenir un remboursement ?", + "go.faq.a10": + "Vous pourriez avoir droit à un remboursement si le paiement a été effectué au cours des 14 derniers jours et que vous n’avez pas utilisé votre quota Go pendant cette période de facturation. {{contact}} pour demander un remboursement.", "zen.api.error.rateLimitExceeded": "Limite de débit dépassée. Veuillez réessayer plus tard.", "zen.api.error.modelNotSupported": "Modèle {{model}} non pris en charge", diff --git a/packages/console/app/src/i18n/it.ts b/packages/console/app/src/i18n/it.ts index fe44d02e022e..9b4d200043e5 100644 --- a/packages/console/app/src/i18n/it.ts +++ b/packages/console/app/src/i18n/it.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Annulla", "common.creating": "Creazione...", "common.create": "Crea", + "common.contactUs": "Contattaci", "common.videoUnsupported": "Il tuo browser non supporta il tag video.", "common.figure": "Fig {{n}}.", @@ -226,6 +227,9 @@ export const dict = { "zen.faq.q8": "Posso usare Zen con altri agenti di coding?", "zen.faq.a8": "Anche se Zen funziona alla grande con OpenCode, puoi usare Zen con qualsiasi agente. Segui le istruzioni di configurazione nel tuo agente di coding preferito.", + "zen.faq.q9": "Posso ottenere un rimborso?", + "zen.faq.a9": + "Potresti avere diritto a un rimborso se l'addebito è stato effettuato negli ultimi 14 giorni e non hai utilizzato il credito di quell'acquisto. {{contact}} per richiedere un rimborso.", "zen.cta.start": "Inizia con Zen", "zen.pricing.title": "Aggiungi $20 di saldo a consumo", @@ -370,6 +374,9 @@ export const dict = { "go.faq.q9": "Qual è la differenza tra i modelli gratuiti e Go?", "go.faq.a9": "I modelli gratuiti includono Big Pickle più i modelli promozionali disponibili al momento, con una quota di 200 richieste/giorno. Go offre una selezione curata di modelli con quote di richiesta più elevate applicate su finestre mobili (5 ore, settimanale e mensile), approssimativamente equivalenti a quote base di $12 ogni 5 ore, $30 a settimana e $60 al mese; le quote specifiche possono variare in base al modello (il conteggio effettivo delle richieste varia in base al modello e all'utilizzo).", + "go.faq.q10": "Posso ottenere un rimborso?", + "go.faq.a10": + "Potresti avere diritto a un rimborso se l'addebito è stato effettuato negli ultimi 14 giorni e non hai utilizzato la tua quota Go durante quel periodo di fatturazione. {{contact}} per richiedere un rimborso.", "zen.api.error.rateLimitExceeded": "Limite di richieste superato. Riprova più tardi.", "zen.api.error.modelNotSupported": "Modello {{model}} non supportato", diff --git a/packages/console/app/src/i18n/ja.ts b/packages/console/app/src/i18n/ja.ts index a79bdd12ecdd..de390eb6df34 100644 --- a/packages/console/app/src/i18n/ja.ts +++ b/packages/console/app/src/i18n/ja.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "キャンセル", "common.creating": "作成中...", "common.create": "作成", + "common.contactUs": "お問い合わせ", "common.videoUnsupported": "お使いのブラウザは video タグをサポートしていません。", "common.figure": "図 {{n}}.", @@ -224,6 +225,9 @@ export const dict = { "zen.faq.q8": "他のコーディングエージェントでもZenを使えますか?", "zen.faq.a8": "ZenはOpenCodeとの相性が良いですが、どのエージェントでもZenを利用できます。お使いのコーディングエージェントのセットアップ手順に従ってください。", + "zen.faq.q9": "返金を受けられますか?", + "zen.faq.a9": + "請求から14日以内で、その購入分のクレジットを一切使用していない場合、返金の対象となる可能性があります。返金を希望する場合は、{{contact}}ください。", "zen.cta.start": "Zenをはじめる", "zen.pricing.title": "$20の従量課金制残高を追加", @@ -368,6 +372,9 @@ export const dict = { "go.faq.q9": "無料モデルとGoの違いは何ですか?", "go.faq.a9": "無料モデルにはBig Pickleと、その時点で利用可能なプロモーションモデルが含まれ、1日200リクエストの制限があります。Goでは厳選されたモデルラインナップを利用でき、ローリングウィンドウ(5時間、週間、月間)全体でより高いリクエスト制限が適用されます。基本利用枠では概算で5時間あたり$12、週間$30、月間$60相当ですが、モデル別の利用枠は異なる場合があります(実際のリクエスト数はモデルと使用状況により異なります)。", + "go.faq.q10": "返金を受けられますか?", + "go.faq.a10": + "請求から14日以内で、その請求期間中にGoの利用枠を一切使用していない場合、返金の対象となる可能性があります。返金を希望する場合は、{{contact}}ください。", "zen.api.error.rateLimitExceeded": "レート制限を超えました。後でもう一度お試しください。", "zen.api.error.modelNotSupported": "モデル {{model}} はサポートされていません", diff --git a/packages/console/app/src/i18n/ko.ts b/packages/console/app/src/i18n/ko.ts index 72470d0330b8..ea4a0a5da717 100644 --- a/packages/console/app/src/i18n/ko.ts +++ b/packages/console/app/src/i18n/ko.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "취소", "common.creating": "생성 중...", "common.create": "만들기", + "common.contactUs": "문의하기", "common.videoUnsupported": "브라우저가 비디오 태그를 지원하지 않습니다.", "common.figure": "그림 {{n}}.", @@ -222,6 +223,9 @@ export const dict = { "zen.faq.q8": "다른 코딩 에이전트와 Zen을 사용할 수 있나요?", "zen.faq.a8": "Zen은 OpenCode와 훌륭하게 작동하지만, 어떤 에이전트와도 Zen을 사용할 수 있습니다. 선호하는 코딩 에이전트의 설정 지침을 따르세요.", + "zen.faq.q9": "환불받을 수 있나요?", + "zen.faq.a9": + "결제일로부터 14일 이내이며 해당 구매로 받은 크레딧을 전혀 사용하지 않은 경우 환불 대상이 될 수 있습니다. 환불을 요청하려면 {{contact}}를 선택해 주세요.", "zen.cta.start": "Zen 시작하기", "zen.pricing.title": "$20 선불 잔액 추가", @@ -362,6 +366,9 @@ export const dict = { "go.faq.q9": "무료 모델과 Go의 차이점은 무엇인가요?", "go.faq.a9": "무료 모델에는 Big Pickle과 당시 사용 가능한 프로모션 모델이 포함되며, 하루 200회 요청 할당량이 적용됩니다. Go는 엄선된 모델 라인업을 제공하며, 롤링 윈도우(5시간, 주간, 월간)에 걸쳐 더 높은 요청 할당량을 적용합니다. 기본 할당량은 대략 5시간당 $12, 주당 $30, 월 $60에 해당하며 모델별 할당량은 다를 수 있습니다(실제 요청 수는 모델 및 사용량에 따라 다름).", + "go.faq.q10": "환불받을 수 있나요?", + "go.faq.a10": + "결제일로부터 14일 이내이며 해당 결제 기간에 Go 사용 한도를 전혀 사용하지 않은 경우 환불 대상이 될 수 있습니다. 환불을 요청하려면 {{contact}}를 선택해 주세요.", "zen.api.error.rateLimitExceeded": "속도 제한을 초과했습니다. 나중에 다시 시도해 주세요.", "zen.api.error.modelNotSupported": "{{model}} 모델은 지원되지 않습니다", diff --git a/packages/console/app/src/i18n/no.ts b/packages/console/app/src/i18n/no.ts index 2357766d2504..606f613dcd11 100644 --- a/packages/console/app/src/i18n/no.ts +++ b/packages/console/app/src/i18n/no.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Avbryt", "common.creating": "Oppretter...", "common.create": "Opprett", + "common.contactUs": "Kontakt oss", "common.videoUnsupported": "Nettleseren din støtter ikke video-taggen.", "common.figure": "Fig {{n}}.", @@ -226,6 +227,9 @@ export const dict = { "zen.faq.q8": "Kan jeg bruke Zen med andre kodeagenter?", "zen.faq.a8": "Selv om Zen fungerer veldig bra med OpenCode, kan du bruke Zen med hvilken som helst agent. Følg oppsettinstruksjonene i din foretrukne kodeagent.", + "zen.faq.q9": "Kan jeg få refusjon?", + "zen.faq.a9": + "Du kan ha rett på refusjon hvis belastningen ble gjort i løpet av de siste 14 dagene og du ikke har brukt noe av kreditten fra kjøpet. {{contact}} for å be om refusjon.", "zen.cta.start": "Kom i gang med Zen", "zen.pricing.title": "Legg til $20 Pay as you go-saldo", @@ -370,6 +374,9 @@ export const dict = { "go.faq.q9": "Hva er forskjellen mellom gratis modeller og Go?", "go.faq.a9": "Gratis modeller inkluderer Big Pickle pluss kampanjemodeller som er tilgjengelige på det tidspunktet, med en kvote på 200 forespørsler/dag. Go tilbyr et kuratert modellutvalg med høyere forespørselskvoter som håndheves over rullerende vinduer (5 timer, ukentlig og månedlig), omtrent tilsvarende basiskvoter på $12 per 5 timer, $30 per uke og $60 per måned; modellspesifikke kvoter kan variere (faktiske forespørselsantall varierer etter modell og bruk).", + "go.faq.q10": "Kan jeg få refusjon?", + "go.faq.a10": + "Du kan ha rett på refusjon hvis belastningen ble gjort i løpet av de siste 14 dagene og du ikke har brukt noe av Go-kvoten i den faktureringsperioden. {{contact}} for å be om refusjon.", "zen.api.error.rateLimitExceeded": "Rate limit overskredet. Vennligst prøv igjen senere.", "zen.api.error.modelNotSupported": "Modell {{model}} støttes ikke", diff --git a/packages/console/app/src/i18n/pl.ts b/packages/console/app/src/i18n/pl.ts index e2bb3d81167d..30614954c052 100644 --- a/packages/console/app/src/i18n/pl.ts +++ b/packages/console/app/src/i18n/pl.ts @@ -57,6 +57,7 @@ export const dict = { "common.cancel": "Anuluj", "common.creating": "Tworzenie...", "common.create": "Utwórz", + "common.contactUs": "Skontaktuj się z nami", "common.videoUnsupported": "Twoja przeglądarka nie obsługuje znacznika wideo.", "common.figure": "Rys. {{n}}.", @@ -227,6 +228,9 @@ export const dict = { "zen.faq.q8": "Czy mogę używać Zen z innymi agentami kodującymi?", "zen.faq.a8": "Chociaż Zen świetnie działa z OpenCode, możesz używać Zen z dowolnym agentem. Postępuj zgodnie z instrukcjami konfiguracji w swoim preferowanym agencie.", + "zen.faq.q9": "Czy mogę otrzymać zwrot pieniędzy?", + "zen.faq.a9": + "Możesz kwalifikować się do zwrotu, jeśli opłata została pobrana w ciągu ostatnich 14 dni i nie wykorzystano żadnych środków z tego zakupu. {{contact}}, aby poprosić o zwrot.", "zen.cta.start": "Zacznij korzystać z Zen", "zen.pricing.title": "Dodaj 20$ salda Pay as you go", @@ -371,6 +375,9 @@ export const dict = { "go.faq.q9": "Jaka jest różnica między darmowymi modelami a Go?", "go.faq.a9": "Darmowe modele obejmują Big Pickle oraz modele promocyjne dostępne w danym momencie, z limitem 200 zapytań/dzień. Go oferuje starannie dobrany zestaw modeli z wyższymi limitami zapytań egzekwowanymi w oknach kroczących (5-godzinnych, tygodniowych i miesięcznych), odpowiadającymi w przybliżeniu bazowym limitom $12 na 5 godzin, $30 tygodniowo i $60 miesięcznie; limity mogą się różnić zależnie od modelu (rzeczywista liczba zapytań zależy od modelu i użycia).", + "go.faq.q10": "Czy mogę otrzymać zwrot pieniędzy?", + "go.faq.a10": + "Możesz kwalifikować się do zwrotu, jeśli opłata została pobrana w ciągu ostatnich 14 dni i nie wykorzystano żadnej części limitu Go w tym okresie rozliczeniowym. {{contact}}, aby poprosić o zwrot.", "zen.api.error.rateLimitExceeded": "Przekroczono limit zapytań. Spróbuj ponownie później.", "zen.api.error.modelNotSupported": "Model {{model}} nie jest obsługiwany", diff --git a/packages/console/app/src/i18n/ru.ts b/packages/console/app/src/i18n/ru.ts index 9e05c954916c..040c84c635e1 100644 --- a/packages/console/app/src/i18n/ru.ts +++ b/packages/console/app/src/i18n/ru.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "Отмена", "common.creating": "Создание...", "common.create": "Создать", + "common.contactUs": "Свяжитесь с нами", "common.videoUnsupported": "Ваш браузер не поддерживает видео тег.", "common.figure": "Рис {{n}}.", @@ -230,6 +231,9 @@ export const dict = { "zen.faq.q8": "Могу ли я использовать Zen с другими кодинг-агентами?", "zen.faq.a8": "Хотя Zen отлично работает с OpenCode, вы можете использовать Zen с любым агентом. Следуйте инструкциям по настройке в вашем любимом агенте.", + "zen.faq.q9": "Могу ли я получить возврат средств?", + "zen.faq.a9": + "Вы можете претендовать на возврат, если списание произошло в течение последних 14 дней и средства, полученные при этой покупке, не были использованы. {{contact}}, чтобы запросить возврат.", "zen.cta.start": "Начать работу с Zen", "zen.pricing.title": "Пополнить баланс на $20 (Pay as you go)", @@ -376,6 +380,9 @@ export const dict = { "go.faq.q9": "В чем разница между бесплатными моделями и Go?", "go.faq.a9": "Бесплатные модели включают Big Pickle и доступные на данный момент промо-модели с квотой 200 запросов/день. Go предлагает набор отобранных моделей с более высокими квотами запросов, применяемыми в скользящих окнах (5 часов, неделя и месяц), что примерно эквивалентно базовым лимитам $12 за 5 часов, $30 в неделю и $60 в месяц; лимиты для отдельных моделей могут отличаться (фактическое количество запросов зависит от модели и использования).", + "go.faq.q10": "Могу ли я получить возврат средств?", + "go.faq.a10": + "Вы можете претендовать на возврат, если списание произошло в течение последних 14 дней и вы не использовали лимит Go в этом расчетном периоде. {{contact}}, чтобы запросить возврат.", "zen.api.error.rateLimitExceeded": "Превышен лимит запросов. Пожалуйста, попробуйте позже.", "zen.api.error.modelNotSupported": "Модель {{model}} не поддерживается", diff --git a/packages/console/app/src/i18n/th.ts b/packages/console/app/src/i18n/th.ts index 56a45ba7da7d..16219983c969 100644 --- a/packages/console/app/src/i18n/th.ts +++ b/packages/console/app/src/i18n/th.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "ยกเลิก", "common.creating": "กำลังสร้าง...", "common.create": "สร้าง", + "common.contactUs": "ติดต่อเรา", "common.videoUnsupported": "เบราว์เซอร์ของคุณไม่รองรับแท็ก video", "common.figure": "รูปที่ {{n}}", @@ -225,6 +226,9 @@ export const dict = { "zen.faq.q8": "ฉันสามารถใช้ Zen กับเอเจนต์เขียนโค้ดอื่นได้หรือไม่?", "zen.faq.a8": "แม้ว่า Zen จะทำงานได้ดีเยี่ยมกับ OpenCode แต่คุณสามารถใช้ Zen กับเอเจนต์ใดก็ได้ เพียงทำตามคำแนะนำการตั้งค่าในเอเจนต์เขียนโค้ดที่คุณต้องการ", + "zen.faq.q9": "ฉันขอเงินคืนได้หรือไม่?", + "zen.faq.a9": + "หากมีการเรียกเก็บเงินภายใน 14 วันที่ผ่านมาและคุณยังไม่ได้ใช้เครดิตใดๆ จากการซื้อนั้น คุณอาจมีสิทธิ์ได้รับเงินคืน {{contact}}เพื่อขอเงินคืน", "zen.cta.start": "เริ่มต้นใช้งาน Zen", "zen.pricing.title": "เติมเงิน $20 แบบ Pay as you go", @@ -367,6 +371,9 @@ export const dict = { "go.faq.q9": "ความแตกต่างระหว่างโมเดลฟรีและ Go คืออะไร?", "go.faq.a9": "โมเดลฟรีประกอบด้วย Big Pickle และโมเดลโปรโมชันที่มีให้บริการในขณะนั้น โดยมีโควตา 200 คำขอ/วัน Go นำเสนอชุดโมเดลที่คัดสรร พร้อมโควตาคำขอที่สูงกว่าซึ่งบังคับใช้ตามกรอบเวลาแบบต่อเนื่อง (5 ชั่วโมง, รายสัปดาห์ และรายเดือน) เทียบเท่าโควตาพื้นฐานประมาณ $12 ต่อ 5 ชั่วโมง, $30 ต่อสัปดาห์ และ $60 ต่อเดือน โดยโควตาเฉพาะอาจแตกต่างกันไปตามโมเดล (จำนวนคำขอจริงแตกต่างกันไปตามโมเดลและการใช้งาน)", + "go.faq.q10": "ฉันขอเงินคืนได้หรือไม่?", + "go.faq.a10": + "หากมีการเรียกเก็บเงินภายใน 14 วันที่ผ่านมาและคุณยังไม่ได้ใช้สิทธิ์การใช้งาน Go เลยในรอบการเรียกเก็บเงินนั้น คุณอาจมีสิทธิ์ได้รับเงินคืน {{contact}}เพื่อขอเงินคืน", "zen.api.error.rateLimitExceeded": "เกินขีดจำกัดอัตราการใช้งาน กรุณาลองใหม่ในภายหลัง", "zen.api.error.modelNotSupported": "ไม่รองรับโมเดล {{model}}", diff --git a/packages/console/app/src/i18n/tr.ts b/packages/console/app/src/i18n/tr.ts index 09014d0b6ae8..b43320093ec5 100644 --- a/packages/console/app/src/i18n/tr.ts +++ b/packages/console/app/src/i18n/tr.ts @@ -58,6 +58,7 @@ export const dict = { "common.cancel": "İptal", "common.creating": "Oluşturuluyor...", "common.create": "Oluştur", + "common.contactUs": "Bize ulaşın", "common.videoUnsupported": "Tarayıcınız video etiketini desteklemiyor.", "common.figure": "Şekil {{n}}.", @@ -227,6 +228,9 @@ export const dict = { "zen.faq.q8": "Zen'i diğer kodlama ajanlarıyla kullanabilir miyim?", "zen.faq.a8": "Zen OpenCode ile harika çalışır, ama Zen'i herhangi bir ajan ile kullanabilirsiniz. Tercih ettiğiniz kodlama ajanında kurulum talimatlarını izleyin.", + "zen.faq.q9": "Para iadesi alabilir miyim?", + "zen.faq.a9": + "Ücret son 14 gün içinde tahsil edildiyse ve bu satın alımdan gelen kredilerin hiçbirini kullanmadıysanız para iadesine hak kazanabilirsiniz. {{contact}} ve para iadesi talep edin.", "zen.cta.start": "Zen'i kullanmaya başlayın", "zen.pricing.title": "20$ Kullandıkça öde bakiyesi ekle", @@ -373,6 +377,9 @@ export const dict = { "go.faq.q9": "Ücretsiz modeller ve Go arasındaki fark nedir?", "go.faq.a9": "Ücretsiz modeller, günlük 200 istek kotasıyla Big Pickle'ı ve o sırada mevcut olan promosyonel modelleri içerir. Go ise kayan zaman aralıklarında (5 saatlik, haftalık ve aylık) uygulanan daha yüksek istek kotalarıyla özenle seçilmiş model seçenekleri sunar. Bu kotalar kabaca her 5 saatte 12$, haftada 30$ ve ayda 60$ değerindeki temel kullanım haklarına eşdeğerdir; modele özgü kullanım hakları farklılık gösterebilir (gerçek istek sayıları modele ve kullanıma göre değişir).", + "go.faq.q10": "Para iadesi alabilir miyim?", + "go.faq.a10": + "Ücret son 14 gün içinde tahsil edildiyse ve ilgili faturalandırma döneminde Go kullanım hakkınızı hiç kullanmadıysanız para iadesine hak kazanabilirsiniz. {{contact}} ve para iadesi talep edin.", "zen.api.error.rateLimitExceeded": "İstek limiti aşıldı. Lütfen daha sonra tekrar deneyin.", "zen.api.error.modelNotSupported": "{{model}} modeli desteklenmiyor", diff --git a/packages/console/app/src/i18n/uk.ts b/packages/console/app/src/i18n/uk.ts index ac613a7d974e..8b2aafc7ab98 100644 --- a/packages/console/app/src/i18n/uk.ts +++ b/packages/console/app/src/i18n/uk.ts @@ -226,6 +226,9 @@ export const dict = { "zen.faq.q8": "Чи можна використовувати Zen з іншими агентами кодування?", "zen.faq.a8": "Хоча Zen чудово працює з OpenCode, ви можете використовувати Zen з будь-яким агентом. Дотримуйтесь інструкцій з налаштування у вашому агенті.", + "zen.faq.q9": "Чи можу я отримати повернення коштів?", + "zen.faq.a9": + "Ви можете претендувати на повернення, якщо кошти було списано протягом останніх 14 днів і ви не використали кошти, отримані внаслідок цієї покупки. {{contact}}, щоб подати запит на повернення.", "zen.cta.start": "Почати з Zen", "zen.pricing.title": "Додати $20 балансу Pay as you go", @@ -369,6 +372,9 @@ export const dict = { "go.faq.q9": "Яка різниця між безкоштовними моделями та Go?", "go.faq.a9": "Безкоштовні моделі включають Big Pickle та доступні на той момент акційні моделі з квотою 200 запитів/день. Go пропонує добірку моделей із вищими квотами запитів, що застосовуються протягом ковзних періодів (5 годин, тижня та місяця), приблизно еквівалентними базовим лімітам $12 за 5 годин, $30 на тиждень і $60 на місяць; ліміти для окремих моделей можуть відрізнятися (фактична кількість запитів залежить від моделі та використання).", + "go.faq.q10": "Чи можу я отримати повернення коштів?", + "go.faq.a10": + "Ви можете претендувати на повернення, якщо кошти було списано протягом останніх 14 днів і ви не використали ліміт Go протягом цього розрахункового періоду. {{contact}}, щоб подати запит на повернення.", "zen.api.error.rateLimitExceeded": "Перевищено ліміт запитів. Спробуйте пізніше.", "zen.api.error.modelNotSupported": "Модель {{model}} не підтримується", diff --git a/packages/console/app/src/i18n/zh.ts b/packages/console/app/src/i18n/zh.ts index 8be6f4b20eb9..4e10ae5d2003 100644 --- a/packages/console/app/src/i18n/zh.ts +++ b/packages/console/app/src/i18n/zh.ts @@ -59,6 +59,7 @@ export const dict = { "common.cancel": "取消", "common.creating": "正在创建...", "common.create": "创建", + "common.contactUs": "联系我们", "common.videoUnsupported": "您的浏览器不支持 video 标签。", "common.figure": "图 {{n}}.", @@ -218,6 +219,9 @@ export const dict = { "zen.faq.q8": "我可以在其他编程代理中使用 Zen 吗?", "zen.faq.a8": "虽然 Zen 与 OpenCode 配合效果极佳,但您可以在任何代理中使用 Zen。请按照您首选编程代理中的设置说明进行操作。", + "zen.faq.q9": "我可以退款吗?", + "zen.faq.a9": + "如果扣款发生在过去 14 天内,并且您尚未使用该次购买的任何额度,您可能符合退款条件。请{{contact}}申请退款。", "zen.cta.start": "开始使用 Zen", "zen.pricing.title": "充值 $20 (即用即付)", @@ -349,6 +353,9 @@ export const dict = { "go.faq.q9": "免费模型和 Go 之间的区别是什么?", "go.faq.a9": "免费模型包含 Big Pickle 加上当时可用的促销模型,每天有 200 次请求的配额。Go 提供精选模型阵容,并在滚动窗口(5 小时、每周和每月)内执行更高的请求配额,大致相当于每 5 小时 $12、每周 $30 和每月 $60 的基础额度;具体额度可能因模型而异(实际请求计数因模型和使用情况而异)。", + "go.faq.q10": "我可以退款吗?", + "go.faq.a10": + "如果扣款发生在过去 14 天内,并且您在该计费周期内尚未使用任何 Go 额度,您可能符合退款条件。请{{contact}}申请退款。", "zen.api.error.rateLimitExceeded": "超出速率限制。请稍后重试。", "zen.api.error.modelNotSupported": "不支持模型 {{model}}", diff --git a/packages/console/app/src/i18n/zht.ts b/packages/console/app/src/i18n/zht.ts index b1e7f3a3a5dd..2f3ba7115424 100644 --- a/packages/console/app/src/i18n/zht.ts +++ b/packages/console/app/src/i18n/zht.ts @@ -59,6 +59,7 @@ export const dict = { "common.cancel": "取消", "common.creating": "正在建立...", "common.create": "建立", + "common.contactUs": "聯絡我們", "common.videoUnsupported": "你的瀏覽器不支援 video 標籤。", "common.figure": "圖 {{n}}.", @@ -217,6 +218,9 @@ export const dict = { "zen.faq.q8": "我可以在其他編碼代理中使用 Zen 嗎?", "zen.faq.a8": "Zen 與 OpenCode 搭配得很好,但你也可以在任何代理中使用 Zen。請在你偏好的編碼代理中按照設定說明進行配置。", + "zen.faq.q9": "我可以退款嗎?", + "zen.faq.a9": + "若扣款發生在過去 14 天內,且你尚未使用該次購買的任何額度,你可能符合退款資格。請{{contact}}申請退款。", "zen.cta.start": "開始使用 Zen", "zen.pricing.title": "儲值 $20 即用即付餘額", @@ -349,6 +353,9 @@ export const dict = { "go.faq.q9": "免費模型與 Go 有什麼區別?", "go.faq.a9": "免費模型包括 Big Pickle 以及當時可用的促銷模型,配額為 200 次請求/天。Go 提供精選模型陣容,並在滾動視窗(5 小時、每週和每月)內提供更高的請求配額,大約相當於每 5 小時 $12、每週 $30 和每月 $60 的基礎額度;具體額度可能因模型而異(實際請求數因模型和使用情況而異)。", + "go.faq.q10": "我可以退款嗎?", + "go.faq.a10": + "若扣款發生在過去 14 天內,且你在該計費期間尚未使用任何 Go 額度,你可能符合退款資格。請{{contact}}申請退款。", "zen.api.error.rateLimitExceeded": "超出頻率限制。請稍後再試。", "zen.api.error.modelNotSupported": "不支援模型 {{model}}", diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index 3704e9634d72..a0789ce65f96 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -362,6 +362,15 @@ export default function Home() {
  • {i18n.t("go.faq.a8")}
  • +
  • + + + {(part) => + part === "{{contact}}" ? {i18n.t("common.contactUs")} : part + } + + +
  • diff --git a/packages/console/app/src/routes/zen/index.tsx b/packages/console/app/src/routes/zen/index.tsx index 6285a0bd8a56..9d378078b93b 100644 --- a/packages/console/app/src/routes/zen/index.tsx +++ b/packages/console/app/src/routes/zen/index.tsx @@ -1,6 +1,7 @@ import "./index.css" import { createAsync, query } from "@solidjs/router" import { Title, Meta } from "@solidjs/meta" +import { For } from "solid-js" //import { HttpHeader } from "@solidjs/start" import zenLogoLight from "../../asset/zen-ornate-light.svg" import zenLogoDark from "../../asset/zen-ornate-dark.svg" @@ -321,6 +322,15 @@ export default function Home() {
  • {i18n.t("zen.faq.a8")}
  • +
  • + + + {(part) => + part === "{{contact}}" ? {i18n.t("common.contactUs")} : part + } + + +
  • From 337fd144d2ba144743368f78d9579a99cce175bd Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Sun, 6 Sep 2026 04:32:46 +0000 Subject: [PATCH 04/94] chore: generate --- packages/console/app/src/i18n/zht.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/console/app/src/i18n/zht.ts b/packages/console/app/src/i18n/zht.ts index 2f3ba7115424..81a8cf7196f3 100644 --- a/packages/console/app/src/i18n/zht.ts +++ b/packages/console/app/src/i18n/zht.ts @@ -219,8 +219,7 @@ export const dict = { "zen.faq.a8": "Zen 與 OpenCode 搭配得很好,但你也可以在任何代理中使用 Zen。請在你偏好的編碼代理中按照設定說明進行配置。", "zen.faq.q9": "我可以退款嗎?", - "zen.faq.a9": - "若扣款發生在過去 14 天內,且你尚未使用該次購買的任何額度,你可能符合退款資格。請{{contact}}申請退款。", + "zen.faq.a9": "若扣款發生在過去 14 天內,且你尚未使用該次購買的任何額度,你可能符合退款資格。請{{contact}}申請退款。", "zen.cta.start": "開始使用 Zen", "zen.pricing.title": "儲值 $20 即用即付餘額", From 23ec4f55c8bf4009068c44635a448d602914f1f7 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" <219766164+opencode-agent[bot]@users.noreply.github.com> Date: Sun, 6 Sep 2026 15:40:58 -0500 Subject: [PATCH 05/94] fix(provider): bump OpenAI SDK to 3.0.88 (#47659) Co-authored-by: rekram1-node Co-authored-by: GuestAUser <62957566+GuestAUser@users.noreply.github.com> --- bun.lock | 12 ++++++------ packages/core/package.json | 2 +- packages/opencode/package.json | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bun.lock b/bun.lock index ac048b971514..73c95f3be268 100644 --- a/bun.lock +++ b/bun.lock @@ -306,7 +306,7 @@ "@ai-sdk/google-vertex": "4.0.181", "@ai-sdk/groq": "3.0.31", "@ai-sdk/mistral": "3.0.51", - "@ai-sdk/openai": "3.0.84", + "@ai-sdk/openai": "3.0.88", "@ai-sdk/openai-compatible": "2.0.41", "@ai-sdk/perplexity": "3.0.26", "@ai-sdk/provider": "3.0.8", @@ -581,7 +581,7 @@ "@ai-sdk/google-vertex": "4.0.181", "@ai-sdk/groq": "3.0.31", "@ai-sdk/mistral": "3.0.51", - "@ai-sdk/openai": "3.0.84", + "@ai-sdk/openai": "3.0.88", "@ai-sdk/openai-compatible": "2.0.41", "@ai-sdk/perplexity": "3.0.26", "@ai-sdk/provider": "3.0.8", @@ -6019,7 +6019,7 @@ "@opencode-ai/app/@opencode-ai/client": ["@opencode-ai/client@vendor/opencode-ai-client-1.17.13-v2.tgz", {}, "sha512-332kgNifvpQOF9e3UA+pIa5xPrMhLaQkUiNiO+meS0Ba9HjSE6hfsWnEojMkD0DPSLqPP6rCF1dDoF7U0Y0OCQ=="], - "@opencode-ai/core/@ai-sdk/openai": ["@ai-sdk/openai@3.0.84", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-cmgbeJL0bbY0yTJH4/AdmP5E7MjWRL9G8UdhIi0JlV/So03o82ORJofW8OzwCZPTORVQblFbpZXYGDcUd9NdUQ=="], + "@opencode-ai/core/@ai-sdk/openai": ["@ai-sdk/openai@3.0.88", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.40" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-6M4+bxK/UMijDYK2ia1hCKYma1iajFYxHDlhbinFUdhH2WbFsjoZRMpSjEMlTOBptqmh2J1JclKnprGulF8WwQ=="], "@opencode-ai/core/@ai-sdk/openai-compatible": ["@ai-sdk/openai-compatible@2.0.41", "", { "dependencies": { "@ai-sdk/provider": "3.0.8", "@ai-sdk/provider-utils": "4.0.23" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-kNAGINk71AlOXx10Dq/PXw4t/9XjdK8uxfpVElRwtSFMdeSiLVt58p9TPx4/FJD+hxZuVhvxYj9r42osxWq79g=="], @@ -6395,7 +6395,7 @@ "opencode/@ai-sdk/cerebras": ["@ai-sdk/cerebras@2.0.60", "", { "dependencies": { "@ai-sdk/openai-compatible": "2.0.54", "@ai-sdk/provider": "3.0.12", "@ai-sdk/provider-utils": "4.0.33" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-Rnok3cThg6awBwaDSyiZpgRpbV7pqxGYrA89LODCo5cuEHeP2h0AM0lLHP7zIkclAdXfOm4wldKi/S2T/DGCOw=="], - "opencode/@ai-sdk/openai": ["@ai-sdk/openai@3.0.84", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-cmgbeJL0bbY0yTJH4/AdmP5E7MjWRL9G8UdhIi0JlV/So03o82ORJofW8OzwCZPTORVQblFbpZXYGDcUd9NdUQ=="], + "opencode/@ai-sdk/openai": ["@ai-sdk/openai@3.0.88", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.40" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-6M4+bxK/UMijDYK2ia1hCKYma1iajFYxHDlhbinFUdhH2WbFsjoZRMpSjEMlTOBptqmh2J1JclKnprGulF8WwQ=="], "opencode/@ai-sdk/openai-compatible": ["@ai-sdk/openai-compatible@2.0.41", "", { "dependencies": { "@ai-sdk/provider": "3.0.8", "@ai-sdk/provider-utils": "4.0.23" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-kNAGINk71AlOXx10Dq/PXw4t/9XjdK8uxfpVElRwtSFMdeSiLVt58p9TPx4/FJD+hxZuVhvxYj9r42osxWq79g=="], @@ -6915,7 +6915,7 @@ "@opencode-ai/core/@ai-sdk/openai/@ai-sdk/provider": ["@ai-sdk/provider@3.0.14", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-5X1k57JBJ4H7H1QjX7CnJYAB1I19r/trVZTMcSms7/kLNZ8RaU4Nt2agcwZzv82Hfx6Q7/TOLU7agAKeFfc8cA=="], - "@opencode-ai/core/@ai-sdk/openai/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.38", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/HHGmtKllqjg1OLc023v9w9kK3laW7Z6TzfZukYQWCsGBbzB9p60zTvvpXFVcs44NZBVXL3viOa1HRKUbeee8g=="], + "@opencode-ai/core/@ai-sdk/openai/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.40", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-OL5IrpUm9Y8Dwy+w/vvFwPotS6m52O9W0op2oXgXdCROMJIBalBI0oro6OIBYkPxvm5Xg02GSkoQN25RlR0bnw=="], "@opencode-ai/desktop/@actions/artifact/@actions/http-client": ["@actions/http-client@2.2.3", "", { "dependencies": { "tunnel": "^0.0.6", "undici": "^5.25.4" } }, "sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA=="], @@ -7163,7 +7163,7 @@ "opencode/@ai-sdk/openai/@ai-sdk/provider": ["@ai-sdk/provider@3.0.14", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-5X1k57JBJ4H7H1QjX7CnJYAB1I19r/trVZTMcSms7/kLNZ8RaU4Nt2agcwZzv82Hfx6Q7/TOLU7agAKeFfc8cA=="], - "opencode/@ai-sdk/openai/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.38", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/HHGmtKllqjg1OLc023v9w9kK3laW7Z6TzfZukYQWCsGBbzB9p60zTvvpXFVcs44NZBVXL3viOa1HRKUbeee8g=="], + "opencode/@ai-sdk/openai/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.40", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-OL5IrpUm9Y8Dwy+w/vvFwPotS6m52O9W0op2oXgXdCROMJIBalBI0oro6OIBYkPxvm5Xg02GSkoQN25RlR0bnw=="], "p-locate/p-limit/yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], diff --git a/packages/core/package.json b/packages/core/package.json index 5e6ccd4c4738..eb6bf7cf1065 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -73,7 +73,7 @@ "@ai-sdk/google-vertex": "4.0.181", "@ai-sdk/groq": "3.0.31", "@ai-sdk/mistral": "3.0.51", - "@ai-sdk/openai": "3.0.84", + "@ai-sdk/openai": "3.0.88", "@ai-sdk/openai-compatible": "2.0.41", "@ai-sdk/perplexity": "3.0.26", "@ai-sdk/provider": "3.0.8", diff --git a/packages/opencode/package.json b/packages/opencode/package.json index 4d3710b62cb5..75f8af9ef34e 100644 --- a/packages/opencode/package.json +++ b/packages/opencode/package.json @@ -67,7 +67,7 @@ "@ai-sdk/google-vertex": "4.0.181", "@ai-sdk/groq": "3.0.31", "@ai-sdk/mistral": "3.0.51", - "@ai-sdk/openai": "3.0.84", + "@ai-sdk/openai": "3.0.88", "@ai-sdk/openai-compatible": "2.0.41", "@ai-sdk/perplexity": "3.0.26", "@ai-sdk/provider": "3.0.8", From c470c79513f78aabb2ff88a8c8f7a3a22c4e97af Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Sun, 6 Sep 2026 20:59:14 +0000 Subject: [PATCH 06/94] chore: update nix node_modules hashes --- nix/hashes.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/hashes.json b/nix/hashes.json index b36141f400cf..46f4c3a5fe68 100644 --- a/nix/hashes.json +++ b/nix/hashes.json @@ -1,8 +1,8 @@ { "nodeModules": { - "x86_64-linux": "sha256-2kzFIn42mD7ZDu/+6lWctqjZ/lIVZZfjZhmF/ymhF54=", - "aarch64-linux": "sha256-4HlReGD3gYfyyfnY/FQ46Ov+g3ZGV3sBYQ9p1bS9YAY=", - "aarch64-darwin": "sha256-dkfCoH/sW9XBPZ7XhnUoE54TY1lcfNvZ5wQQLr7gKiQ=", - "x86_64-darwin": "sha256-32t1JEcibZ4OrornIgfWOGQA87FOXjrxrxlDrflh7Ss=" + "x86_64-linux": "sha256-iIlDsO3XA7lneY0Bd+zgxUaGEjs5Oi8Mle6H4KGX6lE=", + "aarch64-linux": "sha256-IX92GciA8gvg0AwF7URBb7bqKZ0dB8XV3HECd5iOceY=", + "aarch64-darwin": "sha256-3asRb5Z40URPuUqn6enNsQyauwkRXuncja5OCnhHn+s=", + "x86_64-darwin": "sha256-fV7KLEoqWOPcM+MD/uspsYGmPBdy/vkuAK5rKWWrC2c=" } } From bec9ee41afc64c0333f7ace8e73ea6ab47f30213 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" <219766164+opencode-agent[bot]@users.noreply.github.com> Date: Sun, 6 Sep 2026 16:34:09 -0500 Subject: [PATCH 07/94] fix(provider): bump Azure SDK to 3.0.93 (#47664) Co-authored-by: rekram1-node --- bun.lock | 30 +++++++++++++++++++++++------- packages/core/package.json | 2 +- packages/opencode/package.json | 2 +- 3 files changed, 25 insertions(+), 9 deletions(-) diff --git a/bun.lock b/bun.lock index 73c95f3be268..2094d1517848 100644 --- a/bun.lock +++ b/bun.lock @@ -297,7 +297,7 @@ "@ai-sdk/alibaba": "1.0.17", "@ai-sdk/amazon-bedrock": "4.0.166", "@ai-sdk/anthropic": "3.0.111", - "@ai-sdk/azure": "3.0.88", + "@ai-sdk/azure": "3.0.93", "@ai-sdk/cerebras": "2.0.41", "@ai-sdk/cohere": "3.0.27", "@ai-sdk/deepinfra": "2.0.41", @@ -572,7 +572,7 @@ "@ai-sdk/alibaba": "1.0.17", "@ai-sdk/amazon-bedrock": "4.0.166", "@ai-sdk/anthropic": "3.0.111", - "@ai-sdk/azure": "3.0.88", + "@ai-sdk/azure": "3.0.93", "@ai-sdk/cerebras": "2.0.60", "@ai-sdk/cohere": "3.0.27", "@ai-sdk/deepinfra": "2.0.41", @@ -1175,7 +1175,7 @@ "@ai-sdk/anthropic": ["@ai-sdk/anthropic@3.0.111", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@ai-sdk/provider-utils": "4.0.46" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-atgBW8jZPr/KuaKX5FvDIHuXBI8VCol6kVeoD4P0657+VXR73QsLogXQVN/Zt5FHtq9WzpdIZseCJiXPqkgwwA=="], - "@ai-sdk/azure": ["@ai-sdk/azure@3.0.88", "", { "dependencies": { "@ai-sdk/deepseek": "2.0.47", "@ai-sdk/openai": "3.0.84", "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-RRjZkB1lYplh8dpBarnvkl1j7sYLHsyXua7erL3oNcMK7fHcl4bPO5C7iQhD1O/DqD/zCceDifnege1s+8yEvw=="], + "@ai-sdk/azure": ["@ai-sdk/azure@3.0.93", "", { "dependencies": { "@ai-sdk/deepseek": "2.0.50", "@ai-sdk/openai": "3.0.88", "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.40" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-9nKNmRtopjE3+L+286/4sLBDfDvmdsL7fiQXG0TE38NywxkDDLUhdr0KSllkRQ+m1/8bO7x4rIVhHSjQQiqmnQ=="], "@ai-sdk/cerebras": ["@ai-sdk/cerebras@2.0.41", "", { "dependencies": { "@ai-sdk/openai-compatible": "2.0.37", "@ai-sdk/provider": "3.0.8", "@ai-sdk/provider-utils": "4.0.21" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-kDMEpjaRdRXIUi1EH8WHwLRahyDTYv9SAJnP6VCCeq8X+tVqZbMLCqqxSG5dRknrI65ucjvzQt+FiDKTAa7AHg=="], @@ -1185,7 +1185,7 @@ "@ai-sdk/deepinfra": ["@ai-sdk/deepinfra@2.0.41", "", { "dependencies": { "@ai-sdk/openai-compatible": "2.0.37", "@ai-sdk/provider": "3.0.8", "@ai-sdk/provider-utils": "4.0.21" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-y6RoOP7DGWmDSiSxrUSt5p18sbz+Ixe5lMVPmdE7x+Tr5rlrzvftyHhjWHfqlAtoYERZTGFbP6tPW1OfQcrb4A=="], - "@ai-sdk/deepseek": ["@ai-sdk/deepseek@2.0.47", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-MzcQ321JO8OY+TVLFI81A7cIIuoeLLxrLCDD+8C1E3Ro6UFyfMtRXo9bw9OhTMRSDMo6hgSDOo4Fekz8aJtQYQ=="], + "@ai-sdk/deepseek": ["@ai-sdk/deepseek@2.0.50", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.40" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-pnl22aGBIdpK0sXSJN4zDykIXTdyO9m3gFhno3SBPpdwT4Tq041Uy0i/EDWSxIiFa9JEokFGiCt4NNzcE5ntRA=="], "@ai-sdk/elevenlabs": ["@ai-sdk/elevenlabs@2.0.51", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@ai-sdk/provider-utils": "4.0.45" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-XFONX6rAsu6d13cJVUfZfkq4a+qdThlxvoEfzYlSRa1AvALlzwX7Y6bunXxevuifT3n882+nDdWrdiYvFP0+Fw=="], @@ -5645,11 +5645,11 @@ "@ai-sdk/anthropic/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.46", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8", "undici": "^6.28.0" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-tEtld97plCFiYevsJuOkGkeuhQndeMWFBVrJS4AjnbD5AqrNSXRCe0p+BZ3Cju/sxDeeZ9ym3q9YUV8fASA7aQ=="], - "@ai-sdk/azure/@ai-sdk/openai": ["@ai-sdk/openai@3.0.84", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-cmgbeJL0bbY0yTJH4/AdmP5E7MjWRL9G8UdhIi0JlV/So03o82ORJofW8OzwCZPTORVQblFbpZXYGDcUd9NdUQ=="], + "@ai-sdk/azure/@ai-sdk/openai": ["@ai-sdk/openai@3.0.88", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.40" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-6M4+bxK/UMijDYK2ia1hCKYma1iajFYxHDlhbinFUdhH2WbFsjoZRMpSjEMlTOBptqmh2J1JclKnprGulF8WwQ=="], "@ai-sdk/azure/@ai-sdk/provider": ["@ai-sdk/provider@3.0.14", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-5X1k57JBJ4H7H1QjX7CnJYAB1I19r/trVZTMcSms7/kLNZ8RaU4Nt2agcwZzv82Hfx6Q7/TOLU7agAKeFfc8cA=="], - "@ai-sdk/azure/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.38", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/HHGmtKllqjg1OLc023v9w9kK3laW7Z6TzfZukYQWCsGBbzB9p60zTvvpXFVcs44NZBVXL3viOa1HRKUbeee8g=="], + "@ai-sdk/azure/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.40", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-OL5IrpUm9Y8Dwy+w/vvFwPotS6m52O9W0op2oXgXdCROMJIBalBI0oro6OIBYkPxvm5Xg02GSkoQN25RlR0bnw=="], "@ai-sdk/cerebras/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.21", "", { "dependencies": { "@ai-sdk/provider": "3.0.8", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.6" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-MtFUYI1/8mgDvRmaBDjbLJPFFrMG777AvSgyIFQtZHIMzm88R/12vYBBpnk7pfiWLFE1DSZzY4WDYzGbKAcmiw=="], @@ -5663,7 +5663,7 @@ "@ai-sdk/deepseek/@ai-sdk/provider": ["@ai-sdk/provider@3.0.14", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-5X1k57JBJ4H7H1QjX7CnJYAB1I19r/trVZTMcSms7/kLNZ8RaU4Nt2agcwZzv82Hfx6Q7/TOLU7agAKeFfc8cA=="], - "@ai-sdk/deepseek/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.38", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/HHGmtKllqjg1OLc023v9w9kK3laW7Z6TzfZukYQWCsGBbzB9p60zTvvpXFVcs44NZBVXL3viOa1HRKUbeee8g=="], + "@ai-sdk/deepseek/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.40", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-OL5IrpUm9Y8Dwy+w/vvFwPotS6m52O9W0op2oXgXdCROMJIBalBI0oro6OIBYkPxvm5Xg02GSkoQN25RlR0bnw=="], "@ai-sdk/elevenlabs/@ai-sdk/provider": ["@ai-sdk/provider@3.0.15", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-XeZW1CcDF2GMbH4wejW6xBRI2QCOgnkVYUnxoeDadB1mf85riL2bMUeDoh+6gJ/r4mjNfzUPW8OjLjvwTP0u1Q=="], @@ -6161,10 +6161,14 @@ "ai-gateway-provider/@ai-sdk/amazon-bedrock": ["@ai-sdk/amazon-bedrock@4.0.153", "", { "dependencies": { "@ai-sdk/anthropic": "3.0.110", "@ai-sdk/openai": "3.0.96", "@ai-sdk/provider": "3.0.15", "@ai-sdk/provider-utils": "4.0.45", "@smithy/eventstream-codec": "^4.0.1", "@smithy/util-utf8": "^4.0.0", "aws4fetch": "^1.0.20" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-iEXrLgWylCHJmznqlKLU3CqRh8UWibv+illrwmsk136FVBBvyXiGnpQrI1pGWCScVLQjBQSFQu7GJDkUEomf/A=="], + "ai-gateway-provider/@ai-sdk/azure": ["@ai-sdk/azure@3.0.88", "", { "dependencies": { "@ai-sdk/deepseek": "2.0.47", "@ai-sdk/openai": "3.0.84", "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-RRjZkB1lYplh8dpBarnvkl1j7sYLHsyXua7erL3oNcMK7fHcl4bPO5C7iQhD1O/DqD/zCceDifnege1s+8yEvw=="], + "ai-gateway-provider/@ai-sdk/cerebras": ["@ai-sdk/cerebras@2.0.60", "", { "dependencies": { "@ai-sdk/openai-compatible": "2.0.54", "@ai-sdk/provider": "3.0.12", "@ai-sdk/provider-utils": "4.0.33" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-Rnok3cThg6awBwaDSyiZpgRpbV7pqxGYrA89LODCo5cuEHeP2h0AM0lLHP7zIkclAdXfOm4wldKi/S2T/DGCOw=="], "ai-gateway-provider/@ai-sdk/cohere": ["@ai-sdk/cohere@3.0.54", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@ai-sdk/provider-utils": "4.0.45" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-cXLjIsSzUriPHe704IH6d+ipJ/OvczTB700p9Zma7DPgQzvxG/diyr8q/2LEsbTRiTopiKhky8dn1PJNQcJToQ=="], + "ai-gateway-provider/@ai-sdk/deepseek": ["@ai-sdk/deepseek@2.0.47", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@ai-sdk/provider-utils": "4.0.38" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-MzcQ321JO8OY+TVLFI81A7cIIuoeLLxrLCDD+8C1E3Ro6UFyfMtRXo9bw9OhTMRSDMo6hgSDOo4Fekz8aJtQYQ=="], + "ai-gateway-provider/@ai-sdk/google": ["@ai-sdk/google@3.0.108", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@ai-sdk/provider-utils": "4.0.45" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-kwvYpRNghqt0VRKE7Hx1UWZQCUJJFqUITj24baxy+ApS0Hru0PkBJHD75a36Wc+e6e+wHcKR2MconTeJiBZigA=="], "ai-gateway-provider/@ai-sdk/groq": ["@ai-sdk/groq@3.0.59", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@ai-sdk/provider-utils": "4.0.45" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-X4h60TGq4pIOXPsthatUr+bfTaYCaKGX597hG9JgcueEl4+nboCdw99ixjFKGkvYlBJwLCCfI957EmGA2QlF0w=="], @@ -6985,6 +6989,10 @@ "ai-gateway-provider/@ai-sdk/amazon-bedrock/@smithy/util-utf8": ["@smithy/util-utf8@4.2.2", "", { "dependencies": { "@smithy/util-buffer-from": "^4.2.2", "tslib": "^2.6.2" } }, "sha512-75MeYpjdWRe8M5E3AW0O4Cx3UadweS+cwdXjwYGBW5h/gxxnbeZ877sLPX/ZJA9GVTlL/qG0dXP29JWFCD1Ayw=="], + "ai-gateway-provider/@ai-sdk/azure/@ai-sdk/provider": ["@ai-sdk/provider@3.0.14", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-5X1k57JBJ4H7H1QjX7CnJYAB1I19r/trVZTMcSms7/kLNZ8RaU4Nt2agcwZzv82Hfx6Q7/TOLU7agAKeFfc8cA=="], + + "ai-gateway-provider/@ai-sdk/azure/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.38", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/HHGmtKllqjg1OLc023v9w9kK3laW7Z6TzfZukYQWCsGBbzB9p60zTvvpXFVcs44NZBVXL3viOa1HRKUbeee8g=="], + "ai-gateway-provider/@ai-sdk/cerebras/@ai-sdk/openai-compatible": ["@ai-sdk/openai-compatible@2.0.54", "", { "dependencies": { "@ai-sdk/provider": "3.0.12", "@ai-sdk/provider-utils": "4.0.33" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-OyXt0zK8y2/ZIyWlbxTv2r1M7AK227S+Gl4BYOEF42q0wz1n5m4fwR8L4Fy/MQ4Ho6xje47MPsFcRdIqIyP6Rw=="], "ai-gateway-provider/@ai-sdk/cerebras/@ai-sdk/provider": ["@ai-sdk/provider@3.0.12", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-sj9DWTJ2Ze0WR9qsiOPqoqzNx3OxL6iMxHImbhvoe9qOspekbzxNDMiJ4TIGfYHYh9w4OmBjz3prvqhzTi96+Q=="], @@ -6995,6 +7003,10 @@ "ai-gateway-provider/@ai-sdk/cohere/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.45", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8", "undici": "^5.29.0" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-7u5B/E2uZmU65SlJhhQGFHZwRCN0xOz4HHtFc4sEGV9PHbX3fGiEiZBpc/SABay1dGeJgK3VD60rvLGoWdWPXA=="], + "ai-gateway-provider/@ai-sdk/deepseek/@ai-sdk/provider": ["@ai-sdk/provider@3.0.14", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-5X1k57JBJ4H7H1QjX7CnJYAB1I19r/trVZTMcSms7/kLNZ8RaU4Nt2agcwZzv82Hfx6Q7/TOLU7agAKeFfc8cA=="], + + "ai-gateway-provider/@ai-sdk/deepseek/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.38", "", { "dependencies": { "@ai-sdk/provider": "3.0.14", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-/HHGmtKllqjg1OLc023v9w9kK3laW7Z6TzfZukYQWCsGBbzB9p60zTvvpXFVcs44NZBVXL3viOa1HRKUbeee8g=="], + "ai-gateway-provider/@ai-sdk/google/@ai-sdk/provider": ["@ai-sdk/provider@3.0.15", "", { "dependencies": { "json-schema": "^0.4.0" } }, "sha512-XeZW1CcDF2GMbH4wejW6xBRI2QCOgnkVYUnxoeDadB1mf85riL2bMUeDoh+6gJ/r4mjNfzUPW8OjLjvwTP0u1Q=="], "ai-gateway-provider/@ai-sdk/google/@ai-sdk/provider-utils": ["@ai-sdk/provider-utils@4.0.45", "", { "dependencies": { "@ai-sdk/provider": "3.0.15", "@standard-schema/spec": "^1.1.0", "eventsource-parser": "^3.0.8", "undici": "^5.29.0" }, "peerDependencies": { "zod": "^3.25.76 || ^4.1.8" } }, "sha512-7u5B/E2uZmU65SlJhhQGFHZwRCN0xOz4HHtFc4sEGV9PHbX3fGiEiZBpc/SABay1dGeJgK3VD60rvLGoWdWPXA=="], @@ -7431,12 +7443,16 @@ "ai-gateway-provider/@ai-sdk/amazon-bedrock/@ai-sdk/provider-utils/undici": ["undici@5.29.0", "", { "dependencies": { "@fastify/busboy": "^2.0.0" } }, "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg=="], + "ai-gateway-provider/@ai-sdk/azure/@ai-sdk/provider-utils/@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], + "ai-gateway-provider/@ai-sdk/cerebras/@ai-sdk/provider-utils/@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], "ai-gateway-provider/@ai-sdk/cohere/@ai-sdk/provider-utils/@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], "ai-gateway-provider/@ai-sdk/cohere/@ai-sdk/provider-utils/undici": ["undici@5.29.0", "", { "dependencies": { "@fastify/busboy": "^2.0.0" } }, "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg=="], + "ai-gateway-provider/@ai-sdk/deepseek/@ai-sdk/provider-utils/@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], + "ai-gateway-provider/@ai-sdk/google/@ai-sdk/provider-utils/@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], "ai-gateway-provider/@ai-sdk/google/@ai-sdk/provider-utils/undici": ["undici@5.29.0", "", { "dependencies": { "@fastify/busboy": "^2.0.0" } }, "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg=="], diff --git a/packages/core/package.json b/packages/core/package.json index eb6bf7cf1065..47b733dfd6cc 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -64,7 +64,7 @@ "@ai-sdk/alibaba": "1.0.17", "@ai-sdk/amazon-bedrock": "4.0.166", "@ai-sdk/anthropic": "3.0.111", - "@ai-sdk/azure": "3.0.88", + "@ai-sdk/azure": "3.0.93", "@ai-sdk/cerebras": "2.0.41", "@ai-sdk/cohere": "3.0.27", "@ai-sdk/deepinfra": "2.0.41", diff --git a/packages/opencode/package.json b/packages/opencode/package.json index 75f8af9ef34e..3fe792381f77 100644 --- a/packages/opencode/package.json +++ b/packages/opencode/package.json @@ -58,7 +58,7 @@ "@ai-sdk/alibaba": "1.0.17", "@ai-sdk/amazon-bedrock": "4.0.166", "@ai-sdk/anthropic": "3.0.111", - "@ai-sdk/azure": "3.0.88", + "@ai-sdk/azure": "3.0.93", "@ai-sdk/cerebras": "2.0.60", "@ai-sdk/cohere": "3.0.27", "@ai-sdk/deepinfra": "2.0.41", From ea2d59d7ca8028951a16d4ebc558104258440bf9 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" <219766164+opencode-agent[bot]@users.noreply.github.com> Date: Sun, 6 Sep 2026 16:48:43 -0500 Subject: [PATCH 08/94] fix(provider): preserve explicit OpenAI service tiers (#47671) Co-authored-by: rekram1-node --- bun.lock | 1 + package.json | 3 +- patches/@ai-sdk%2Fopenai@3.0.88.patch | 280 ++++++++++++++++++++++++++ 3 files changed, 283 insertions(+), 1 deletion(-) create mode 100644 patches/@ai-sdk%2Fopenai@3.0.88.patch diff --git a/bun.lock b/bun.lock index 2094d1517848..adfb02af1dfb 100644 --- a/bun.lock +++ b/bun.lock @@ -1064,6 +1064,7 @@ "@ai-sdk/xai@3.0.102": "patches/@ai-sdk%2Fxai@3.0.102.patch", "@modelcontextprotocol/sdk@1.29.0": "patches/@modelcontextprotocol%2Fsdk@1.29.0.patch", "gcp-metadata@8.1.2": "patches/gcp-metadata@8.1.2.patch", + "@ai-sdk/openai@3.0.88": "patches/@ai-sdk%2Fopenai@3.0.88.patch", "@standard-community/standard-openapi@0.2.9": "patches/@standard-community%2Fstandard-openapi@0.2.9.patch", "effect@4.0.0-beta.83": "patches/effect@4.0.0-beta.83.patch", "@ai-sdk/anthropic@3.0.111": "patches/@ai-sdk%2Fanthropic@3.0.111.patch", diff --git a/package.json b/package.json index 8d58ace1b453..a3f9544410da 100644 --- a/package.json +++ b/package.json @@ -162,6 +162,7 @@ "@ai-sdk/openai-compatible@2.0.41": "patches/@ai-sdk%2Fopenai-compatible@2.0.41.patch", "@ai-sdk/groq@3.0.31": "patches/@ai-sdk%2Fgroq@3.0.31.patch", "@ai-sdk/anthropic@3.0.111": "patches/@ai-sdk%2Fanthropic@3.0.111.patch", - "@ai-sdk/amazon-bedrock@4.0.166": "patches/@ai-sdk%2Famazon-bedrock@4.0.166.patch" + "@ai-sdk/amazon-bedrock@4.0.166": "patches/@ai-sdk%2Famazon-bedrock@4.0.166.patch", + "@ai-sdk/openai@3.0.88": "patches/@ai-sdk%2Fopenai@3.0.88.patch" } } diff --git a/patches/@ai-sdk%2Fopenai@3.0.88.patch b/patches/@ai-sdk%2Fopenai@3.0.88.patch new file mode 100644 index 000000000000..5d0f3f7f81fe --- /dev/null +++ b/patches/@ai-sdk%2Fopenai@3.0.88.patch @@ -0,0 +1,280 @@ +diff --git a/dist/index.js b/dist/index.js +index 5fc82d7ca0f5fba1da3b24c15bb714f51b5aa178..e1a3e2c97774af3a5688c7052bd9a07d692fcc8f 100644 +--- a/dist/index.js ++++ b/dist/index.js +@@ -1035,22 +1035,6 @@ var OpenAIChatLanguageModel = class { + }); + } + } +- if (openaiOptions.serviceTier === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- baseArgs.service_tier = void 0; +- } +- if (openaiOptions.serviceTier === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- baseArgs.service_tier = void 0; +- } + const { + tools: openaiTools2, + toolChoice: openaiToolChoice, +@@ -5454,22 +5438,6 @@ var OpenAIResponsesLanguageModel = class { + }); + } + } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- delete baseArgs.service_tier; +- } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- delete baseArgs.service_tier; +- } + const shellToolEnvType = (_k = (_j = (_i = tools == null ? void 0 : tools.find( + (tool) => tool.type === "provider" && tool.id === "openai.shell" + )) == null ? void 0 : _i.args) == null ? void 0 : _j.environment) == null ? void 0 : _k.type; +diff --git a/dist/index.mjs b/dist/index.mjs +index 589c4f76955bee692b8af36ea1d9a15121695d4a..6838ea0a362c8fe774527bb1126b8031ebfd3fab 100644 +--- a/dist/index.mjs ++++ b/dist/index.mjs +@@ -1031,22 +1031,6 @@ var OpenAIChatLanguageModel = class { + }); + } + } +- if (openaiOptions.serviceTier === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- baseArgs.service_tier = void 0; +- } +- if (openaiOptions.serviceTier === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- baseArgs.service_tier = void 0; +- } + const { + tools: openaiTools2, + toolChoice: openaiToolChoice, +@@ -5557,22 +5541,6 @@ var OpenAIResponsesLanguageModel = class { + }); + } + } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- delete baseArgs.service_tier; +- } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- delete baseArgs.service_tier; +- } + const shellToolEnvType = (_k = (_j = (_i = tools == null ? void 0 : tools.find( + (tool) => tool.type === "provider" && tool.id === "openai.shell" + )) == null ? void 0 : _i.args) == null ? void 0 : _j.environment) == null ? void 0 : _k.type; +diff --git a/dist/internal/index.js b/dist/internal/index.js +index ad78b5df9359509091f4b8a1751dc34c03c74e32..ed92f56d8fe9c1442f741ef8d42d592ce9b28643 100644 +--- a/dist/internal/index.js ++++ b/dist/internal/index.js +@@ -1070,22 +1070,6 @@ var OpenAIChatLanguageModel = class { + }); + } + } +- if (openaiOptions.serviceTier === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- baseArgs.service_tier = void 0; +- } +- if (openaiOptions.serviceTier === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- baseArgs.service_tier = void 0; +- } + const { + tools: openaiTools, + toolChoice: openaiToolChoice, +@@ -5724,22 +5708,6 @@ var OpenAIResponsesLanguageModel = class { + }); + } + } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- delete baseArgs.service_tier; +- } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- delete baseArgs.service_tier; +- } + const shellToolEnvType = (_k = (_j = (_i = tools == null ? void 0 : tools.find( + (tool) => tool.type === "provider" && tool.id === "openai.shell" + )) == null ? void 0 : _i.args) == null ? void 0 : _j.environment) == null ? void 0 : _k.type; +diff --git a/dist/internal/index.mjs b/dist/internal/index.mjs +index db7d6741c9ea615d577ea07722b469c144066268..f6b41b2832d2c8392072e0ecc1612e9e18b1b48e 100644 +--- a/dist/internal/index.mjs ++++ b/dist/internal/index.mjs +@@ -1023,22 +1023,6 @@ var OpenAIChatLanguageModel = class { + }); + } + } +- if (openaiOptions.serviceTier === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- baseArgs.service_tier = void 0; +- } +- if (openaiOptions.serviceTier === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- baseArgs.service_tier = void 0; +- } + const { + tools: openaiTools, + toolChoice: openaiToolChoice, +@@ -5802,22 +5786,6 @@ var OpenAIResponsesLanguageModel = class { + }); + } + } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "flex" && !modelCapabilities.supportsFlexProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "flex processing is only available for o3, o4-mini, and gpt-5 models" +- }); +- delete baseArgs.service_tier; +- } +- if ((openaiOptions == null ? void 0 : openaiOptions.serviceTier) === "priority" && !modelCapabilities.supportsPriorityProcessing) { +- warnings.push({ +- type: "unsupported", +- feature: "serviceTier", +- details: "priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported" +- }); +- delete baseArgs.service_tier; +- } + const shellToolEnvType = (_k = (_j = (_i = tools == null ? void 0 : tools.find( + (tool) => tool.type === "provider" && tool.id === "openai.shell" + )) == null ? void 0 : _i.args) == null ? void 0 : _j.environment) == null ? void 0 : _k.type; +diff --git a/src/chat/openai-chat-language-model.ts b/src/chat/openai-chat-language-model.ts +index 009a58deea236c2be03adc5cd03f98ed9050fd7b..a606675d82fc72a0bab8d52ac99866100e7ffb1d 100644 +--- a/src/chat/openai-chat-language-model.ts ++++ b/src/chat/openai-chat-language-model.ts +@@ -267,34 +267,6 @@ export class OpenAIChatLanguageModel implements LanguageModelV3 { + } + } + +- // Validate flex processing support +- if ( +- openaiOptions.serviceTier === 'flex' && +- !modelCapabilities.supportsFlexProcessing +- ) { +- warnings.push({ +- type: 'unsupported', +- feature: 'serviceTier', +- details: +- 'flex processing is only available for o3, o4-mini, and gpt-5 models', +- }); +- baseArgs.service_tier = undefined; +- } +- +- // Validate priority processing support +- if ( +- openaiOptions.serviceTier === 'priority' && +- !modelCapabilities.supportsPriorityProcessing +- ) { +- warnings.push({ +- type: 'unsupported', +- feature: 'serviceTier', +- details: +- 'priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported', +- }); +- baseArgs.service_tier = undefined; +- } +- + const { + tools: openaiTools, + toolChoice: openaiToolChoice, +diff --git a/src/responses/openai-responses-language-model.ts b/src/responses/openai-responses-language-model.ts +index 926e7ec713480353b969901f19c5d1d8cc883dab..ed457ce8f07a60ed48c47a3cbf11b2a7c6cf6415 100644 +--- a/src/responses/openai-responses-language-model.ts ++++ b/src/responses/openai-responses-language-model.ts +@@ -433,36 +433,6 @@ export class OpenAIResponsesLanguageModel implements LanguageModelV3 { + } + } + +- // Validate flex processing support +- if ( +- openaiOptions?.serviceTier === 'flex' && +- !modelCapabilities.supportsFlexProcessing +- ) { +- warnings.push({ +- type: 'unsupported', +- feature: 'serviceTier', +- details: +- 'flex processing is only available for o3, o4-mini, and gpt-5 models', +- }); +- // Remove from args if not supported +- delete (baseArgs as any).service_tier; +- } +- +- // Validate priority processing support +- if ( +- openaiOptions?.serviceTier === 'priority' && +- !modelCapabilities.supportsPriorityProcessing +- ) { +- warnings.push({ +- type: 'unsupported', +- feature: 'serviceTier', +- details: +- 'priority processing is only available for supported models (gpt-4, gpt-5, gpt-5-mini, o3, o4-mini) and requires Enterprise access. gpt-5-nano is not supported', +- }); +- // Remove from args if not supported +- delete (baseArgs as any).service_tier; +- } +- + const shellToolEnvType = ( + tools?.find( + tool => tool.type === 'provider' && tool.id === 'openai.shell', From e207624c48159b03dbe17dbc8e51bbcf23e72df5 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Sun, 6 Sep 2026 22:05:22 +0000 Subject: [PATCH 09/94] chore: update nix node_modules hashes --- nix/hashes.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/hashes.json b/nix/hashes.json index 46f4c3a5fe68..61e0192ecaf3 100644 --- a/nix/hashes.json +++ b/nix/hashes.json @@ -1,8 +1,8 @@ { "nodeModules": { - "x86_64-linux": "sha256-iIlDsO3XA7lneY0Bd+zgxUaGEjs5Oi8Mle6H4KGX6lE=", - "aarch64-linux": "sha256-IX92GciA8gvg0AwF7URBb7bqKZ0dB8XV3HECd5iOceY=", - "aarch64-darwin": "sha256-3asRb5Z40URPuUqn6enNsQyauwkRXuncja5OCnhHn+s=", - "x86_64-darwin": "sha256-fV7KLEoqWOPcM+MD/uspsYGmPBdy/vkuAK5rKWWrC2c=" + "x86_64-linux": "sha256-I+R5gk2EILzPEDpt6lmMoWt8SFOp/r2nj6guBjPdWnQ=", + "aarch64-linux": "sha256-8gA5awtYgzjnTiY5++b3gxwVvva4oG+7GjRxViQOsp8=", + "aarch64-darwin": "sha256-if/UVGbRaMLEtfjkbFbGy6pSAFnsi6Ydac6/q25xdkk=", + "x86_64-darwin": "sha256-fI3PEftScGvBPwtUG4K8Y8DmenwMIlU9M1HH8lyuEnw=" } } From 13e3744f76e770b4cf18a2d1022d3948b0c9f5b7 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sun, 6 Sep 2026 23:42:25 -0400 Subject: [PATCH 10/94] docs(go): document client session compatibility --- packages/web/src/content/docs/go.mdx | 82 +++++++++++++++++++++++++--- 1 file changed, 75 insertions(+), 7 deletions(-) diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index ddd14d69711c..56ad3501960c 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -93,16 +93,84 @@ The list of models may change as we test and add new ones. ## Where can I use it? -OpenCode Go is designed to be used with [OpenCode](https://opencode.ai) and other -popular coding agents that produce a similar types of requests. +OpenCode Go is designed for [OpenCode](https://opencode.ai) and other coding agents +that produce similar types of requests. Traffic is monitored for abuse that +degrades the experience for other users. + +Your client should: + +1. Avoid generating abusive traffic. +2. Identify itself with its own user agent, such as `my-coding-agent/1.0`, rather + than a generic SDK or HTTP-library name. +3. Send a stable session ID for each conversation so we can optimize routing and + prompt caching. + +### Clients with session support + +Use an up-to-date client and its OpenCode Go integration where available. + +| Client | Session support | +| --- | --- | +| **OpenCode** | Sends the session ID automatically. Update older installations. | +| **Pi** | Current builds send session information for OpenCode. Update older installations. | +| **Claude Code** | Go recognizes its native session header. No custom-header wrapper is needed. | +| **ZCode** | Go recognizes its native session header. Our [request for `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) remains open, but it is no longer necessary to send that specific header. | +| **Codex** | Go recognizes its native session header. Some versions and proxy setups still omit it; preserve the session header when forwarding requests. | +| **jcode** | Update to **v0.81.6 or later**, which includes the [session-header fix](https://github.com/1jehuang/jcode/issues/1167). | +| **Hermes** | Builds containing [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) send the header on main and auxiliary OpenCode requests. The fix was merged after v0.21.0; that release alone does not include it. | +| **Kilo Code CLI** | Builds containing [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restore OpenCode session headers. This fix covers the CLI, not the VS Code extension. See [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Clients with outstanding integration work + +These clients have missing or incomplete session support in the versions we +investigated. The linked reports track fixes and workarounds. + +| Client | Status and tracking | +| --- | --- | +| **DeepSeek Harness** | Session information arrives on some model paths, but is missing on others. We recognize its native header; the remaining work is to send it across all adapters. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatic session-header support is requested in [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatic session-header support is requested in [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) has a proposed fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), which has not yet merged. | +| **Cursor** | We have not verified automatic session support. Contact [Cursor support](https://forum.cursor.com/) about sending a stable conversation ID. | +| **WorkBuddy** | We have not verified automatic session support. Contact the team through [WorkBuddy](https://workbuddy.ai/) about sending a stable conversation ID. | +| **TauriTavern** | The maintainer reports a dedicated OpenCode provider with a stable ID, targeted at the Canary release. See [issue #221](https://github.com/Darkatse/TauriTavern/issues/221) for availability. This integration fix does not change Go's intended use for coding agents. | + +### SDKs and gateways + +SDKs do not necessarily own a conversation's lifecycle. If you build your own +coding client, supply the session ID in your application and give the client a +distinct user agent. If you use a gateway, preserve the ID from the original client. + +| Integration | What to do | +| --- | --- | +| **Vercel AI SDK** | Pass `x-opencode-session` through the `headers` option on each `generateText` or `streamText` call. [Issue #20271](https://github.com/vercel/ai/issues/20271) was closed: applications must supply the ID. | +| **OpenAI Agents SDK for Python** | Set `ModelSettings.extra_headers` with the session header. [Issue #4841](https://github.com/openai/openai-agents-python/issues/4841) was closed with this supported configuration. | +| **LangChain.js** | Add the header through your model client's request-header configuration. [Issue #11547](https://github.com/langchain-ai/langchainjs/issues/11547) tracks the request for automatic support. | +| **LiteLLM** | Configure your gateway to forward or supply a per-conversation session header. [Issue #39503](https://github.com/BerriAI/litellm/issues/39503) remains open. | +| **AxonHub** | Session-header support was added in the fix for [issue #2361](https://github.com/looplj/axonhub/issues/2361). Use a build containing that fix and the OpenCode Go channel, and pass a stable session ID from your client; a randomly generated fallback per request does not preserve conversation affinity. | +| **OpenAI / Anthropic SDKs, fetch, and other HTTP clients** | Add the session header and your application's user agent explicitly. A generic `OpenAI/Python`, `node`, `Bun`, or browser user agent does not identify the coding agent. | + +For example, create an ID when a conversation starts and reuse it on every +related request: + +```ts +// Persist this with the conversation; do not generate a new ID for each request. +const sessionID = crypto.randomUUID() +const headers = { + "user-agent": "my-coding-agent/1.0", + "x-opencode-session": sessionID, +} +``` -Traffic is monitored for abusive traffic that degrades the experience for other users. +Keep the same ID across follow-up messages, tool calls, retries, and resumed +conversations. Start a new ID for a new conversation rather than sharing one +fixed value across your entire installation. -To ensure your account does not get flagged, make sure the tool you're using +Go also accepts `x-claude-code-session-id`, `x-session-id`, `session-id`, +`session_id`, and `x-deepseek-harness-session-id`. Clients that already send one +of these do not need to duplicate it as `x-opencode-session`. -1\. does not generate abusive traffic -2\. properly identifies itself (no broad user agents)
    -3\. includes the `x-opencode-session` header so we can optimize prompt caching +--- ## Usage limits From 56d4fb24a1dd40e4ca2ab6a6d3bc5d62b5eb63be Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Mon, 7 Sep 2026 03:44:38 +0000 Subject: [PATCH 11/94] chore: generate --- packages/web/src/content/docs/go.mdx | 52 ++++++++++++++-------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index 56ad3501960c..5678047964ae 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -109,15 +109,15 @@ Your client should: Use an up-to-date client and its OpenCode Go integration where available. -| Client | Session support | -| --- | --- | -| **OpenCode** | Sends the session ID automatically. Update older installations. | -| **Pi** | Current builds send session information for OpenCode. Update older installations. | -| **Claude Code** | Go recognizes its native session header. No custom-header wrapper is needed. | -| **ZCode** | Go recognizes its native session header. Our [request for `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) remains open, but it is no longer necessary to send that specific header. | -| **Codex** | Go recognizes its native session header. Some versions and proxy setups still omit it; preserve the session header when forwarding requests. | -| **jcode** | Update to **v0.81.6 or later**, which includes the [session-header fix](https://github.com/1jehuang/jcode/issues/1167). | -| **Hermes** | Builds containing [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) send the header on main and auxiliary OpenCode requests. The fix was merged after v0.21.0; that release alone does not include it. | +| Client | Session support | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **OpenCode** | Sends the session ID automatically. Update older installations. | +| **Pi** | Current builds send session information for OpenCode. Update older installations. | +| **Claude Code** | Go recognizes its native session header. No custom-header wrapper is needed. | +| **ZCode** | Go recognizes its native session header. Our [request for `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) remains open, but it is no longer necessary to send that specific header. | +| **Codex** | Go recognizes its native session header. Some versions and proxy setups still omit it; preserve the session header when forwarding requests. | +| **jcode** | Update to **v0.81.6 or later**, which includes the [session-header fix](https://github.com/1jehuang/jcode/issues/1167). | +| **Hermes** | Builds containing [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) send the header on main and auxiliary OpenCode requests. The fix was merged after v0.21.0; that release alone does not include it. | | **Kilo Code CLI** | Builds containing [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restore OpenCode session headers. This fix covers the CLI, not the VS Code extension. See [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Clients with outstanding integration work @@ -125,15 +125,15 @@ Use an up-to-date client and its OpenCode Go integration where available. These clients have missing or incomplete session support in the versions we investigated. The linked reports track fixes and workarounds. -| Client | Status and tracking | -| --- | --- | -| **DeepSeek Harness** | Session information arrives on some model paths, but is missing on others. We recognize its native header; the remaining work is to send it across all adapters. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Automatic session-header support is requested in [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Automatic session-header support is requested in [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) has a proposed fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), which has not yet merged. | -| **Cursor** | We have not verified automatic session support. Contact [Cursor support](https://forum.cursor.com/) about sending a stable conversation ID. | -| **WorkBuddy** | We have not verified automatic session support. Contact the team through [WorkBuddy](https://workbuddy.ai/) about sending a stable conversation ID. | -| **TauriTavern** | The maintainer reports a dedicated OpenCode provider with a stable ID, targeted at the Canary release. See [issue #221](https://github.com/Darkatse/TauriTavern/issues/221) for availability. This integration fix does not change Go's intended use for coding agents. | +| Client | Status and tracking | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Session information arrives on some model paths, but is missing on others. We recognize its native header; the remaining work is to send it across all adapters. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatic session-header support is requested in [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatic session-header support is requested in [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) has a proposed fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), which has not yet merged. | +| **Cursor** | We have not verified automatic session support. Contact [Cursor support](https://forum.cursor.com/) about sending a stable conversation ID. | +| **WorkBuddy** | We have not verified automatic session support. Contact the team through [WorkBuddy](https://workbuddy.ai/) about sending a stable conversation ID. | +| **TauriTavern** | The maintainer reports a dedicated OpenCode provider with a stable ID, targeted at the Canary release. See [issue #221](https://github.com/Darkatse/TauriTavern/issues/221) for availability. This integration fix does not change Go's intended use for coding agents. | ### SDKs and gateways @@ -141,14 +141,14 @@ SDKs do not necessarily own a conversation's lifecycle. If you build your own coding client, supply the session ID in your application and give the client a distinct user agent. If you use a gateway, preserve the ID from the original client. -| Integration | What to do | -| --- | --- | -| **Vercel AI SDK** | Pass `x-opencode-session` through the `headers` option on each `generateText` or `streamText` call. [Issue #20271](https://github.com/vercel/ai/issues/20271) was closed: applications must supply the ID. | -| **OpenAI Agents SDK for Python** | Set `ModelSettings.extra_headers` with the session header. [Issue #4841](https://github.com/openai/openai-agents-python/issues/4841) was closed with this supported configuration. | -| **LangChain.js** | Add the header through your model client's request-header configuration. [Issue #11547](https://github.com/langchain-ai/langchainjs/issues/11547) tracks the request for automatic support. | -| **LiteLLM** | Configure your gateway to forward or supply a per-conversation session header. [Issue #39503](https://github.com/BerriAI/litellm/issues/39503) remains open. | -| **AxonHub** | Session-header support was added in the fix for [issue #2361](https://github.com/looplj/axonhub/issues/2361). Use a build containing that fix and the OpenCode Go channel, and pass a stable session ID from your client; a randomly generated fallback per request does not preserve conversation affinity. | -| **OpenAI / Anthropic SDKs, fetch, and other HTTP clients** | Add the session header and your application's user agent explicitly. A generic `OpenAI/Python`, `node`, `Bun`, or browser user agent does not identify the coding agent. | +| Integration | What to do | +| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Vercel AI SDK** | Pass `x-opencode-session` through the `headers` option on each `generateText` or `streamText` call. [Issue #20271](https://github.com/vercel/ai/issues/20271) was closed: applications must supply the ID. | +| **OpenAI Agents SDK for Python** | Set `ModelSettings.extra_headers` with the session header. [Issue #4841](https://github.com/openai/openai-agents-python/issues/4841) was closed with this supported configuration. | +| **LangChain.js** | Add the header through your model client's request-header configuration. [Issue #11547](https://github.com/langchain-ai/langchainjs/issues/11547) tracks the request for automatic support. | +| **LiteLLM** | Configure your gateway to forward or supply a per-conversation session header. [Issue #39503](https://github.com/BerriAI/litellm/issues/39503) remains open. | +| **AxonHub** | Session-header support was added in the fix for [issue #2361](https://github.com/looplj/axonhub/issues/2361). Use a build containing that fix and the OpenCode Go channel, and pass a stable session ID from your client; a randomly generated fallback per request does not preserve conversation affinity. | +| **OpenAI / Anthropic SDKs, fetch, and other HTTP clients** | Add the session header and your application's user agent explicitly. A generic `OpenAI/Python`, `node`, `Bun`, or browser user agent does not identify the coding agent. | For example, create an ID when a conversation starts and reuse it on every related request: From a03bba5f2c9453d2396cdf5d465ac71c493b3b07 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 7 Sep 2026 00:02:27 -0400 Subject: [PATCH 12/94] docs --- packages/web/src/content/docs/go.mdx | 52 ++++------------------------ 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index 5678047964ae..17af20a1d3e7 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -99,19 +99,19 @@ degrades the experience for other users. Your client should: -1. Avoid generating abusive traffic. +1. Send typical coding agent traffic 2. Identify itself with its own user agent, such as `my-coding-agent/1.0`, rather than a generic SDK or HTTP-library name. -3. Send a stable session ID for each conversation so we can optimize routing and +3. Send a stable session ID in `x-opencode-session` for each conversation so we can optimize routing and prompt caching. -### Clients with session support +### Validated Clients -Use an up-to-date client and its OpenCode Go integration where available. +Besides OpenCode, the following clients have been validated to work properly +with OpenCode Go. Although we do not guarantee that they will continue to work in the future. | Client | Session support | | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **OpenCode** | Sends the session ID automatically. Update older installations. | | **Pi** | Current builds send session information for OpenCode. Update older installations. | | **Claude Code** | Go recognizes its native session header. No custom-header wrapper is needed. | | **ZCode** | Go recognizes its native session header. Our [request for `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) remains open, but it is no longer necessary to send that specific header. | @@ -120,7 +120,7 @@ Use an up-to-date client and its OpenCode Go integration where available. | **Hermes** | Builds containing [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) send the header on main and auxiliary OpenCode requests. The fix was merged after v0.21.0; that release alone does not include it. | | **Kilo Code CLI** | Builds containing [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restore OpenCode session headers. This fix covers the CLI, not the VS Code extension. See [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | -### Clients with outstanding integration work +### Known Problematic Clients These clients have missing or incomplete session support in the versions we investigated. The linked reports track fixes and workarounds. @@ -131,46 +131,6 @@ investigated. The linked reports track fixes and workarounds. | **GitHub Copilot Chat** | Automatic session-header support is requested in [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | | **Kimi Code** | Automatic session-header support is requested in [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | | **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) has a proposed fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), which has not yet merged. | -| **Cursor** | We have not verified automatic session support. Contact [Cursor support](https://forum.cursor.com/) about sending a stable conversation ID. | -| **WorkBuddy** | We have not verified automatic session support. Contact the team through [WorkBuddy](https://workbuddy.ai/) about sending a stable conversation ID. | -| **TauriTavern** | The maintainer reports a dedicated OpenCode provider with a stable ID, targeted at the Canary release. See [issue #221](https://github.com/Darkatse/TauriTavern/issues/221) for availability. This integration fix does not change Go's intended use for coding agents. | - -### SDKs and gateways - -SDKs do not necessarily own a conversation's lifecycle. If you build your own -coding client, supply the session ID in your application and give the client a -distinct user agent. If you use a gateway, preserve the ID from the original client. - -| Integration | What to do | -| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **Vercel AI SDK** | Pass `x-opencode-session` through the `headers` option on each `generateText` or `streamText` call. [Issue #20271](https://github.com/vercel/ai/issues/20271) was closed: applications must supply the ID. | -| **OpenAI Agents SDK for Python** | Set `ModelSettings.extra_headers` with the session header. [Issue #4841](https://github.com/openai/openai-agents-python/issues/4841) was closed with this supported configuration. | -| **LangChain.js** | Add the header through your model client's request-header configuration. [Issue #11547](https://github.com/langchain-ai/langchainjs/issues/11547) tracks the request for automatic support. | -| **LiteLLM** | Configure your gateway to forward or supply a per-conversation session header. [Issue #39503](https://github.com/BerriAI/litellm/issues/39503) remains open. | -| **AxonHub** | Session-header support was added in the fix for [issue #2361](https://github.com/looplj/axonhub/issues/2361). Use a build containing that fix and the OpenCode Go channel, and pass a stable session ID from your client; a randomly generated fallback per request does not preserve conversation affinity. | -| **OpenAI / Anthropic SDKs, fetch, and other HTTP clients** | Add the session header and your application's user agent explicitly. A generic `OpenAI/Python`, `node`, `Bun`, or browser user agent does not identify the coding agent. | - -For example, create an ID when a conversation starts and reuse it on every -related request: - -```ts -// Persist this with the conversation; do not generate a new ID for each request. -const sessionID = crypto.randomUUID() -const headers = { - "user-agent": "my-coding-agent/1.0", - "x-opencode-session": sessionID, -} -``` - -Keep the same ID across follow-up messages, tool calls, retries, and resumed -conversations. Start a new ID for a new conversation rather than sharing one -fixed value across your entire installation. - -Go also accepts `x-claude-code-session-id`, `x-session-id`, `session-id`, -`session_id`, and `x-deepseek-harness-session-id`. Clients that already send one -of these do not need to duplicate it as `x-opencode-session`. - ---- ## Usage limits From 53fec37d8d2b9e0d92a1b4184e8df8f8480a2d26 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Mon, 7 Sep 2026 04:03:53 +0000 Subject: [PATCH 13/94] chore: generate --- packages/web/src/content/docs/go.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index 17af20a1d3e7..ab9e1bf18936 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -125,12 +125,12 @@ with OpenCode Go. Although we do not guarantee that they will continue to work i These clients have missing or incomplete session support in the versions we investigated. The linked reports track fixes and workarounds. -| Client | Status and tracking | -| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **DeepSeek Harness** | Session information arrives on some model paths, but is missing on others. We recognize its native header; the remaining work is to send it across all adapters. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Automatic session-header support is requested in [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Automatic session-header support is requested in [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) has a proposed fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), which has not yet merged. | +| Client | Status and tracking | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **DeepSeek Harness** | Session information arrives on some model paths, but is missing on others. We recognize its native header; the remaining work is to send it across all adapters. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatic session-header support is requested in [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatic session-header support is requested in [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) has a proposed fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), which has not yet merged. | ## Usage limits From f914cac3d47ef812fbea5b6cc0cbdc0357e03637 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 7 Sep 2026 01:49:16 -0400 Subject: [PATCH 14/94] docs --- packages/web/src/content/docs/go.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index ab9e1bf18936..ba4c06be2c48 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -112,12 +112,12 @@ with OpenCode Go. Although we do not guarantee that they will continue to work i | Client | Session support | | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Pi** | Current builds send session information for OpenCode. Update older installations. | +| **Hermes** | Builds containing [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) send the header on main and auxiliary OpenCode requests. The fix was merged after v0.21.0; that release alone does not include it. | | **Claude Code** | Go recognizes its native session header. No custom-header wrapper is needed. | -| **ZCode** | Go recognizes its native session header. Our [request for `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) remains open, but it is no longer necessary to send that specific header. | | **Codex** | Go recognizes its native session header. Some versions and proxy setups still omit it; preserve the session header when forwarding requests. | +| **ZCode** | Go recognizes its native session header. Our [request for `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) remains open, but it is no longer necessary to send that specific header. | +| **Pi** | Current builds send session information for OpenCode. Update older installations. | | **jcode** | Update to **v0.81.6 or later**, which includes the [session-header fix](https://github.com/1jehuang/jcode/issues/1167). | -| **Hermes** | Builds containing [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) send the header on main and auxiliary OpenCode requests. The fix was merged after v0.21.0; that release alone does not include it. | | **Kilo Code CLI** | Builds containing [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restore OpenCode session headers. This fix covers the CLI, not the VS Code extension. See [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Known Problematic Clients From 57ef3828431790c53f8f333c7ffbfe88770a1812 Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Mon, 7 Sep 2026 01:11:00 -0500 Subject: [PATCH 15/94] feat(console): publish oauth client metadata document (#47737) --- .../src/routes/oauth/opencode/client.json.ts | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 packages/console/app/src/routes/oauth/opencode/client.json.ts diff --git a/packages/console/app/src/routes/oauth/opencode/client.json.ts b/packages/console/app/src/routes/oauth/opencode/client.json.ts new file mode 100644 index 000000000000..edbdfc981698 --- /dev/null +++ b/packages/console/app/src/routes/oauth/opencode/client.json.ts @@ -0,0 +1,38 @@ +import type { APIEvent } from "@solidjs/start/server" + +// OAuth Client ID Metadata Document for the opencode client. +// Spec: https://datatracker.ietf.org/doc/draft-ietf-oauth-client-id-metadata-document/ +// +// When an MCP server's authorization server supports this, opencode sends this URL as its OAuth client_id +// instead of registering a new client. The authorization server fetches the document to learn our name and +// allowed redirect URIs. The client_id field must equal the exact URL the document was fetched from, so it is +// built from the request origin and stays valid on dev.opencode.ai as well as production. +// +// redirect_uris have no port because opencode binds an ephemeral port per login. RFC 8252 section 7.3 has +// authorization servers ignore the port when matching loopback redirects for native apps. +const PATH = "/oauth/opencode/client.json" + +const cache = "public, max-age=300" + +export function GET(event: APIEvent) { + const origin = new URL(event.request.url).origin + const document = { + client_id: origin + PATH, + client_name: "opencode", + client_uri: origin, + logo_uri: origin + "/web-app-manifest-512x512.png", + application_type: "native", + redirect_uris: ["http://127.0.0.1/callback", "http://localhost/callback"], + grant_types: ["authorization_code", "refresh_token"], + response_types: ["code"], + token_endpoint_auth_method: "none", + token_endpoint_auth_methods_supported: ["none"], + } + return new Response(JSON.stringify(document, null, 2), { + headers: { + "Content-Type": "application/json", + "Cache-Control": cache, + "Access-Control-Allow-Origin": "*", + }, + }) +} From 0b082b065d2b6bdf2cc6e6234176cbdaa2544d31 Mon Sep 17 00:00:00 2001 From: Vladimir Glafirov Date: Mon, 7 Sep 2026 18:03:30 +0200 Subject: [PATCH 16/94] chore: bump gitlab-ai-provider to 6.15.0 (#47792) --- bun.lock | 6 +++--- packages/core/package.json | 2 +- packages/opencode/package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bun.lock b/bun.lock index adfb02af1dfb..0efe1b76b05f 100644 --- a/bun.lock +++ b/bun.lock @@ -341,7 +341,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.14.0", + "gitlab-ai-provider": "6.15.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", @@ -634,7 +634,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.14.0", + "gitlab-ai-provider": "6.15.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", @@ -3846,7 +3846,7 @@ "github-slugger": ["github-slugger@2.0.0", "", {}, "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw=="], - "gitlab-ai-provider": ["gitlab-ai-provider@6.14.0", "", { "dependencies": { "@anthropic-ai/sdk": "^0.71.0", "@anycable/core": "^0.9.2", "graphql-request": "^6.1.0", "isomorphic-ws": "^5.0.0", "openai": "^6.16.0", "socket.io-client": "^4.8.1", "vscode-jsonrpc": "^8.2.1", "zod": "^3.25.76" }, "peerDependencies": { "@ai-sdk/provider": ">=3.0.0", "@ai-sdk/provider-utils": ">=4.0.0" } }, "sha512-qTkmFhcHXH0tjQN6i5D2lz9OpmYN0lwJdmFIXlsmy6IiYVV2dmsqMemlDNjpE5M8gdSC+61n4mByPzVsyBu0lg=="], + "gitlab-ai-provider": ["gitlab-ai-provider@6.15.0", "", { "dependencies": { "@anthropic-ai/sdk": "^0.71.0", "@anycable/core": "^0.9.2", "graphql-request": "^6.1.0", "isomorphic-ws": "^5.0.0", "openai": "^6.16.0", "socket.io-client": "^4.8.1", "vscode-jsonrpc": "^8.2.1", "zod": "^3.25.76" }, "peerDependencies": { "@ai-sdk/provider": ">=3.0.0", "@ai-sdk/provider-utils": ">=4.0.0" } }, "sha512-hHJsb4WP+WPTMtMC0gZcTi0wreMvR6WdEPeUPRHNlyW7yX0HuFG7v1oZ/ethbF6y/FG3/7NcirNgjZLjNneW7g=="], "glob": ["glob@13.0.5", "", { "dependencies": { "minimatch": "^10.2.1", "minipass": "^7.1.2", "path-scurry": "^2.0.0" } }, "sha512-BzXxZg24Ibra1pbQ/zE7Kys4Ua1ks7Bn6pKLkVPZ9FZe4JQS6/Q7ef3LG1H+k7lUf5l4T3PLSyYyYJVYUvfgTw=="], diff --git a/packages/core/package.json b/packages/core/package.json index 47b733dfd6cc..daa4c4e91e3d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -108,7 +108,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.14.0", + "gitlab-ai-provider": "6.15.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", diff --git a/packages/opencode/package.json b/packages/opencode/package.json index 3fe792381f77..d1aca264d548 100644 --- a/packages/opencode/package.json +++ b/packages/opencode/package.json @@ -120,7 +120,7 @@ "drizzle-orm": "catalog:", "effect": "catalog:", "fuzzysort": "3.1.0", - "gitlab-ai-provider": "6.14.0", + "gitlab-ai-provider": "6.15.0", "glob": "13.0.5", "google-auth-library": "10.5.0", "gray-matter": "4.0.3", From ecbc6ccac85b3e8087b6445e584318419b9e2b34 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Mon, 7 Sep 2026 16:21:14 +0000 Subject: [PATCH 17/94] chore: update nix node_modules hashes --- nix/hashes.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/hashes.json b/nix/hashes.json index 61e0192ecaf3..845909e093d8 100644 --- a/nix/hashes.json +++ b/nix/hashes.json @@ -1,8 +1,8 @@ { "nodeModules": { - "x86_64-linux": "sha256-I+R5gk2EILzPEDpt6lmMoWt8SFOp/r2nj6guBjPdWnQ=", - "aarch64-linux": "sha256-8gA5awtYgzjnTiY5++b3gxwVvva4oG+7GjRxViQOsp8=", - "aarch64-darwin": "sha256-if/UVGbRaMLEtfjkbFbGy6pSAFnsi6Ydac6/q25xdkk=", - "x86_64-darwin": "sha256-fI3PEftScGvBPwtUG4K8Y8DmenwMIlU9M1HH8lyuEnw=" + "x86_64-linux": "sha256-tHl+UGkUbalkh+C5RDkRpZ3Q87tgvqnoF4xdih6QeOw=", + "aarch64-linux": "sha256-rdnbvlOOr/88SQ9zd+PfilJ4pQZdKplFyQGfdHBuBKQ=", + "aarch64-darwin": "sha256-28GpwYLMo2cN4Y9cY6/xn9R5EggFj/m1guuSxsbqisM=", + "x86_64-darwin": "sha256-eO0fs/0gwWwqPA8WElg8s7EZsxKd9J4Hws15P4xqHlc=" } } From eebd85f5d1eefcffa18523fa8aa614b3cb5613b4 Mon Sep 17 00:00:00 2001 From: Jack Date: Tue, 8 Sep 2026 14:50:35 +0800 Subject: [PATCH 18/94] docs(go): translate client compatibility guidance (#47901) --- packages/web/src/content/docs/ar/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/bs/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/da/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/de/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/es/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/fr/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/it/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/ja/go.mdx | 38 ++++++++++++++--- packages/web/src/content/docs/ko/go.mdx | 38 ++++++++++++++--- packages/web/src/content/docs/nb/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/pl/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/pt-br/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/ru/go.mdx | 47 +++++++++++++++++----- packages/web/src/content/docs/th/go.mdx | 38 ++++++++++++++--- packages/web/src/content/docs/tr/go.mdx | 38 ++++++++++++++--- packages/web/src/content/docs/zh-cn/go.mdx | 35 +++++++++++++--- packages/web/src/content/docs/zh-tw/go.mdx | 35 +++++++++++++--- 17 files changed, 606 insertions(+), 133 deletions(-) diff --git a/packages/web/src/content/docs/ar/go.mdx b/packages/web/src/content/docs/ar/go.mdx index 0cc8916a1574..7539981d899c 100644 --- a/packages/web/src/content/docs/ar/go.mdx +++ b/packages/web/src/content/docs/ar/go.mdx @@ -83,15 +83,44 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر ## أين يمكنني استخدامه؟ -صُمّم OpenCode Go للاستخدام مع [OpenCode](https://opencode.ai) وغيره من وكلاء البرمجة الشائعين الذين ينشئون أنواعًا مماثلة من الطلبات. - -تتم مراقبة حركة المرور لرصد الاستخدام المسيء الذي يؤدي إلى تدهور تجربة المستخدمين الآخرين. - -لتجنب وضع علامة على حسابك، تأكد من أن الأداة التي تستخدمها - -1\. لا تنشئ حركة مرور مسيئة -2\. تعرّف عن نفسها بشكل صحيح (من دون معرّفات وكيل مستخدم عامة) -3\. تتضمن ترويسة `x-opencode-session` حتى نتمكن من تحسين التخزين المؤقت للمطالبات +صُمّم OpenCode Go للاستخدام مع [OpenCode](https://opencode.ai) ووكلاء البرمجة الآخرين +الذين ينشئون أنواعًا مماثلة من الطلبات. وتتم مراقبة حركة المرور لرصد إساءة الاستخدام التي +تؤدي إلى تدهور تجربة المستخدمين الآخرين. + +ينبغي لعميلك أن: + +1. يرسل حركة المرور المعتادة لوكلاء البرمجة. +2. يعرّف عن نفسه باستخدام وكيل المستخدم الخاص به، مثل `my-coding-agent/1.0`، بدلًا + من اسم عام لحزمة SDK أو مكتبة HTTP. +3. يرسل معرّف جلسة ثابتًا في `x-opencode-session` لكل محادثة حتى نتمكن من تحسين التوجيه + والتخزين المؤقت للمطالبات. + +### العملاء الذين تم التحقق منهم + +بالإضافة إلى OpenCode، تم التحقق من أن العملاء التاليين يعملون بصورة صحيحة +مع OpenCode Go، مع أننا لا نضمن استمرارهم في العمل مستقبلًا. + +| العميل | دعم الجلسات | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | ترسل البُنى التي تتضمن [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) الترويسة في طلبات OpenCode الرئيسية والمساعدة. دُمج الإصلاح بعد v0.21.0؛ ولا يتضمن ذلك الإصدار وحده الإصلاح. | +| **Claude Code** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. ولا حاجة إلى غلاف لإضافة ترويسة مخصصة. | +| **Codex** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. لا تزال بعض الإصدارات وإعدادات الوكيل تحذفها؛ لذا حافظ على ترويسة الجلسة عند إعادة توجيه الطلبات. | +| **ZCode** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. لا يزال [طلبنا لإضافة `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) مفتوحًا، لكن إرسال هذه الترويسة بعينها لم يعد ضروريًا. | +| **Pi** | ترسل الإصدارات الحالية معلومات الجلسة إلى OpenCode. حدّث عمليات التثبيت الأقدم. | +| **jcode** | حدّث إلى **v0.81.6 أو إصدار أحدث**، إذ يتضمن [إصلاح ترويسة الجلسة](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | تعيد الإصدارات التي تتضمن [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) ترويسات جلسات OpenCode. يشمل هذا الإصلاح CLI، وليس إضافة VS Code. راجع [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### العملاء المعروف وجود مشكلات لديهم + +دعم الجلسات مفقود أو غير مكتمل في إصدارات هؤلاء العملاء التي +تحققنا منها. وتتابع البلاغات المرتبطة الإصلاحات والحلول البديلة. + +| العميل | الحالة والمتابعة | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **DeepSeek Harness** | تصل معلومات الجلسة عبر بعض مسارات النماذج، لكنها تكون مفقودة عبر مسارات أخرى. نتعرف على ترويسة الجلسة الأصلية الخاصة به؛ والعمل المتبقي هو إرسالها عبر جميع المحولات. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | طُلب دعم ترويسة الجلسة تلقائيًا في [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | طُلب دعم ترويسة الجلسة تلقائيًا في [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | يتضمن [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) إصلاحًا مقترحًا في [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)، ولم يُدمج بعد. | ## حدود الاستخدام diff --git a/packages/web/src/content/docs/bs/go.mdx b/packages/web/src/content/docs/bs/go.mdx index 5b709650eaae..c379aa291b21 100644 --- a/packages/web/src/content/docs/bs/go.mdx +++ b/packages/web/src/content/docs/bs/go.mdx @@ -93,15 +93,44 @@ Lista modela se može mijenjati dok testiramo i dodajemo nove. ## Gdje ga mogu koristiti? -OpenCode Go je osmišljen za korištenje s [OpenCode-om](https://opencode.ai) i drugim popularnim agentima za programiranje koji generišu slične vrste zahtjeva. - -Saobraćaj se nadzire radi otkrivanja zloupotrebe koja narušava iskustvo drugih korisnika. - -Kako vaš račun ne bi bio označen, pobrinite se da alat koji koristite - -1\. ne generiše saobraćaj koji predstavlja zloupotrebu -2\. se ispravno identifikuje (bez generičkih User-Agent identifikatora) -3\. uključuje zaglavlje `x-opencode-session` kako bismo mogli optimizovati keširanje promptova +OpenCode Go je osmišljen za [OpenCode](https://opencode.ai) i druge agente za programiranje +koji šalju slične vrste zahtjeva. Saobraćaj se nadzire radi otkrivanja zloupotrebe koja +drugim korisnicima narušava iskustvo. + +Vaš klijent treba: + +1. Slati tipičan saobraćaj agenta za programiranje. +2. Identifikovati se vlastitim user agentom, kao što je `my-coding-agent/1.0`, a ne + generičkim nazivom SDK-a ili HTTP biblioteke. +3. Slati stabilan ID sesije u zaglavlju `x-opencode-session` za svaki razgovor kako bismo mogli optimizovati usmjeravanje i + keširanje promptova. + +### Provjereni klijenti + +Pored OpenCode-a, potvrđeno je da sljedeći klijenti ispravno rade +s OpenCode Go. Ipak, ne garantiramo da će nastaviti raditi i u budućnosti. + +| Klijent | Podrška za sesije | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Buildovi koji sadrže [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) šalju zaglavlje u glavnim i pomoćnim OpenCode zahtjevima. Ispravka je spojena nakon verzije v0.21.0; samo to izdanje je ne sadrži. | +| **Claude Code** | Go prepoznaje njegovo izvorno zaglavlje sesije. Wrapper za prilagođeno zaglavlje nije potreban. | +| **Codex** | Go prepoznaje njegovo izvorno zaglavlje sesije. Neke verzije i proxy konfiguracije ga i dalje izostavljaju; sačuvajte zaglavlje sesije pri prosljeđivanju zahtjeva. | +| **ZCode** | Go prepoznaje njegovo izvorno zaglavlje sesije. Naš [zahtjev za `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) i dalje je otvoren, ali slanje tog konkretnog zaglavlja više nije potrebno. | +| **Pi** | Trenutni buildovi šalju informacije o sesiji za OpenCode. Ažurirajte starije instalacije. | +| **jcode** | Ažurirajte na **v0.81.6 ili noviju**, koja uključuje [ispravku zaglavlja sesije](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Buildovi koji sadrže [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) vraćaju OpenCode zaglavlja sesije. Ova ispravka obuhvata CLI, ali ne i VS Code ekstenziju. Pogledajte [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Poznati problematični klijenti + +Ovim klijentima nedostaje podrška za sesije ili je ona nepotpuna u verzijama koje smo +istražili. Povezani izvještaji prate ispravke i zaobilazna rješenja. + +| Klijent | Status i praćenje | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Informacije o sesiji stižu za neke putanje modela, ali nedostaju za druge. Prepoznajemo njegovo izvorno zaglavlje; preostaje da se ono šalje kroz sve adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatska podrška za zaglavlje sesije zatražena je u [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatska podrška za zaglavlje sesije zatražena je u [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) ima predloženu ispravku u [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), koji još nije spojen. | ## Ograničenja upotrebe diff --git a/packages/web/src/content/docs/da/go.mdx b/packages/web/src/content/docs/da/go.mdx index 39504d3ff275..0208563cb649 100644 --- a/packages/web/src/content/docs/da/go.mdx +++ b/packages/web/src/content/docs/da/go.mdx @@ -93,15 +93,44 @@ Listen over modeller kan ændre sig, efterhånden som vi tester og tilføjer nye ## Hvor kan jeg bruge det? -OpenCode Go er designet til brug med [OpenCode](https://opencode.ai) og andre populære kodningsagenter, der genererer lignende typer anmodninger. - -Trafikken overvåges for misbrug, der forringer oplevelsen for andre brugere. - -For at sikre, at din konto ikke bliver markeret, skal du sørge for, at det værktøj, du bruger, - -1\. ikke genererer misbrugstrafik -2\. identificerer sig korrekt (ingen generiske User-Agent-identifikatorer) -3\. inkluderer `x-opencode-session`-headeren, så vi kan optimere prompt-caching +OpenCode Go er udviklet til [OpenCode](https://opencode.ai) og andre kodningsagenter, +der sender lignende typer anmodninger. Trafikken overvåges for misbrug, der +forringer oplevelsen for andre brugere. + +Din klient skal: + +1. Sende typisk trafik fra en kodningsagent. +2. Identificere sig med sin egen user agent, f.eks. `my-coding-agent/1.0`, i stedet + for et generisk navn på et SDK eller HTTP-bibliotek. +3. Sende et stabilt sessions-id i `x-opencode-session` for hver samtale, så vi kan optimere routing og + prompt-caching. + +### Validerede klienter + +Ud over OpenCode er følgende klienter blevet valideret til at fungere korrekt +med OpenCode Go. Vi garanterer dog ikke, at de fortsat vil fungere fremover. + +| Klient | Sessionsunderstøttelse | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Builds, der indeholder [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), sender headeren i primære og sekundære OpenCode-anmodninger. Rettelsen blev merged efter v0.21.0; den version indeholder den ikke i sig selv. | +| **Claude Code** | Go genkender dens indbyggede sessionsheader. En wrapper til en brugerdefineret header er ikke nødvendig. | +| **Codex** | Go genkender dens indbyggede sessionsheader. Nogle versioner og proxyopsætninger udelader den stadig; bevar sessionsheaderen, når anmodninger videresendes. | +| **ZCode** | Go genkender dens indbyggede sessionsheader. Vores [anmodning om `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) er stadig åben, men det er ikke længere nødvendigt at sende netop denne header. | +| **Pi** | Aktuelle builds sender sessionsoplysninger til OpenCode. Opdater ældre installationer. | +| **jcode** | Opdater til **v0.81.6 eller nyere**, som indeholder [rettelsen til sessionsheaderen](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Builds, der indeholder [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), gendanner OpenCode-sessionsheadere. Denne rettelse dækker CLI'en, men ikke VS Code-udvidelsen. Se [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Kendte problematiske klienter + +Disse klienter mangler sessionsunderstøttelse eller har ufuldstændig understøttelse i de versioner, vi +undersøgte. De linkede rapporter følger rettelser og løsninger. + +| Klient | Status og opfølgning | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Sessionsoplysninger modtages på nogle modelstier, men mangler på andre. Vi genkender dens indbyggede header; det resterende arbejde er at sende den gennem alle adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatisk understøttelse af sessionsheaderen er efterspurgt i [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatisk understøttelse af sessionsheaderen er efterspurgt i [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) har en foreslået rettelse i [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), som endnu ikke er merged. | ## Forbrugsgrænser diff --git a/packages/web/src/content/docs/de/go.mdx b/packages/web/src/content/docs/de/go.mdx index 0e49e30a2d09..624bf78338b7 100644 --- a/packages/web/src/content/docs/de/go.mdx +++ b/packages/web/src/content/docs/de/go.mdx @@ -85,15 +85,44 @@ Die Liste der Modelle kann sich ändern, während wir neue testen und hinzufüge ## Wo kann ich es verwenden? -OpenCode Go wurde für die Verwendung mit [OpenCode](https://opencode.ai) und anderen beliebten Coding-Agenten entwickelt, die ähnliche Arten von Anfragen erzeugen. - -Der Datenverkehr wird auf missbräuchlichen Traffic überwacht, der das Nutzungserlebnis anderer beeinträchtigt. - -Damit dein Konto nicht markiert wird, stelle sicher, dass das von dir verwendete Tool - -1\. keinen missbräuchlichen Traffic erzeugt -2\. sich ordnungsgemäß identifiziert (keine allgemeinen User-Agents) -3\. den Header `x-opencode-session` enthält, damit wir das Prompt-Caching optimieren können +OpenCode Go wurde für [OpenCode](https://opencode.ai) und andere Coding-Agenten entwickelt, +die ähnliche Arten von Anfragen erzeugen. Der Datenverkehr wird auf Missbrauch überwacht, +der das Nutzungserlebnis anderer beeinträchtigt. + +Dein Client sollte: + +1. typischen Datenverkehr eines Coding-Agenten senden +2. sich mit einem eigenen User-Agent wie `my-coding-agent/1.0` identifizieren und + nicht mit dem allgemeinen Namen eines SDKs oder einer HTTP-Bibliothek. +3. für jede Unterhaltung eine stabile Sitzungs-ID in `x-opencode-session` senden, damit wir das Routing und + Prompt-Caching optimieren können. + +### Validierte Clients + +Neben OpenCode wurden die folgenden Clients für die ordnungsgemäße Verwendung mit +OpenCode Go validiert. Wir garantieren jedoch nicht, dass sie auch in Zukunft funktionieren werden. + +| Client | Sitzungsunterstützung | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Builds mit [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) senden den Header bei Haupt- und zusätzlichen OpenCode-Anfragen. Der Fix wurde nach v0.21.0 gemergt; diese Version allein enthält ihn nicht. | +| **Claude Code** | Go erkennt seinen nativen Sitzungs-Header. Es ist kein Wrapper für benutzerdefinierte Header erforderlich. | +| **Codex** | Go erkennt seinen nativen Sitzungs-Header. Einige Versionen und Proxy-Konfigurationen lassen ihn weiterhin weg; stelle sicher, dass der Sitzungs-Header beim Weiterleiten von Anfragen erhalten bleibt. | +| **ZCode** | Go erkennt seinen nativen Sitzungs-Header. Unsere [Anfrage für `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) ist weiterhin offen, aber es ist nicht mehr erforderlich, genau diesen Header zu senden. | +| **Pi** | Aktuelle Builds senden Sitzungsinformationen für OpenCode. Aktualisiere ältere Installationen. | +| **jcode** | Aktualisiere auf **v0.81.6 oder neuer**. Diese Version enthält den [Fix für den Sitzungs-Header](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Builds mit [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) stellen OpenCode-Sitzungs-Header wieder her. Dieser Fix gilt für die CLI, nicht für die VS-Code-Erweiterung. Siehe [Issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Bekannte problematische Clients + +Bei diesen Clients fehlt in den von uns untersuchten Versionen die Sitzungsunterstützung +oder sie ist unvollständig. Die verlinkten Berichte dokumentieren Fixes und Problemumgehungen. + +| Client | Status und Nachverfolgung | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **DeepSeek Harness** | Sitzungsinformationen werden bei einigen Modellpfaden übermittelt, fehlen aber bei anderen. Wir erkennen seinen nativen Header; dieser muss noch von allen Adaptern gesendet werden. [Diskussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatische Unterstützung für Sitzungs-Header wurde in [VS Code Issue #334186](https://github.com/microsoft/vscode/issues/334186) angefragt. | +| **Kimi Code** | Automatische Unterstützung für Sitzungs-Header wurde in [Issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) angefragt. | +| **MiMo Code** | Für [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) gibt es einen vorgeschlagenen Fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), der noch nicht gemergt wurde. | ## Nutzungslimits diff --git a/packages/web/src/content/docs/es/go.mdx b/packages/web/src/content/docs/es/go.mdx index dd75cdda7751..3ec6cab9cc68 100644 --- a/packages/web/src/content/docs/es/go.mdx +++ b/packages/web/src/content/docs/es/go.mdx @@ -93,15 +93,44 @@ La lista de modelos puede cambiar a medida que probamos y agregamos otros nuevos ## ¿Dónde puedo usarlo? -OpenCode Go está diseñado para usarse con [OpenCode](https://opencode.ai) y otros agentes de programación populares que generan tipos de peticiones similares. - -El tráfico se supervisa para detectar tráfico abusivo que perjudique la experiencia de otros usuarios. - -Para evitar que tu cuenta sea marcada, asegúrate de que la herramienta que usas - -1\. no genere tráfico abusivo -2\. se identifique correctamente (sin agentes de usuario genéricos) -3\. incluya el encabezado `x-opencode-session` para que podamos optimizar el almacenamiento en caché de prompts +OpenCode Go está diseñado para [OpenCode](https://opencode.ai) y otros agentes de programación +que generan tipos de peticiones similares. El tráfico se supervisa para detectar abusos que +perjudiquen la experiencia de otros usuarios. + +Tu cliente debe: + +1. Enviar el tráfico habitual de un agente de programación +2. Identificarse con su propio agente de usuario, como `my-coding-agent/1.0`, en lugar + del nombre genérico de un SDK o una biblioteca HTTP. +3. Enviar un ID de sesión estable en `x-opencode-session` para cada conversación, de modo que podamos optimizar el enrutamiento y + el almacenamiento en caché de prompts. + +### Clientes validados + +Además de OpenCode, se ha validado que los siguientes clientes funcionan correctamente +con OpenCode Go. Sin embargo, no garantizamos que sigan funcionando en el futuro. + +| Cliente | Compatibilidad con sesiones | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Las compilaciones que incluyen el [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) envían el encabezado en las peticiones principales y auxiliares de OpenCode. La corrección se fusionó después de v0.21.0; esa versión por sí sola no la incluye. | +| **Claude Code** | Go reconoce su encabezado de sesión nativo. No se necesita ningún wrapper para encabezados personalizados. | +| **Codex** | Go reconoce su encabezado de sesión nativo. Algunas versiones y configuraciones de proxy aún lo omiten; conserva el encabezado de sesión al reenviar peticiones. | +| **ZCode** | Go reconoce su encabezado de sesión nativo. Nuestra [solicitud de `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) sigue abierta, pero ya no es necesario enviar ese encabezado específico. | +| **Pi** | Las compilaciones actuales envían información de sesión para OpenCode. Actualiza las instalaciones antiguas. | +| **jcode** | Actualiza a la versión **v0.81.6 o posterior**, que incluye la [corrección del encabezado de sesión](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Las compilaciones que incluyen el [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restauran los encabezados de sesión de OpenCode. Esta corrección cubre la CLI, no la extensión de VS Code. Consulta el [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Clientes con problemas conocidos + +Estos clientes tienen una compatibilidad con sesiones ausente o incompleta en las versiones que +investigamos. Los informes enlazados permiten seguir las correcciones y las soluciones alternativas. + +| Cliente | Estado y seguimiento | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | La información de sesión llega por algunas rutas de modelos, pero falta en otras. Reconocemos su encabezado nativo; aún es necesario enviarlo a través de todos los adaptadores. [Discusión #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | La compatibilidad automática con el encabezado de sesión se solicitó en el [issue #334186 de VS Code](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | La compatibilidad automática con el encabezado de sesión se solicitó en el [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | El [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) tiene una corrección propuesta en el [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), que aún no se ha fusionado. | ## Límites de uso diff --git a/packages/web/src/content/docs/fr/go.mdx b/packages/web/src/content/docs/fr/go.mdx index ba966e91e092..84390f198a70 100644 --- a/packages/web/src/content/docs/fr/go.mdx +++ b/packages/web/src/content/docs/fr/go.mdx @@ -83,15 +83,44 @@ La liste des modèles peut changer au fur et à mesure que nous en testons et en ## Où puis-je l'utiliser ? -OpenCode Go est conçu pour être utilisé avec [OpenCode](https://opencode.ai) et d'autres agents de codage populaires qui génèrent des types de requêtes similaires. - -Le trafic est surveillé afin de détecter tout trafic abusif qui dégrade l'expérience des autres utilisateurs. - -Pour éviter que votre compte ne soit signalé, assurez-vous que l'outil que vous utilisez - -1\. ne génère pas de trafic abusif -2\. s'identifie correctement (pas d'agents utilisateur génériques) -3\. inclut l'en-tête `x-opencode-session` afin que nous puissions optimiser la mise en cache des prompts +OpenCode Go est conçu pour [OpenCode](https://opencode.ai) et d'autres agents de codage +qui produisent des types de requêtes similaires. Le trafic est surveillé afin de détecter les abus qui +dégradent l'expérience des autres utilisateurs. + +Votre client doit : + +1. Envoyer le trafic habituel d'un agent de codage +2. S'identifier avec son propre agent utilisateur, tel que `my-coding-agent/1.0`, plutôt + qu'avec le nom générique d'un SDK ou d'une bibliothèque HTTP. +3. Envoyer un ID de session stable dans `x-opencode-session` pour chaque conversation afin que nous puissions optimiser le routage et + la mise en cache des prompts. + +### Clients validés + +Outre OpenCode, le bon fonctionnement des clients suivants avec OpenCode Go a été +validé. Nous ne garantissons toutefois pas qu'ils continueront à fonctionner à l'avenir. + +| Client | Prise en charge des sessions | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Les builds contenant la [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) envoient l'en-tête sur les requêtes OpenCode principales et auxiliaires. Le correctif a été fusionné après la v0.21.0 ; cette version seule ne l'inclut pas. | +| **Claude Code** | Go reconnaît son en-tête de session natif. Aucun wrapper d'en-tête personnalisé n'est nécessaire. | +| **Codex** | Go reconnaît son en-tête de session natif. Certaines versions et configurations de proxy l'omettent encore ; conservez l'en-tête de session lors du transfert des requêtes. | +| **ZCode** | Go reconnaît son en-tête de session natif. Notre [demande concernant `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) reste ouverte, mais il n'est plus nécessaire d'envoyer spécifiquement cet en-tête. | +| **Pi** | Les builds actuels envoient les informations de session pour OpenCode. Mettez à jour les installations plus anciennes. | +| **jcode** | Passez à la version **v0.81.6 ou ultérieure**, qui inclut le [correctif de l'en-tête de session](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Les builds contenant la [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) rétablissent les en-têtes de session OpenCode. Ce correctif concerne la CLI, pas l'extension VS Code. Consultez l'[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Clients connus pour poser problème + +Dans les versions que nous avons examinées, ces clients ne prennent pas en charge les sessions +ou ne les prennent en charge que partiellement. Les rapports associés permettent de suivre les correctifs et les solutions de contournement. + +| Client | État et suivi | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Les informations de session sont présentes pour certains chemins de modèles, mais absentes pour d'autres. Nous reconnaissons son en-tête natif ; il reste à l'envoyer depuis tous les adaptateurs. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | La prise en charge automatique de l'en-tête de session fait l'objet de l'[issue VS Code #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | La prise en charge automatique de l'en-tête de session fait l'objet de l'[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | L'[issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) dispose d'un correctif proposé dans la [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), qui n'a pas encore été fusionnée. | ## Limites d'utilisation diff --git a/packages/web/src/content/docs/it/go.mdx b/packages/web/src/content/docs/it/go.mdx index e4f142166113..eddc58f34837 100644 --- a/packages/web/src/content/docs/it/go.mdx +++ b/packages/web/src/content/docs/it/go.mdx @@ -91,15 +91,44 @@ L'elenco dei modelli potrebbe cambiare man mano che ne testiamo e aggiungiamo di ## Dove posso usarlo? -OpenCode Go è progettato per essere utilizzato con [OpenCode](https://opencode.ai) e altri agenti di programmazione popolari che generano tipi di richieste simili. - -Il traffico viene monitorato per rilevare traffico abusivo che compromette l'esperienza degli altri utenti. - -Per evitare che il tuo account venga segnalato, assicurati che lo strumento che utilizzi - -1\. non generi traffico abusivo -2\. si identifichi correttamente (senza user agent generici) -3\. includa l'header `x-opencode-session` in modo da consentirci di ottimizzare il caching dei prompt +OpenCode Go è progettato per [OpenCode](https://opencode.ai) e altri agenti di programmazione +che producono tipi di richieste simili. Il traffico viene monitorato per rilevare gli abusi che +compromettono l'esperienza degli altri utenti. + +Il tuo client deve: + +1. Inviare il traffico tipico di un agente di programmazione +2. Identificarsi con un proprio user agent, ad esempio `my-coding-agent/1.0`, anziché + con il nome generico di un SDK o di una libreria HTTP. +3. Inviare un ID di sessione stabile in `x-opencode-session` per ogni conversazione, in modo da consentirci di ottimizzare il routing e + il caching dei prompt. + +### Client convalidati + +Oltre a OpenCode, è stato verificato che i seguenti client funzionino correttamente +con OpenCode Go. Tuttavia, non garantiamo che continueranno a funzionare in futuro. + +| Client | Supporto delle sessioni | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Le build contenenti la [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) inviano l'header nelle richieste OpenCode principali e ausiliarie. La correzione è stata unita dopo la v0.21.0; quella versione da sola non la include. | +| **Claude Code** | Go riconosce il suo header di sessione nativo. Non è necessario alcun wrapper per header personalizzati. | +| **Codex** | Go riconosce il suo header di sessione nativo. Alcune versioni e configurazioni proxy continuano a ometterlo; mantieni l'header di sessione quando inoltri le richieste. | +| **ZCode** | Go riconosce il suo header di sessione nativo. La nostra [richiesta per `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) è ancora aperta, ma non è più necessario inviare proprio quell'header. | +| **Pi** | Le build attuali inviano le informazioni di sessione per OpenCode. Aggiorna le installazioni meno recenti. | +| **jcode** | Aggiorna alla versione **v0.81.6 o successiva**, che include la [correzione dell'header di sessione](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Le build contenenti la [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) ripristinano gli header di sessione OpenCode. Questa correzione riguarda la CLI, non l'estensione VS Code. Consulta l'[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Client con problemi noti + +Nelle versioni che abbiamo esaminato, questi client non supportano le sessioni +o le supportano solo parzialmente. Le segnalazioni collegate consentono di seguire le correzioni e le soluzioni alternative. + +| Client | Stato e segnalazioni | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Le informazioni di sessione arrivano tramite alcuni percorsi dei modelli, ma mancano in altri. Riconosciamo il suo header nativo; resta da inviarlo attraverso tutti gli adapter. [Discussione #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Il supporto automatico dell'header di sessione è stato richiesto nell'[issue #334186 di VS Code](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Il supporto automatico dell'header di sessione è stato richiesto nell'[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | L'[issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) ha una correzione proposta nella [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), che non è stata ancora unita. | ## Limiti di utilizzo diff --git a/packages/web/src/content/docs/ja/go.mdx b/packages/web/src/content/docs/ja/go.mdx index 21f16312eb6d..d0f2207273ff 100644 --- a/packages/web/src/content/docs/ja/go.mdx +++ b/packages/web/src/content/docs/ja/go.mdx @@ -83,15 +83,41 @@ OpenCode Goをサブスクライブできるのは、1つのワークスペー ## どこで使用できますか? -OpenCode Goは、[OpenCode](https://opencode.ai)や、同様の種類のリクエストを生成するその他の一般的なコーディングエージェントで使用することを想定しています。 +OpenCode Goは、[OpenCode](https://opencode.ai)および同様の種類のリクエストを生成するその他のコーディングエージェント向けに設計されています。 +他のユーザーの利用体験を損なう不正利用がないか、トラフィックを監視しています。 -他のユーザーの利用体験を損なう不正なトラフィックがないか監視されています。 +クライアントは以下の要件を満たす必要があります。 -アカウントにフラグが付けられないよう、使用するツールが以下の条件を満たしていることを確認してください。 +1. 一般的なコーディングエージェントのトラフィックを送信する。 +2. 汎用的なSDK名やHTTPライブラリ名ではなく、`my-coding-agent/1.0`のような独自のユーザーエージェントで自身を識別する。 +3. ルーティングとプロンプトキャッシュを最適化できるよう、会話ごとに安定したセッションIDを`x-opencode-session`で送信する。 -1\. 不正なトラフィックを生成しない -2\. 自身を適切に識別する(汎用的すぎるユーザーエージェントを使用しない) -3\. プロンプトキャッシュを最適化できるよう、`x-opencode-session`ヘッダーを含める +### 動作確認済みのクライアント + +OpenCodeに加えて、以下のクライアントがOpenCode Goで正常に動作することを確認しています。 +ただし、今後も動作し続けることを保証するものではありません。 + +| クライアント | セッション対応 | +| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864)を含むビルドでは、OpenCodeのメインリクエストと補助リクエストの両方でヘッダーが送信されます。この修正はv0.21.0より後にマージされたため、v0.21.0自体には含まれていません。 | +| **Claude Code** | GoはClaude Code固有のセッションヘッダーを認識します。カスタムヘッダーを追加するラッパーは不要です。 | +| **Codex** | GoはCodex固有のセッションヘッダーを認識します。一部のバージョンやプロキシ設定では引き続きヘッダーが省略されるため、リクエストを転送するときはセッションヘッダーを保持してください。 | +| **ZCode** | GoはZCode固有のセッションヘッダーを認識します。[`x-opencode-session`の追加リクエスト](https://github.com/zai-org/feedback/issues/492)は未解決ですが、この特定のヘッダーを送信する必要はなくなりました。 | +| **Pi** | 現在のビルドはOpenCodeにセッション情報を送信します。古いインストールは更新してください。 | +| **jcode** | [セッションヘッダーの修正](https://github.com/1jehuang/jcode/issues/1167)を含む**v0.81.6以降**に更新してください。 | +| **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752)を含むビルドでは、OpenCodeのセッションヘッダーが再び送信されます。この修正の対象はCLIであり、VS Code拡張機能ではありません。[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)を参照してください。 | + +### 既知の問題があるクライアント + +調査したバージョンでは、以下のクライアントのセッション対応が欠けているか不完全です。 +リンク先の報告で修正や回避策を追跡しています。 + +| クライアント | 状況と追跡 | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | 一部のモデルパスではセッション情報が届きますが、他のパスでは欠落します。GoはDeepSeek Harness固有のヘッダーを認識します。残る対応は、すべてのアダプターからそのヘッダーを送信することです。[Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | +| **GitHub Copilot Chat** | セッションヘッダーの自動送信対応は[VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186)で要望されています。 | +| **Kimi Code** | セッションヘッダーの自動送信対応は[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506)で要望されています。 | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317)には[PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)で修正案がありますが、まだマージされていません。 | ## 利用制限 diff --git a/packages/web/src/content/docs/ko/go.mdx b/packages/web/src/content/docs/ko/go.mdx index 28f52fdf6d9e..e3989dca50fb 100644 --- a/packages/web/src/content/docs/ko/go.mdx +++ b/packages/web/src/content/docs/ko/go.mdx @@ -83,15 +83,41 @@ workspace당 한 명의 멤버만 OpenCode Go를 구독할 수 있습니다. ## 어디에서 사용할 수 있나요? -OpenCode Go는 [OpenCode](https://opencode.ai) 및 유사한 유형의 요청을 생성하는 다른 인기 코딩 에이전트와 함께 사용하도록 설계되었습니다. +OpenCode Go는 [OpenCode](https://opencode.ai) 및 유사한 유형의 요청을 생성하는 다른 코딩 에이전트용으로 설계되었습니다. +다른 사용자의 이용 경험을 저해하는 악용이 있는지 트래픽을 모니터링합니다. -다른 사용자의 이용 경험을 저해하는 악성 트래픽이 있는지 모니터링합니다. +클라이언트는 다음 요건을 충족해야 합니다. -계정에 플래그가 지정되지 않도록 사용 중인 도구가 다음 조건을 충족하는지 확인하세요. +1. 일반적인 코딩 에이전트 트래픽을 전송합니다. +2. 일반적인 SDK 또는 HTTP 라이브러리 이름이 아닌 `my-coding-agent/1.0`과 같은 자체 user agent로 식별합니다. +3. 라우팅과 프롬프트 캐싱을 최적화할 수 있도록 각 대화에서 안정적인 세션 ID를 `x-opencode-session`으로 전송합니다. -1\. 악성 트래픽을 생성하지 않음 -2\. 자체 정보를 올바르게 표시함(포괄적인 사용자 에이전트를 사용하지 않음) -3\. 프롬프트 캐싱을 최적화할 수 있도록 `x-opencode-session` 헤더를 포함함 +### 검증된 클라이언트 + +OpenCode 외에도 다음 클라이언트가 OpenCode Go에서 올바르게 작동하는 것으로 검증되었습니다. +다만 앞으로도 계속 작동할 것이라고 보장하지는 않습니다. + +| 클라이언트 | 세션 지원 | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864)가 포함된 빌드는 OpenCode의 기본 요청과 보조 요청 모두에서 헤더를 전송합니다. 이 수정은 v0.21.0 이후에 병합되었으므로 v0.21.0 릴리스 자체에는 포함되지 않습니다. | +| **Claude Code** | Go는 Claude Code의 고유 세션 헤더를 인식합니다. 사용자 지정 헤더 래퍼가 필요하지 않습니다. | +| **Codex** | Go는 Codex의 고유 세션 헤더를 인식합니다. 일부 버전과 프록시 설정에서는 여전히 이 헤더가 누락되므로 요청을 전달할 때 세션 헤더를 유지하세요. | +| **ZCode** | Go는 ZCode의 고유 세션 헤더를 인식합니다. [`x-opencode-session` 요청](https://github.com/zai-org/feedback/issues/492)은 아직 열려 있지만 이제 해당 헤더를 별도로 전송할 필요는 없습니다. | +| **Pi** | 현재 빌드는 OpenCode에 세션 정보를 전송합니다. 이전 설치 버전은 업데이트하세요. | +| **jcode** | [세션 헤더 수정](https://github.com/1jehuang/jcode/issues/1167)이 포함된 **v0.81.6 이상**으로 업데이트하세요. | +| **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752)가 포함된 빌드는 OpenCode 세션 헤더를 복원합니다. 이 수정은 CLI에만 적용되며 VS Code 확장에는 적용되지 않습니다. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)을 참조하세요. | + +### 알려진 문제가 있는 클라이언트 + +조사한 버전에서 다음 클라이언트는 세션 지원이 없거나 불완전했습니다. +링크된 보고서에서 수정 사항과 해결 방법을 추적합니다. + +| 클라이언트 | 상태 및 추적 | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | 일부 모델 경로에서는 세션 정보가 전달되지만 다른 경로에서는 누락됩니다. Go는 DeepSeek Harness의 고유 헤더를 인식하며, 남은 작업은 모든 어댑터에서 이 헤더를 전송하는 것입니다. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | 자동 세션 헤더 지원은 [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186)에서 요청되었습니다. | +| **Kimi Code** | 자동 세션 헤더 지원은 [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506)에서 요청되었습니다. | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317)에 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)로 수정안이 제안되었지만 아직 병합되지 않았습니다. | ## 사용 한도 diff --git a/packages/web/src/content/docs/nb/go.mdx b/packages/web/src/content/docs/nb/go.mdx index 39034c9250e2..fa8299900bef 100644 --- a/packages/web/src/content/docs/nb/go.mdx +++ b/packages/web/src/content/docs/nb/go.mdx @@ -93,15 +93,44 @@ Listen over modeller kan endres etter hvert som vi tester og legger til nye. ## Hvor kan jeg bruke det? -OpenCode Go er utviklet for bruk med [OpenCode](https://opencode.ai) og andre populære kodeagenter som genererer lignende typer forespørsler. - -Trafikken overvåkes for misbruk som forringer opplevelsen for andre brukere. - -For å sikre at kontoen din ikke blir flagget, må du sørge for at verktøyet du bruker, - -1\. ikke genererer misbrukstrafikk -2\. identifiserer seg korrekt (ingen generiske User-Agent-identifikatorer) -3\. inkluderer `x-opencode-session`-headeren, slik at vi kan optimalisere promptbufring +OpenCode Go er utviklet for [OpenCode](https://opencode.ai) og andre kodeagenter +som sender lignende typer forespørsler. Trafikken overvåkes for misbruk som +forringer opplevelsen for andre brukere. + +Klienten din skal: + +1. Sende typisk trafikk fra en kodeagent. +2. Identifisere seg med sin egen user agent, for eksempel `my-coding-agent/1.0`, i stedet + for et generisk navn på et SDK eller HTTP-bibliotek. +3. Sende en stabil sesjons-ID i `x-opencode-session` for hver samtale, slik at vi kan optimalisere ruting og + promptbufring. + +### Validerte klienter + +I tillegg til OpenCode er følgende klienter validert for å fungere riktig +med OpenCode Go. Vi garanterer imidlertid ikke at de vil fortsette å fungere i fremtiden. + +| Klient | Sesjonsstøtte | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Bygg som inneholder [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), sender headeren i primære og sekundære OpenCode-forespørsler. Rettelsen ble slått sammen etter v0.21.0; den versjonen inneholder den ikke alene. | +| **Claude Code** | Go gjenkjenner den innebygde sesjonsheaderen. En wrapper for en egendefinert header er ikke nødvendig. | +| **Codex** | Go gjenkjenner den innebygde sesjonsheaderen. Noen versjoner og proxyoppsett utelater den fortsatt; behold sesjonsheaderen når forespørsler videresendes. | +| **ZCode** | Go gjenkjenner den innebygde sesjonsheaderen. Vår [forespørsel om `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) er fortsatt åpen, men det er ikke lenger nødvendig å sende akkurat denne headeren. | +| **Pi** | Gjeldende bygg sender sesjonsinformasjon for OpenCode. Oppdater eldre installasjoner. | +| **jcode** | Oppdater til **v0.81.6 eller nyere**, som inneholder [rettelsen for sesjonsheaderen](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Bygg som inneholder [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), gjenoppretter OpenCode-sesjonsheadere. Denne rettelsen dekker CLI-en, ikke VS Code-utvidelsen. Se [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Kjente problematiske klienter + +Disse klientene mangler sesjonsstøtte eller har ufullstendig støtte i versjonene vi +undersøkte. De lenkede rapportene følger rettelser og midlertidige løsninger. + +| Klient | Status og oppfølging | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **DeepSeek Harness** | Sesjonsinformasjon mottas på noen modellbaner, men mangler på andre. Vi gjenkjenner den innebygde headeren; det gjenstående arbeidet er å sende den gjennom alle adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatisk støtte for sesjonsheaderen er etterspurt i [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatisk støtte for sesjonsheaderen er etterspurt i [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) har en foreslått rettelse i [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), som ennå ikke er slått sammen. | ## Bruksgrenser diff --git a/packages/web/src/content/docs/pl/go.mdx b/packages/web/src/content/docs/pl/go.mdx index a9c94fc30843..34737509154e 100644 --- a/packages/web/src/content/docs/pl/go.mdx +++ b/packages/web/src/content/docs/pl/go.mdx @@ -87,15 +87,44 @@ Lista modeli może ulec zmianie w miarę testowania i dodawania nowych. ## Gdzie można z tego korzystać? -OpenCode Go jest przeznaczony do użytku z [OpenCode](https://opencode.ai) i innymi popularnymi agentami kodującymi, którzy generują podobne rodzaje żądań. - -Ruch jest monitorowany pod kątem nadużyć, które pogarszają komfort korzystania z usługi przez innych użytkowników. - -Aby Twoje konto nie zostało oznaczone, upewnij się, że używane przez Ciebie narzędzie - -1\. nie generuje ruchu stanowiącego nadużycie -2\. prawidłowo się identyfikuje (bez ogólnych identyfikatorów User-Agent) -3\. zawiera nagłówek `x-opencode-session`, abyśmy mogli zoptymalizować buforowanie promptów +OpenCode Go jest przeznaczony dla [OpenCode](https://opencode.ai) i innych agentów kodujących, +którzy wysyłają podobne rodzaje żądań. Ruch jest monitorowany pod kątem nadużyć, +które pogarszają komfort korzystania z usługi przez innych użytkowników. + +Twój klient powinien: + +1. Wysyłać ruch typowy dla agenta kodującego. +2. Identyfikować się za pomocą własnego user agenta, na przykład `my-coding-agent/1.0`, zamiast + ogólnej nazwy SDK lub biblioteki HTTP. +3. Wysyłać stabilny identyfikator sesji w nagłówku `x-opencode-session` dla każdej rozmowy, aby umożliwić optymalizację routingu i + buforowania promptów. + +### Zweryfikowane klienty + +Poza OpenCode zweryfikowano, że poniżsi klienci działają prawidłowo +z OpenCode Go. Nie gwarantujemy jednak, że będą nadal działać w przyszłości. + +| Klient | Obsługa sesji | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Kompilacje zawierające [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) wysyłają nagłówek w głównych i pomocniczych żądaniach OpenCode. Poprawkę scalono po wersji v0.21.0; samo to wydanie jej nie zawiera. | +| **Claude Code** | Go rozpoznaje jego natywny nagłówek sesji. Wrapper dodający niestandardowy nagłówek nie jest potrzebny. | +| **Codex** | Go rozpoznaje jego natywny nagłówek sesji. Niektóre wersje i konfiguracje proxy nadal go pomijają; podczas przekazywania żądań należy zachować nagłówek sesji. | +| **ZCode** | Go rozpoznaje jego natywny nagłówek sesji. Nasza [prośba o `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) pozostaje otwarta, ale wysyłanie tego konkretnego nagłówka nie jest już konieczne. | +| **Pi** | Aktualne kompilacje wysyłają informacje o sesji dla OpenCode. Zaktualizuj starsze instalacje. | +| **jcode** | Zaktualizuj do wersji **v0.81.6 lub nowszej**, która zawiera [poprawkę nagłówka sesji](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Kompilacje zawierające [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) przywracają nagłówki sesji OpenCode. Ta poprawka obejmuje CLI, ale nie rozszerzenie VS Code. Zobacz [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Klienty ze znanymi problemami + +W badanych przez nas wersjach tych klientów obsługa sesji jest niepełna lub jej brakuje. +Raporty pod podanymi linkami służą do śledzenia poprawek i obejść. + +| Klient | Stan i śledzenie | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Informacje o sesji docierają w niektórych ścieżkach modeli, ale brakuje ich w innych. Rozpoznajemy jego natywny nagłówek; pozostaje zapewnić jego wysyłanie przez wszystkie adaptery. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Prośbę o automatyczną obsługę nagłówka sesji zgłoszono w [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Prośbę o automatyczną obsługę nagłówka sesji zgłoszono w [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | Dla [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) zaproponowano poprawkę w [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), który nie został jeszcze scalony. | ## Limity użycia diff --git a/packages/web/src/content/docs/pt-br/go.mdx b/packages/web/src/content/docs/pt-br/go.mdx index c8b621a007e9..0083a3a0677c 100644 --- a/packages/web/src/content/docs/pt-br/go.mdx +++ b/packages/web/src/content/docs/pt-br/go.mdx @@ -93,15 +93,44 @@ A lista de modelos pode mudar conforme testamos e adicionamos novos. ## Onde posso usá-lo? -O OpenCode Go foi projetado para ser usado com o [OpenCode](https://opencode.ai) e outros agentes de programação populares que geram tipos de requisições semelhantes. - -O tráfego é monitorado para detectar tráfego abusivo que prejudique a experiência de outros usuários. - -Para evitar que sua conta seja sinalizada, verifique se a ferramenta que você está usando - -1\. não gera tráfego abusivo -2\. se identifica corretamente (sem user agents genéricos) -3\. inclui o header `x-opencode-session` para que possamos otimizar o cache de prompts +O OpenCode Go foi projetado para o [OpenCode](https://opencode.ai) e outros agentes de programação +que produzem tipos semelhantes de requisições. O tráfego é monitorado para detectar abusos que +prejudiquem a experiência de outros usuários. + +Seu cliente deve: + +1. Enviar o tráfego típico de um agente de programação +2. Identificar-se com seu próprio user agent, como `my-coding-agent/1.0`, em vez + do nome genérico de um SDK ou de uma biblioteca HTTP. +3. Enviar um ID de sessão estável em `x-opencode-session` para cada conversa, para que possamos otimizar o roteamento e + o cache de prompts. + +### Clientes validados + +Além do OpenCode, os clientes a seguir foram validados para funcionar corretamente +com o OpenCode Go. No entanto, não garantimos que continuarão funcionando no futuro. + +| Cliente | Suporte a sessões | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | As builds que contêm o [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) enviam o header nas requisições principais e auxiliares do OpenCode. A correção foi incorporada após a v0.21.0; essa versão por si só não a inclui. | +| **Claude Code** | O Go reconhece seu header de sessão nativo. Não é necessário usar um wrapper para headers personalizados. | +| **Codex** | O Go reconhece seu header de sessão nativo. Algumas versões e configurações de proxy ainda o omitem; preserve o header de sessão ao encaminhar requisições. | +| **ZCode** | O Go reconhece seu header de sessão nativo. Nossa [solicitação de `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) continua aberta, mas não é mais necessário enviar especificamente esse header. | +| **Pi** | As builds atuais enviam informações de sessão para o OpenCode. Atualize instalações mais antigas. | +| **jcode** | Atualize para a versão **v0.81.6 ou posterior**, que inclui a [correção do header de sessão](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | As builds que contêm o [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restauram os headers de sessão do OpenCode. Essa correção abrange a CLI, não a extensão do VS Code. Consulte a [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Clientes com problemas conhecidos + +Esses clientes não têm suporte a sessões ou apresentam suporte incompleto nas versões que +investigamos. Os relatórios vinculados acompanham correções e soluções alternativas. + +| Cliente | Status e acompanhamento | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **DeepSeek Harness** | As informações de sessão chegam por alguns caminhos de modelos, mas não por outros. Reconhecemos seu header nativo; ainda é necessário enviá-lo por todos os adaptadores. [Discussão #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | O suporte automático ao header de sessão foi solicitado na [issue #334186 do VS Code](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | O suporte automático ao header de sessão foi solicitado na [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | A [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) tem uma correção proposta no [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), que ainda não foi incorporada. | ## Limites de uso diff --git a/packages/web/src/content/docs/ru/go.mdx b/packages/web/src/content/docs/ru/go.mdx index c7e250902d15..f56cfbb125ce 100644 --- a/packages/web/src/content/docs/ru/go.mdx +++ b/packages/web/src/content/docs/ru/go.mdx @@ -93,15 +93,44 @@ OpenCode Go работает так же, как и любой другой пр ## Где можно использовать OpenCode Go? -OpenCode Go предназначен для использования с [OpenCode](https://opencode.ai) и другими популярными агентами для программирования, которые создают запросы схожих типов. - -Трафик отслеживается для выявления злоупотреблений, ухудшающих работу сервиса для других пользователей. - -Чтобы ваша учетная запись не была отмечена, убедитесь, что используемый вами инструмент - -1\. не создает трафик, представляющий собой злоупотребление -2\. правильно идентифицирует себя (без универсальных значений User-Agent) -3\. включает заголовок `x-opencode-session`, чтобы мы могли оптимизировать кеширование промптов +OpenCode Go предназначен для [OpenCode](https://opencode.ai) и других агентов для программирования, +которые отправляют запросы схожих типов. Трафик отслеживается для выявления злоупотреблений, +ухудшающих работу сервиса для других пользователей. + +Ваш клиент должен: + +1. Отправлять трафик, типичный для агента программирования. +2. Идентифицировать себя с помощью собственного user agent, например `my-coding-agent/1.0`, а не + универсального названия SDK или HTTP-библиотеки. +3. Отправлять стабильный идентификатор сессии в заголовке `x-opencode-session` для каждого диалога, чтобы мы могли оптимизировать маршрутизацию и + кеширование промптов. + +### Проверенные клиенты + +Помимо OpenCode, корректная работа с OpenCode Go подтверждена для следующих клиентов. +Однако мы не гарантируем, что они продолжат работать в будущем. + +| Клиент | Поддержка сессий | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Сборки, содержащие [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), отправляют заголовок в основных и вспомогательных запросах OpenCode. Исправление было объединено после v0.21.0; само это издание его не содержит. | +| **Claude Code** | Go распознает его нативный заголовок сессии. Обертка для добавления пользовательского заголовка не требуется. | +| **Codex** | Go распознает его нативный заголовок сессии. Некоторые версии и конфигурации прокси по-прежнему его не передают; сохраняйте заголовок сессии при пересылке запросов. | +| **ZCode** | Go распознает его нативный заголовок сессии. Наш [запрос на `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) остается открытым, но отправлять именно этот заголовок больше не требуется. | +| **Pi** | Текущие сборки отправляют информацию о сессии для OpenCode. Обновите более старые установки. | +| **jcode** | Обновитесь до версии **v0.81.6 или новее**, которая содержит [исправление заголовка сессии](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Сборки, содержащие [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), восстанавливают заголовки сессии OpenCode. Это исправление относится к CLI, но не к расширению VS Code. См. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Клиенты с известными проблемами + +В исследованных нами версиях этих клиентов поддержка сессий отсутствует или реализована +не полностью. По ссылкам можно отслеживать исправления и обходные решения. + +| Клиент | Статус и отслеживание | +| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Информация о сессии поступает для некоторых путей моделей, но отсутствует для других. Мы распознаем его нативный заголовок; остается обеспечить его отправку через все адаптеры. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Запрос на автоматическую поддержку заголовка сессии создан в [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Запрос на автоматическую поддержку заголовка сессии создан в [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | Для [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) предложено исправление в [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), который еще не объединен. | ## Лимиты использования diff --git a/packages/web/src/content/docs/th/go.mdx b/packages/web/src/content/docs/th/go.mdx index 08a1026ba012..621599d46f3a 100644 --- a/packages/web/src/content/docs/th/go.mdx +++ b/packages/web/src/content/docs/th/go.mdx @@ -83,15 +83,41 @@ OpenCode Go ทำงานเหมือนกับผู้ให้บร ## ใช้งานได้ที่ไหน? -OpenCode Go ออกแบบมาเพื่อใช้กับ [OpenCode](https://opencode.ai) และเอเจนต์เขียนโค้ดยอดนิยมอื่นๆ ที่สร้างคำขอในลักษณะเดียวกัน +OpenCode Go ออกแบบมาสำหรับ [OpenCode](https://opencode.ai) และ coding agent อื่นๆ ที่สร้างคำขอประเภทเดียวกัน +ระบบจะตรวจสอบทราฟฟิกเพื่อหาการใช้งานในทางที่ผิดซึ่งทำให้ประสบการณ์ของผู้ใช้รายอื่นแย่ลง -ระบบจะตรวจสอบการรับส่งข้อมูลเพื่อค้นหาการใช้งานในทางที่ผิดซึ่งส่งผลกระทบต่อประสบการณ์ของผู้ใช้รายอื่น +ไคลเอนต์ของคุณควร: -เพื่อให้แน่ใจว่าบัญชีของคุณจะไม่ถูกตั้งค่าสถานะ โปรดตรวจสอบว่าเครื่องมือที่คุณใช้ +1. ส่งทราฟฟิกตามปกติของ coding agent +2. ระบุตัวตนด้วย user agent ของตนเอง เช่น `my-coding-agent/1.0` แทนชื่อ SDK หรือไลบรารี HTTP แบบทั่วไป +3. ส่ง session ID ที่คงที่ใน `x-opencode-session` สำหรับแต่ละบทสนทนา เพื่อให้เราปรับ routing และ prompt caching ให้เหมาะสมได้ -1\. ไม่สร้างการรับส่งข้อมูลที่เป็นการใช้งานในทางที่ผิด -2\. ระบุตัวตนอย่างถูกต้อง (ไม่ใช้ข้อมูลระบุตัวแทนผู้ใช้แบบกว้างเกินไป) -3\. มีส่วนหัว `x-opencode-session` เพื่อให้เราสามารถปรับการแคชพรอมต์ให้เหมาะสมได้ +### ไคลเอนต์ที่ผ่านการตรวจสอบแล้ว + +นอกจาก OpenCode แล้ว ไคลเอนต์ต่อไปนี้ได้รับการตรวจสอบแล้วว่าทำงานกับ OpenCode Go ได้อย่างถูกต้อง +อย่างไรก็ตาม เราไม่รับประกันว่าไคลเอนต์เหล่านี้จะยังคงทำงานได้ต่อไปในอนาคต + +| ไคลเอนต์ | การรองรับเซสชัน | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | บิลด์ที่มี [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) จะส่งส่วนหัวในคำขอ OpenCode ทั้งคำขอหลักและคำขอเสริม การแก้ไขนี้ถูก merge หลัง v0.21.0 ดังนั้นตัวรีลีส v0.21.0 เองจึงยังไม่มีการแก้ไขนี้ | +| **Claude Code** | Go รู้จักส่วนหัวเซสชันแบบ native ของ Claude Code จึงไม่ต้องใช้ wrapper เพื่อเพิ่มส่วนหัวแบบกำหนดเอง | +| **Codex** | Go รู้จักส่วนหัวเซสชันแบบ native ของ Codex แต่บางเวอร์ชันและการตั้งค่า proxy ยังไม่ส่งส่วนหัวนี้ โปรดคงส่วนหัวเซสชันไว้เมื่อ forward คำขอ | +| **ZCode** | Go รู้จักส่วนหัวเซสชันแบบ native ของ ZCode [คำขอให้เพิ่ม `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) ของเรายังเปิดอยู่ แต่ไม่จำเป็นต้องส่งส่วนหัวเฉพาะนี้อีกต่อไป | +| **Pi** | บิลด์ปัจจุบันส่งข้อมูลเซสชันสำหรับ OpenCode โปรดอัปเดตการติดตั้งเวอร์ชันเก่า | +| **jcode** | อัปเดตเป็น **v0.81.6 หรือใหม่กว่า** ซึ่งมี[การแก้ไขส่วนหัวเซสชัน](https://github.com/1jehuang/jcode/issues/1167) | +| **Kilo Code CLI** | บิลด์ที่มี [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) จะทำให้ส่วนหัวเซสชันของ OpenCode กลับมาทำงาน การแก้ไขนี้ครอบคลุม CLI แต่ไม่ครอบคลุมส่วนขยาย VS Code ดู [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723) | + +### ไคลเอนต์ที่ทราบว่ามีปัญหา + +ไคลเอนต์เหล่านี้ไม่รองรับเซสชันหรือรองรับไม่สมบูรณ์ในเวอร์ชันที่เราตรวจสอบ +รายงานที่ลิงก์ไว้ใช้ติดตามการแก้ไขและวิธีแก้ปัญหาชั่วคราว + +| ไคลเอนต์ | สถานะและการติดตาม | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | ข้อมูลเซสชันส่งมาถึงใน model path บางรายการ แต่ขาดหายไปในรายการอื่น Go รู้จักส่วนหัวแบบ native ของ DeepSeek Harness งานที่เหลือคือการส่งส่วนหัวนี้ผ่าน adapter ทั้งหมด [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495) | +| **GitHub Copilot Chat** | มีการขอให้รองรับส่วนหัวเซสชันโดยอัตโนมัติใน [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) | +| **Kimi Code** | มีการขอให้รองรับส่วนหัวเซสชันโดยอัตโนมัติใน [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) มีการเสนอการแก้ไขใน [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327) ซึ่งยังไม่ได้ merge | ## Usage limits diff --git a/packages/web/src/content/docs/tr/go.mdx b/packages/web/src/content/docs/tr/go.mdx index 1b828eb12b85..0cd0cd0220f0 100644 --- a/packages/web/src/content/docs/tr/go.mdx +++ b/packages/web/src/content/docs/tr/go.mdx @@ -83,15 +83,41 @@ Test edip yenilerini ekledikçe model listesi değişebilir. ## Nerede kullanabilirim? -OpenCode Go, [OpenCode](https://opencode.ai) ve benzer türde istekler üreten diğer popüler kodlama aracılarıyla kullanılmak üzere tasarlanmıştır. +OpenCode Go, [OpenCode](https://opencode.ai) ve benzer türde istekler üreten diğer kodlama aracıları için tasarlanmıştır. +Trafik, diğer kullanıcıların deneyimini olumsuz etkileyen kötüye kullanımlara karşı izlenir. -Trafik, diğer kullanıcıların deneyimini olumsuz etkileyen kötüye kullanım amaçlı trafiğe karşı izlenir. +İstemciniz şunları yapmalıdır: -Hesabınızın işaretlenmemesi için kullandığınız aracın +1. Tipik kodlama aracısı trafiği göndermelidir. +2. Genel bir SDK veya HTTP kitaplığı adı yerine `my-coding-agent/1.0` gibi kendine ait bir user agent ile kendini tanıtmalıdır. +3. Yönlendirmeyi ve istem önbelleğe almayı optimize edebilmemiz için her konuşmada `x-opencode-session` içinde değişmeyen bir oturum kimliği göndermelidir. -1\. kötüye kullanım amaçlı trafik oluşturmadığından -2\. kendisini doğru şekilde tanıttığından (genel kapsamlı kullanıcı aracıları kullanmadığından) -3\. istem önbelleğe almayı optimize edebilmemiz için `x-opencode-session` başlığını içerdiğinden emin olun +### Doğrulanmış İstemciler + +OpenCode'un yanı sıra aşağıdaki istemcilerin OpenCode Go ile düzgün çalıştığı doğrulanmıştır. +Ancak gelecekte de çalışmaya devam edeceklerini garanti etmiyoruz. + +| İstemci | Oturum desteği | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) içeren derlemeler, ana ve yardımcı OpenCode isteklerinde başlığı gönderir. Düzeltme v0.21.0'dan sonra birleştirilmiştir; dolayısıyla v0.21.0 sürümü tek başına bu düzeltmeyi içermez. | +| **Claude Code** | Go, Claude Code'un yerel oturum başlığını tanır. Özel başlık ekleyen bir sarmalayıcı gerekmez. | +| **Codex** | Go, Codex'in yerel oturum başlığını tanır. Bazı sürümler ve proxy yapılandırmaları hâlâ bu başlığı göndermemektedir; istekleri iletirken oturum başlığını koruyun. | +| **ZCode** | Go, ZCode'un yerel oturum başlığını tanır. [`x-opencode-session` talebimiz](https://github.com/zai-org/feedback/issues/492) hâlâ açıktır ancak artık özellikle bu başlığın gönderilmesi gerekli değildir. | +| **Pi** | Güncel derlemeler OpenCode için oturum bilgilerini gönderir. Eski kurulumları güncelleyin. | +| **jcode** | [Oturum başlığı düzeltmesini](https://github.com/1jehuang/jcode/issues/1167) içeren **v0.81.6 veya sonraki bir sürüme** güncelleyin. | +| **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) içeren derlemeler OpenCode oturum başlıklarını geri getirir. Bu düzeltme CLI'ı kapsar, VS Code uzantısını kapsamaz. Bkz. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | + +### Sorunlu Olduğu Bilinen İstemciler + +Bu istemcilerin incelediğimiz sürümlerinde oturum desteği eksik veya tamamlanmamıştır. +Bağlantı verilen bildirimlerden düzeltmeleri ve geçici çözümleri takip edebilirsiniz. + +| İstemci | Durum ve takip | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **DeepSeek Harness** | Oturum bilgileri bazı model yollarında ulaşırken diğerlerinde eksiktir. Go, DeepSeek Harness'ın yerel başlığını tanır; yapılması gereken, bu başlığın tüm adaptörlerden gönderilmesidir. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Otomatik oturum başlığı desteği [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) içinde talep edilmiştir. | +| **Kimi Code** | Otomatik oturum başlığı desteği [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) içinde talep edilmiştir. | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) için [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327) içinde bir düzeltme önerilmiştir ancak henüz birleştirilmemiştir. | ## Kullanım limitleri diff --git a/packages/web/src/content/docs/zh-cn/go.mdx b/packages/web/src/content/docs/zh-cn/go.mdx index 58d11c9cc6ec..bbf58a721b5f 100644 --- a/packages/web/src/content/docs/zh-cn/go.mdx +++ b/packages/web/src/content/docs/zh-cn/go.mdx @@ -83,15 +83,40 @@ OpenCode Go 的工作方式与 OpenCode 中的其他提供商一样。 ## 可以在哪里使用? -OpenCode Go 适用于 [OpenCode](https://opencode.ai) 以及其他会产生类似请求的主流编程 Agent。 +OpenCode Go 适用于 [OpenCode](https://opencode.ai) 以及其他会产生类似请求的编程 Agent。 我们会监控流量,以识别影响其他用户体验的滥用行为。 -为避免你的账户被标记为异常,请确保你使用的工具: +你的客户端应当: -1\. 不产生滥用流量 -2\. 明确标识自身(不要使用过于笼统的 user agent 标识) -3\. 包含 `x-opencode-session` 请求头,以便我们优化提示词缓存 +1. 发送典型的编程 Agent 流量。 +2. 使用自身专属的 user agent 标识(例如 `my-coding-agent/1.0`),而不是通用的 SDK 或 HTTP 库名称。 +3. 为每段对话在 `x-opencode-session` 请求头中发送稳定的会话 ID,以便我们优化路由和提示词缓存。 + +### 已验证的客户端 + +除 OpenCode 外,以下客户端已通过验证,能够正常使用 OpenCode Go。但我们无法保证它们未来仍能正常使用。 + +| 客户端 | 会话支持 | +| --- | --- | +| **Hermes** | 包含 [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) 的构建版本会在主要和辅助 OpenCode 请求中发送该请求头。此修复在 v0.21.0 发布后才合并,因此 v0.21.0 本身并不包含该修复。 | +| **Claude Code** | Go 能识别其原生会话请求头,无需额外封装来添加自定义请求头。 | +| **Codex** | Go 能识别其原生会话请求头。某些版本和代理配置仍会遗漏该请求头;转发请求时请保留会话请求头。 | +| **ZCode** | Go 能识别其原生会话请求头。我们[请求支持 `x-opencode-session` 的 issue](https://github.com/zai-org/feedback/issues/492) 仍处于开放状态,但已不再需要发送这一特定请求头。 | +| **Pi** | 当前构建版本会为 OpenCode 发送会话信息。请更新旧版安装。 | +| **jcode** | 请更新至 **v0.81.6 或更高版本**,其中包含[会话请求头修复](https://github.com/1jehuang/jcode/issues/1167)。 | +| **Kilo Code CLI** | 包含 [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) 的构建版本恢复了 OpenCode 会话请求头。此修复仅适用于 CLI,不适用于 VS Code 扩展。参见 [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)。 | + +### 已知存在问题的客户端 + +在我们调查的版本中,以下客户端缺少会话支持,或支持不完整。相关报告链接可用于跟踪修复进展和临时解决方案。 + +| 客户端 | 状态与跟踪 | +| --- | --- | +| **DeepSeek Harness** | 某些模型调用路径会传递会话信息,但其他路径中缺失。我们能识别其原生请求头;剩余工作是在所有适配器中发送该请求头。参见[讨论 #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | +| **GitHub Copilot Chat** | [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) 已提出自动发送会话请求头的支持请求。 | +| **Kimi Code** | [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) 已提出自动发送会话请求头的支持请求。 | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) 已有拟议修复 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327),但尚未合并。 | ## 使用限制 diff --git a/packages/web/src/content/docs/zh-tw/go.mdx b/packages/web/src/content/docs/zh-tw/go.mdx index e9f10688f6f5..4cd2b8a9fd0b 100644 --- a/packages/web/src/content/docs/zh-tw/go.mdx +++ b/packages/web/src/content/docs/zh-tw/go.mdx @@ -83,15 +83,40 @@ OpenCode Go 的運作方式與 OpenCode 中的任何其他供應商相同。 ## 可以在哪裡使用? -OpenCode Go 適用於 [OpenCode](https://opencode.ai) 以及其他會產生類似請求的主流程式設計 Agent。 +OpenCode Go 適用於 [OpenCode](https://opencode.ai) 以及其他會產生類似請求的程式設計 Agent。 我們會監控流量,以識別影響其他使用者體驗的濫用行為。 -為避免您的帳戶被標記為異常,請確保您使用的工具: +您的用戶端應: -1\. 不產生濫用流量 -2\. 明確標識自身(不要使用過於籠統的 user agent 識別資訊) -3\. 包含 `x-opencode-session` 請求標頭,以便我們最佳化提示詞快取 +1. 傳送典型的程式設計 Agent 流量。 +2. 使用自身專屬的 user agent 識別資訊(例如 `my-coding-agent/1.0`),而非通用的 SDK 或 HTTP 函式庫名稱。 +3. 為每段對話在 `x-opencode-session` 請求標頭中傳送穩定的工作階段 ID,以便我們最佳化路由和提示詞快取。 + +### 已驗證的用戶端 + +除了 OpenCode,以下用戶端已通過驗證,可正常使用 OpenCode Go。但我們無法保證它們未來仍能正常使用。 + +| 用戶端 | 工作階段支援 | +| --- | --- | +| **Hermes** | 包含 [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) 的建置版本會在主要和輔助 OpenCode 請求中傳送該標頭。此修正是在 v0.21.0 發布後才合併,因此 v0.21.0 本身並未包含此修正。 | +| **Claude Code** | Go 可辨識其原生工作階段標頭,無須額外封裝來新增自訂標頭。 | +| **Codex** | Go 可辨識其原生工作階段標頭。部分版本和代理伺服器設定仍會遺漏該標頭;轉送請求時請保留工作階段標頭。 | +| **ZCode** | Go 可辨識其原生工作階段標頭。我們[請求支援 `x-opencode-session` 的 issue](https://github.com/zai-org/feedback/issues/492) 仍未關閉,但已不再需要傳送這個特定標頭。 | +| **Pi** | 目前的建置版本會為 OpenCode 傳送工作階段資訊。請更新舊版安裝。 | +| **jcode** | 請更新至 **v0.81.6 或更新版本**,其中包含[工作階段標頭修正](https://github.com/1jehuang/jcode/issues/1167)。 | +| **Kilo Code CLI** | 包含 [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) 的建置版本恢復了 OpenCode 工作階段標頭。此修正僅適用於 CLI,不適用於 VS Code 擴充套件。請參閱 [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)。 | + +### 已知有問題的用戶端 + +在我們調查的版本中,以下用戶端缺少工作階段支援,或支援不完整。相關回報連結可用來追蹤修正進度與暫時解決方式。 + +| 用戶端 | 狀態與追蹤 | +| --- | --- | +| **DeepSeek Harness** | 部分模型呼叫路徑會傳遞工作階段資訊,但其他路徑中缺少這些資訊。我們可辨識其原生標頭;剩餘工作是在所有配接器中傳送該標頭。請參閱[討論 #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | +| **GitHub Copilot Chat** | [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) 已提出自動傳送工作階段標頭的支援請求。 | +| **Kimi Code** | [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) 已提出自動傳送工作階段標頭的支援請求。 | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) 已有修正提案 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327),但尚未合併。 | ## 使用限制 From d6855b6b47a8433462ac6aeeba882ccf734cb7f1 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Tue, 8 Sep 2026 06:51:49 +0000 Subject: [PATCH 19/94] chore: generate --- packages/web/src/content/docs/ar/go.mdx | 30 +++++++++++----------- packages/web/src/content/docs/bs/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/da/go.mdx | 24 ++++++++--------- packages/web/src/content/docs/de/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/es/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/fr/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/it/go.mdx | 26 +++++++++---------- packages/web/src/content/docs/ja/go.mdx | 26 +++++++++---------- packages/web/src/content/docs/ko/go.mdx | 24 ++++++++--------- packages/web/src/content/docs/nb/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/pl/go.mdx | 20 +++++++-------- packages/web/src/content/docs/pt-br/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/ru/go.mdx | 26 +++++++++---------- packages/web/src/content/docs/th/go.mdx | 30 +++++++++++----------- packages/web/src/content/docs/tr/go.mdx | 24 ++++++++--------- packages/web/src/content/docs/zh-cn/go.mdx | 28 ++++++++++---------- packages/web/src/content/docs/zh-tw/go.mdx | 28 ++++++++++---------- 17 files changed, 227 insertions(+), 227 deletions(-) diff --git a/packages/web/src/content/docs/ar/go.mdx b/packages/web/src/content/docs/ar/go.mdx index 7539981d899c..a1551aa21e4d 100644 --- a/packages/web/src/content/docs/ar/go.mdx +++ b/packages/web/src/content/docs/ar/go.mdx @@ -100,27 +100,27 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر بالإضافة إلى OpenCode، تم التحقق من أن العملاء التاليين يعملون بصورة صحيحة مع OpenCode Go، مع أننا لا نضمن استمرارهم في العمل مستقبلًا. -| العميل | دعم الجلسات | -| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **Hermes** | ترسل البُنى التي تتضمن [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) الترويسة في طلبات OpenCode الرئيسية والمساعدة. دُمج الإصلاح بعد v0.21.0؛ ولا يتضمن ذلك الإصدار وحده الإصلاح. | -| **Claude Code** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. ولا حاجة إلى غلاف لإضافة ترويسة مخصصة. | -| **Codex** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. لا تزال بعض الإصدارات وإعدادات الوكيل تحذفها؛ لذا حافظ على ترويسة الجلسة عند إعادة توجيه الطلبات. | -| **ZCode** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. لا يزال [طلبنا لإضافة `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) مفتوحًا، لكن إرسال هذه الترويسة بعينها لم يعد ضروريًا. | -| **Pi** | ترسل الإصدارات الحالية معلومات الجلسة إلى OpenCode. حدّث عمليات التثبيت الأقدم. | -| **jcode** | حدّث إلى **v0.81.6 أو إصدار أحدث**، إذ يتضمن [إصلاح ترويسة الجلسة](https://github.com/1jehuang/jcode/issues/1167). | -| **Kilo Code CLI** | تعيد الإصدارات التي تتضمن [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) ترويسات جلسات OpenCode. يشمل هذا الإصلاح CLI، وليس إضافة VS Code. راجع [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | +| العميل | دعم الجلسات | +| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | ترسل البُنى التي تتضمن [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) الترويسة في طلبات OpenCode الرئيسية والمساعدة. دُمج الإصلاح بعد v0.21.0؛ ولا يتضمن ذلك الإصدار وحده الإصلاح. | +| **Claude Code** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. ولا حاجة إلى غلاف لإضافة ترويسة مخصصة. | +| **Codex** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. لا تزال بعض الإصدارات وإعدادات الوكيل تحذفها؛ لذا حافظ على ترويسة الجلسة عند إعادة توجيه الطلبات. | +| **ZCode** | يتعرف Go على ترويسة الجلسة الأصلية الخاصة به. لا يزال [طلبنا لإضافة `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) مفتوحًا، لكن إرسال هذه الترويسة بعينها لم يعد ضروريًا. | +| **Pi** | ترسل الإصدارات الحالية معلومات الجلسة إلى OpenCode. حدّث عمليات التثبيت الأقدم. | +| **jcode** | حدّث إلى **v0.81.6 أو إصدار أحدث**، إذ يتضمن [إصلاح ترويسة الجلسة](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | تعيد الإصدارات التي تتضمن [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) ترويسات جلسات OpenCode. يشمل هذا الإصلاح CLI، وليس إضافة VS Code. راجع [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### العملاء المعروف وجود مشكلات لديهم دعم الجلسات مفقود أو غير مكتمل في إصدارات هؤلاء العملاء التي تحققنا منها. وتتابع البلاغات المرتبطة الإصلاحات والحلول البديلة. -| العميل | الحالة والمتابعة | -| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **DeepSeek Harness** | تصل معلومات الجلسة عبر بعض مسارات النماذج، لكنها تكون مفقودة عبر مسارات أخرى. نتعرف على ترويسة الجلسة الأصلية الخاصة به؛ والعمل المتبقي هو إرسالها عبر جميع المحولات. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | طُلب دعم ترويسة الجلسة تلقائيًا في [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | طُلب دعم ترويسة الجلسة تلقائيًا في [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | يتضمن [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) إصلاحًا مقترحًا في [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)، ولم يُدمج بعد. | +| العميل | الحالة والمتابعة | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | تصل معلومات الجلسة عبر بعض مسارات النماذج، لكنها تكون مفقودة عبر مسارات أخرى. نتعرف على ترويسة الجلسة الأصلية الخاصة به؛ والعمل المتبقي هو إرسالها عبر جميع المحولات. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | طُلب دعم ترويسة الجلسة تلقائيًا في [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | طُلب دعم ترويسة الجلسة تلقائيًا في [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | يتضمن [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) إصلاحًا مقترحًا في [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)، ولم يُدمج بعد. | ## حدود الاستخدام diff --git a/packages/web/src/content/docs/bs/go.mdx b/packages/web/src/content/docs/bs/go.mdx index c379aa291b21..e81627d99470 100644 --- a/packages/web/src/content/docs/bs/go.mdx +++ b/packages/web/src/content/docs/bs/go.mdx @@ -110,14 +110,14 @@ Vaš klijent treba: Pored OpenCode-a, potvrđeno je da sljedeći klijenti ispravno rade s OpenCode Go. Ipak, ne garantiramo da će nastaviti raditi i u budućnosti. -| Klijent | Podrška za sesije | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Buildovi koji sadrže [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) šalju zaglavlje u glavnim i pomoćnim OpenCode zahtjevima. Ispravka je spojena nakon verzije v0.21.0; samo to izdanje je ne sadrži. | -| **Claude Code** | Go prepoznaje njegovo izvorno zaglavlje sesije. Wrapper za prilagođeno zaglavlje nije potreban. | -| **Codex** | Go prepoznaje njegovo izvorno zaglavlje sesije. Neke verzije i proxy konfiguracije ga i dalje izostavljaju; sačuvajte zaglavlje sesije pri prosljeđivanju zahtjeva. | -| **ZCode** | Go prepoznaje njegovo izvorno zaglavlje sesije. Naš [zahtjev za `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) i dalje je otvoren, ali slanje tog konkretnog zaglavlja više nije potrebno. | -| **Pi** | Trenutni buildovi šalju informacije o sesiji za OpenCode. Ažurirajte starije instalacije. | -| **jcode** | Ažurirajte na **v0.81.6 ili noviju**, koja uključuje [ispravku zaglavlja sesije](https://github.com/1jehuang/jcode/issues/1167). | +| Klijent | Podrška za sesije | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Buildovi koji sadrže [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) šalju zaglavlje u glavnim i pomoćnim OpenCode zahtjevima. Ispravka je spojena nakon verzije v0.21.0; samo to izdanje je ne sadrži. | +| **Claude Code** | Go prepoznaje njegovo izvorno zaglavlje sesije. Wrapper za prilagođeno zaglavlje nije potreban. | +| **Codex** | Go prepoznaje njegovo izvorno zaglavlje sesije. Neke verzije i proxy konfiguracije ga i dalje izostavljaju; sačuvajte zaglavlje sesije pri prosljeđivanju zahtjeva. | +| **ZCode** | Go prepoznaje njegovo izvorno zaglavlje sesije. Naš [zahtjev za `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) i dalje je otvoren, ali slanje tog konkretnog zaglavlja više nije potrebno. | +| **Pi** | Trenutni buildovi šalju informacije o sesiji za OpenCode. Ažurirajte starije instalacije. | +| **jcode** | Ažurirajte na **v0.81.6 ili noviju**, koja uključuje [ispravku zaglavlja sesije](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | Buildovi koji sadrže [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) vraćaju OpenCode zaglavlja sesije. Ova ispravka obuhvata CLI, ali ne i VS Code ekstenziju. Pogledajte [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Poznati problematični klijenti @@ -125,12 +125,12 @@ s OpenCode Go. Ipak, ne garantiramo da će nastaviti raditi i u budućnosti. Ovim klijentima nedostaje podrška za sesije ili je ona nepotpuna u verzijama koje smo istražili. Povezani izvještaji prate ispravke i zaobilazna rješenja. -| Klijent | Status i praćenje | -| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **DeepSeek Harness** | Informacije o sesiji stižu za neke putanje modela, ali nedostaju za druge. Prepoznajemo njegovo izvorno zaglavlje; preostaje da se ono šalje kroz sve adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Automatska podrška za zaglavlje sesije zatražena je u [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Automatska podrška za zaglavlje sesije zatražena je u [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) ima predloženu ispravku u [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), koji još nije spojen. | +| Klijent | Status i praćenje | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | Informacije o sesiji stižu za neke putanje modela, ali nedostaju za druge. Prepoznajemo njegovo izvorno zaglavlje; preostaje da se ono šalje kroz sve adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | Automatska podrška za zaglavlje sesije zatražena je u [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatska podrška za zaglavlje sesije zatražena je u [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) ima predloženu ispravku u [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), koji još nije spojen. | ## Ograničenja upotrebe diff --git a/packages/web/src/content/docs/da/go.mdx b/packages/web/src/content/docs/da/go.mdx index 0208563cb649..bfe8da867e95 100644 --- a/packages/web/src/content/docs/da/go.mdx +++ b/packages/web/src/content/docs/da/go.mdx @@ -111,13 +111,13 @@ Ud over OpenCode er følgende klienter blevet valideret til at fungere korrekt med OpenCode Go. Vi garanterer dog ikke, at de fortsat vil fungere fremover. | Klient | Sessionsunderstøttelse | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Builds, der indeholder [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), sender headeren i primære og sekundære OpenCode-anmodninger. Rettelsen blev merged efter v0.21.0; den version indeholder den ikke i sig selv. | -| **Claude Code** | Go genkender dens indbyggede sessionsheader. En wrapper til en brugerdefineret header er ikke nødvendig. | -| **Codex** | Go genkender dens indbyggede sessionsheader. Nogle versioner og proxyopsætninger udelader den stadig; bevar sessionsheaderen, når anmodninger videresendes. | -| **ZCode** | Go genkender dens indbyggede sessionsheader. Vores [anmodning om `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) er stadig åben, men det er ikke længere nødvendigt at sende netop denne header. | -| **Pi** | Aktuelle builds sender sessionsoplysninger til OpenCode. Opdater ældre installationer. | -| **jcode** | Opdater til **v0.81.6 eller nyere**, som indeholder [rettelsen til sessionsheaderen](https://github.com/1jehuang/jcode/issues/1167). | +| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Builds, der indeholder [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), sender headeren i primære og sekundære OpenCode-anmodninger. Rettelsen blev merged efter v0.21.0; den version indeholder den ikke i sig selv. | +| **Claude Code** | Go genkender dens indbyggede sessionsheader. En wrapper til en brugerdefineret header er ikke nødvendig. | +| **Codex** | Go genkender dens indbyggede sessionsheader. Nogle versioner og proxyopsætninger udelader den stadig; bevar sessionsheaderen, når anmodninger videresendes. | +| **ZCode** | Go genkender dens indbyggede sessionsheader. Vores [anmodning om `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) er stadig åben, men det er ikke længere nødvendigt at sende netop denne header. | +| **Pi** | Aktuelle builds sender sessionsoplysninger til OpenCode. Opdater ældre installationer. | +| **jcode** | Opdater til **v0.81.6 eller nyere**, som indeholder [rettelsen til sessionsheaderen](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | Builds, der indeholder [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), gendanner OpenCode-sessionsheadere. Denne rettelse dækker CLI'en, men ikke VS Code-udvidelsen. Se [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Kendte problematiske klienter @@ -125,12 +125,12 @@ med OpenCode Go. Vi garanterer dog ikke, at de fortsat vil fungere fremover. Disse klienter mangler sessionsunderstøttelse eller har ufuldstændig understøttelse i de versioner, vi undersøgte. De linkede rapporter følger rettelser og løsninger. -| Klient | Status og opfølgning | -| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Klient | Status og opfølgning | +| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | Sessionsoplysninger modtages på nogle modelstier, men mangler på andre. Vi genkender dens indbyggede header; det resterende arbejde er at sende den gennem alle adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Automatisk understøttelse af sessionsheaderen er efterspurgt i [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Automatisk understøttelse af sessionsheaderen er efterspurgt i [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) har en foreslået rettelse i [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), som endnu ikke er merged. | +| **GitHub Copilot Chat** | Automatisk understøttelse af sessionsheaderen er efterspurgt i [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatisk understøttelse af sessionsheaderen er efterspurgt i [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) har en foreslået rettelse i [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), som endnu ikke er merged. | ## Forbrugsgrænser diff --git a/packages/web/src/content/docs/de/go.mdx b/packages/web/src/content/docs/de/go.mdx index 624bf78338b7..dd37155b818d 100644 --- a/packages/web/src/content/docs/de/go.mdx +++ b/packages/web/src/content/docs/de/go.mdx @@ -102,27 +102,27 @@ Dein Client sollte: Neben OpenCode wurden die folgenden Clients für die ordnungsgemäße Verwendung mit OpenCode Go validiert. Wir garantieren jedoch nicht, dass sie auch in Zukunft funktionieren werden. -| Client | Sitzungsunterstützung | -| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Builds mit [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) senden den Header bei Haupt- und zusätzlichen OpenCode-Anfragen. Der Fix wurde nach v0.21.0 gemergt; diese Version allein enthält ihn nicht. | -| **Claude Code** | Go erkennt seinen nativen Sitzungs-Header. Es ist kein Wrapper für benutzerdefinierte Header erforderlich. | -| **Codex** | Go erkennt seinen nativen Sitzungs-Header. Einige Versionen und Proxy-Konfigurationen lassen ihn weiterhin weg; stelle sicher, dass der Sitzungs-Header beim Weiterleiten von Anfragen erhalten bleibt. | -| **ZCode** | Go erkennt seinen nativen Sitzungs-Header. Unsere [Anfrage für `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) ist weiterhin offen, aber es ist nicht mehr erforderlich, genau diesen Header zu senden. | -| **Pi** | Aktuelle Builds senden Sitzungsinformationen für OpenCode. Aktualisiere ältere Installationen. | -| **jcode** | Aktualisiere auf **v0.81.6 oder neuer**. Diese Version enthält den [Fix für den Sitzungs-Header](https://github.com/1jehuang/jcode/issues/1167). | -| **Kilo Code CLI** | Builds mit [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) stellen OpenCode-Sitzungs-Header wieder her. Dieser Fix gilt für die CLI, nicht für die VS-Code-Erweiterung. Siehe [Issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | +| Client | Sitzungsunterstützung | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Builds mit [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) senden den Header bei Haupt- und zusätzlichen OpenCode-Anfragen. Der Fix wurde nach v0.21.0 gemergt; diese Version allein enthält ihn nicht. | +| **Claude Code** | Go erkennt seinen nativen Sitzungs-Header. Es ist kein Wrapper für benutzerdefinierte Header erforderlich. | +| **Codex** | Go erkennt seinen nativen Sitzungs-Header. Einige Versionen und Proxy-Konfigurationen lassen ihn weiterhin weg; stelle sicher, dass der Sitzungs-Header beim Weiterleiten von Anfragen erhalten bleibt. | +| **ZCode** | Go erkennt seinen nativen Sitzungs-Header. Unsere [Anfrage für `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) ist weiterhin offen, aber es ist nicht mehr erforderlich, genau diesen Header zu senden. | +| **Pi** | Aktuelle Builds senden Sitzungsinformationen für OpenCode. Aktualisiere ältere Installationen. | +| **jcode** | Aktualisiere auf **v0.81.6 oder neuer**. Diese Version enthält den [Fix für den Sitzungs-Header](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Builds mit [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) stellen OpenCode-Sitzungs-Header wieder her. Dieser Fix gilt für die CLI, nicht für die VS-Code-Erweiterung. Siehe [Issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Bekannte problematische Clients Bei diesen Clients fehlt in den von uns untersuchten Versionen die Sitzungsunterstützung oder sie ist unvollständig. Die verlinkten Berichte dokumentieren Fixes und Problemumgehungen. -| Client | Status und Nachverfolgung | -| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Client | Status und Nachverfolgung | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | Sitzungsinformationen werden bei einigen Modellpfaden übermittelt, fehlen aber bei anderen. Wir erkennen seinen nativen Header; dieser muss noch von allen Adaptern gesendet werden. [Diskussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Automatische Unterstützung für Sitzungs-Header wurde in [VS Code Issue #334186](https://github.com/microsoft/vscode/issues/334186) angefragt. | -| **Kimi Code** | Automatische Unterstützung für Sitzungs-Header wurde in [Issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) angefragt. | -| **MiMo Code** | Für [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) gibt es einen vorgeschlagenen Fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), der noch nicht gemergt wurde. | +| **GitHub Copilot Chat** | Automatische Unterstützung für Sitzungs-Header wurde in [VS Code Issue #334186](https://github.com/microsoft/vscode/issues/334186) angefragt. | +| **Kimi Code** | Automatische Unterstützung für Sitzungs-Header wurde in [Issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) angefragt. | +| **MiMo Code** | Für [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) gibt es einen vorgeschlagenen Fix in [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), der noch nicht gemergt wurde. | ## Nutzungslimits diff --git a/packages/web/src/content/docs/es/go.mdx b/packages/web/src/content/docs/es/go.mdx index 3ec6cab9cc68..de8405114971 100644 --- a/packages/web/src/content/docs/es/go.mdx +++ b/packages/web/src/content/docs/es/go.mdx @@ -110,14 +110,14 @@ Tu cliente debe: Además de OpenCode, se ha validado que los siguientes clientes funcionan correctamente con OpenCode Go. Sin embargo, no garantizamos que sigan funcionando en el futuro. -| Cliente | Compatibilidad con sesiones | -| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Las compilaciones que incluyen el [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) envían el encabezado en las peticiones principales y auxiliares de OpenCode. La corrección se fusionó después de v0.21.0; esa versión por sí sola no la incluye. | -| **Claude Code** | Go reconoce su encabezado de sesión nativo. No se necesita ningún wrapper para encabezados personalizados. | -| **Codex** | Go reconoce su encabezado de sesión nativo. Algunas versiones y configuraciones de proxy aún lo omiten; conserva el encabezado de sesión al reenviar peticiones. | -| **ZCode** | Go reconoce su encabezado de sesión nativo. Nuestra [solicitud de `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) sigue abierta, pero ya no es necesario enviar ese encabezado específico. | -| **Pi** | Las compilaciones actuales envían información de sesión para OpenCode. Actualiza las instalaciones antiguas. | -| **jcode** | Actualiza a la versión **v0.81.6 o posterior**, que incluye la [corrección del encabezado de sesión](https://github.com/1jehuang/jcode/issues/1167). | +| Cliente | Compatibilidad con sesiones | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Las compilaciones que incluyen el [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) envían el encabezado en las peticiones principales y auxiliares de OpenCode. La corrección se fusionó después de v0.21.0; esa versión por sí sola no la incluye. | +| **Claude Code** | Go reconoce su encabezado de sesión nativo. No se necesita ningún wrapper para encabezados personalizados. | +| **Codex** | Go reconoce su encabezado de sesión nativo. Algunas versiones y configuraciones de proxy aún lo omiten; conserva el encabezado de sesión al reenviar peticiones. | +| **ZCode** | Go reconoce su encabezado de sesión nativo. Nuestra [solicitud de `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) sigue abierta, pero ya no es necesario enviar ese encabezado específico. | +| **Pi** | Las compilaciones actuales envían información de sesión para OpenCode. Actualiza las instalaciones antiguas. | +| **jcode** | Actualiza a la versión **v0.81.6 o posterior**, que incluye la [corrección del encabezado de sesión](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | Las compilaciones que incluyen el [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restauran los encabezados de sesión de OpenCode. Esta corrección cubre la CLI, no la extensión de VS Code. Consulta el [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Clientes con problemas conocidos @@ -125,12 +125,12 @@ con OpenCode Go. Sin embargo, no garantizamos que sigan funcionando en el futuro Estos clientes tienen una compatibilidad con sesiones ausente o incompleta en las versiones que investigamos. Los informes enlazados permiten seguir las correcciones y las soluciones alternativas. -| Cliente | Estado y seguimiento | -| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **DeepSeek Harness** | La información de sesión llega por algunas rutas de modelos, pero falta en otras. Reconocemos su encabezado nativo; aún es necesario enviarlo a través de todos los adaptadores. [Discusión #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | La compatibilidad automática con el encabezado de sesión se solicitó en el [issue #334186 de VS Code](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | La compatibilidad automática con el encabezado de sesión se solicitó en el [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | El [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) tiene una corrección propuesta en el [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), que aún no se ha fusionado. | +| Cliente | Estado y seguimiento | +| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | La información de sesión llega por algunas rutas de modelos, pero falta en otras. Reconocemos su encabezado nativo; aún es necesario enviarlo a través de todos los adaptadores. [Discusión #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | La compatibilidad automática con el encabezado de sesión se solicitó en el [issue #334186 de VS Code](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | La compatibilidad automática con el encabezado de sesión se solicitó en el [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | El [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) tiene una corrección propuesta en el [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), que aún no se ha fusionado. | ## Límites de uso diff --git a/packages/web/src/content/docs/fr/go.mdx b/packages/web/src/content/docs/fr/go.mdx index 84390f198a70..97f3ecd00518 100644 --- a/packages/web/src/content/docs/fr/go.mdx +++ b/packages/web/src/content/docs/fr/go.mdx @@ -100,27 +100,27 @@ Votre client doit : Outre OpenCode, le bon fonctionnement des clients suivants avec OpenCode Go a été validé. Nous ne garantissons toutefois pas qu'ils continueront à fonctionner à l'avenir. -| Client | Prise en charge des sessions | -| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Les builds contenant la [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) envoient l'en-tête sur les requêtes OpenCode principales et auxiliaires. Le correctif a été fusionné après la v0.21.0 ; cette version seule ne l'inclut pas. | -| **Claude Code** | Go reconnaît son en-tête de session natif. Aucun wrapper d'en-tête personnalisé n'est nécessaire. | -| **Codex** | Go reconnaît son en-tête de session natif. Certaines versions et configurations de proxy l'omettent encore ; conservez l'en-tête de session lors du transfert des requêtes. | -| **ZCode** | Go reconnaît son en-tête de session natif. Notre [demande concernant `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) reste ouverte, mais il n'est plus nécessaire d'envoyer spécifiquement cet en-tête. | -| **Pi** | Les builds actuels envoient les informations de session pour OpenCode. Mettez à jour les installations plus anciennes. | -| **jcode** | Passez à la version **v0.81.6 ou ultérieure**, qui inclut le [correctif de l'en-tête de session](https://github.com/1jehuang/jcode/issues/1167). | -| **Kilo Code CLI** | Les builds contenant la [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) rétablissent les en-têtes de session OpenCode. Ce correctif concerne la CLI, pas l'extension VS Code. Consultez l'[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | +| Client | Prise en charge des sessions | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Les builds contenant la [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) envoient l'en-tête sur les requêtes OpenCode principales et auxiliaires. Le correctif a été fusionné après la v0.21.0 ; cette version seule ne l'inclut pas. | +| **Claude Code** | Go reconnaît son en-tête de session natif. Aucun wrapper d'en-tête personnalisé n'est nécessaire. | +| **Codex** | Go reconnaît son en-tête de session natif. Certaines versions et configurations de proxy l'omettent encore ; conservez l'en-tête de session lors du transfert des requêtes. | +| **ZCode** | Go reconnaît son en-tête de session natif. Notre [demande concernant `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) reste ouverte, mais il n'est plus nécessaire d'envoyer spécifiquement cet en-tête. | +| **Pi** | Les builds actuels envoient les informations de session pour OpenCode. Mettez à jour les installations plus anciennes. | +| **jcode** | Passez à la version **v0.81.6 ou ultérieure**, qui inclut le [correctif de l'en-tête de session](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Les builds contenant la [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) rétablissent les en-têtes de session OpenCode. Ce correctif concerne la CLI, pas l'extension VS Code. Consultez l'[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Clients connus pour poser problème Dans les versions que nous avons examinées, ces clients ne prennent pas en charge les sessions ou ne les prennent en charge que partiellement. Les rapports associés permettent de suivre les correctifs et les solutions de contournement. -| Client | État et suivi | -| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Client | État et suivi | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | Les informations de session sont présentes pour certains chemins de modèles, mais absentes pour d'autres. Nous reconnaissons son en-tête natif ; il reste à l'envoyer depuis tous les adaptateurs. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | La prise en charge automatique de l'en-tête de session fait l'objet de l'[issue VS Code #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | La prise en charge automatique de l'en-tête de session fait l'objet de l'[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | L'[issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) dispose d'un correctif proposé dans la [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), qui n'a pas encore été fusionnée. | +| **GitHub Copilot Chat** | La prise en charge automatique de l'en-tête de session fait l'objet de l'[issue VS Code #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | La prise en charge automatique de l'en-tête de session fait l'objet de l'[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | L'[issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) dispose d'un correctif proposé dans la [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), qui n'a pas encore été fusionnée. | ## Limites d'utilisation diff --git a/packages/web/src/content/docs/it/go.mdx b/packages/web/src/content/docs/it/go.mdx index eddc58f34837..88491dc1b06f 100644 --- a/packages/web/src/content/docs/it/go.mdx +++ b/packages/web/src/content/docs/it/go.mdx @@ -108,14 +108,14 @@ Il tuo client deve: Oltre a OpenCode, è stato verificato che i seguenti client funzionino correttamente con OpenCode Go. Tuttavia, non garantiamo che continueranno a funzionare in futuro. -| Client | Supporto delle sessioni | -| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Le build contenenti la [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) inviano l'header nelle richieste OpenCode principali e ausiliarie. La correzione è stata unita dopo la v0.21.0; quella versione da sola non la include. | -| **Claude Code** | Go riconosce il suo header di sessione nativo. Non è necessario alcun wrapper per header personalizzati. | -| **Codex** | Go riconosce il suo header di sessione nativo. Alcune versioni e configurazioni proxy continuano a ometterlo; mantieni l'header di sessione quando inoltri le richieste. | -| **ZCode** | Go riconosce il suo header di sessione nativo. La nostra [richiesta per `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) è ancora aperta, ma non è più necessario inviare proprio quell'header. | -| **Pi** | Le build attuali inviano le informazioni di sessione per OpenCode. Aggiorna le installazioni meno recenti. | -| **jcode** | Aggiorna alla versione **v0.81.6 o successiva**, che include la [correzione dell'header di sessione](https://github.com/1jehuang/jcode/issues/1167). | +| Client | Supporto delle sessioni | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Le build contenenti la [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) inviano l'header nelle richieste OpenCode principali e ausiliarie. La correzione è stata unita dopo la v0.21.0; quella versione da sola non la include. | +| **Claude Code** | Go riconosce il suo header di sessione nativo. Non è necessario alcun wrapper per header personalizzati. | +| **Codex** | Go riconosce il suo header di sessione nativo. Alcune versioni e configurazioni proxy continuano a ometterlo; mantieni l'header di sessione quando inoltri le richieste. | +| **ZCode** | Go riconosce il suo header di sessione nativo. La nostra [richiesta per `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) è ancora aperta, ma non è più necessario inviare proprio quell'header. | +| **Pi** | Le build attuali inviano le informazioni di sessione per OpenCode. Aggiorna le installazioni meno recenti. | +| **jcode** | Aggiorna alla versione **v0.81.6 o successiva**, che include la [correzione dell'header di sessione](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | Le build contenenti la [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) ripristinano gli header di sessione OpenCode. Questa correzione riguarda la CLI, non l'estensione VS Code. Consulta l'[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Client con problemi noti @@ -123,12 +123,12 @@ con OpenCode Go. Tuttavia, non garantiamo che continueranno a funzionare in futu Nelle versioni che abbiamo esaminato, questi client non supportano le sessioni o le supportano solo parzialmente. Le segnalazioni collegate consentono di seguire le correzioni e le soluzioni alternative. -| Client | Stato e segnalazioni | -| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Client | Stato e segnalazioni | +| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | **DeepSeek Harness** | Le informazioni di sessione arrivano tramite alcuni percorsi dei modelli, ma mancano in altri. Riconosciamo il suo header nativo; resta da inviarlo attraverso tutti gli adapter. [Discussione #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Il supporto automatico dell'header di sessione è stato richiesto nell'[issue #334186 di VS Code](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Il supporto automatico dell'header di sessione è stato richiesto nell'[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | L'[issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) ha una correzione proposta nella [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), che non è stata ancora unita. | +| **GitHub Copilot Chat** | Il supporto automatico dell'header di sessione è stato richiesto nell'[issue #334186 di VS Code](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Il supporto automatico dell'header di sessione è stato richiesto nell'[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | L'[issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) ha una correzione proposta nella [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), che non è stata ancora unita. | ## Limiti di utilizzo diff --git a/packages/web/src/content/docs/ja/go.mdx b/packages/web/src/content/docs/ja/go.mdx index d0f2207273ff..edaaf32d413a 100644 --- a/packages/web/src/content/docs/ja/go.mdx +++ b/packages/web/src/content/docs/ja/go.mdx @@ -97,14 +97,14 @@ OpenCode Goは、[OpenCode](https://opencode.ai)および同様の種類のリ OpenCodeに加えて、以下のクライアントがOpenCode Goで正常に動作することを確認しています。 ただし、今後も動作し続けることを保証するものではありません。 -| クライアント | セッション対応 | -| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864)を含むビルドでは、OpenCodeのメインリクエストと補助リクエストの両方でヘッダーが送信されます。この修正はv0.21.0より後にマージされたため、v0.21.0自体には含まれていません。 | -| **Claude Code** | GoはClaude Code固有のセッションヘッダーを認識します。カスタムヘッダーを追加するラッパーは不要です。 | -| **Codex** | GoはCodex固有のセッションヘッダーを認識します。一部のバージョンやプロキシ設定では引き続きヘッダーが省略されるため、リクエストを転送するときはセッションヘッダーを保持してください。 | -| **ZCode** | GoはZCode固有のセッションヘッダーを認識します。[`x-opencode-session`の追加リクエスト](https://github.com/zai-org/feedback/issues/492)は未解決ですが、この特定のヘッダーを送信する必要はなくなりました。 | -| **Pi** | 現在のビルドはOpenCodeにセッション情報を送信します。古いインストールは更新してください。 | -| **jcode** | [セッションヘッダーの修正](https://github.com/1jehuang/jcode/issues/1167)を含む**v0.81.6以降**に更新してください。 | +| クライアント | セッション対応 | +| ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864)を含むビルドでは、OpenCodeのメインリクエストと補助リクエストの両方でヘッダーが送信されます。この修正はv0.21.0より後にマージされたため、v0.21.0自体には含まれていません。 | +| **Claude Code** | GoはClaude Code固有のセッションヘッダーを認識します。カスタムヘッダーを追加するラッパーは不要です。 | +| **Codex** | GoはCodex固有のセッションヘッダーを認識します。一部のバージョンやプロキシ設定では引き続きヘッダーが省略されるため、リクエストを転送するときはセッションヘッダーを保持してください。 | +| **ZCode** | GoはZCode固有のセッションヘッダーを認識します。[`x-opencode-session`の追加リクエスト](https://github.com/zai-org/feedback/issues/492)は未解決ですが、この特定のヘッダーを送信する必要はなくなりました。 | +| **Pi** | 現在のビルドはOpenCodeにセッション情報を送信します。古いインストールは更新してください。 | +| **jcode** | [セッションヘッダーの修正](https://github.com/1jehuang/jcode/issues/1167)を含む**v0.81.6以降**に更新してください。 | | **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752)を含むビルドでは、OpenCodeのセッションヘッダーが再び送信されます。この修正の対象はCLIであり、VS Code拡張機能ではありません。[issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)を参照してください。 | ### 既知の問題があるクライアント @@ -112,12 +112,12 @@ OpenCodeに加えて、以下のクライアントがOpenCode Goで正常に動 調査したバージョンでは、以下のクライアントのセッション対応が欠けているか不完全です。 リンク先の報告で修正や回避策を追跡しています。 -| クライアント | 状況と追跡 | -| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| クライアント | 状況と追跡 | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | 一部のモデルパスではセッション情報が届きますが、他のパスでは欠落します。GoはDeepSeek Harness固有のヘッダーを認識します。残る対応は、すべてのアダプターからそのヘッダーを送信することです。[Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | -| **GitHub Copilot Chat** | セッションヘッダーの自動送信対応は[VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186)で要望されています。 | -| **Kimi Code** | セッションヘッダーの自動送信対応は[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506)で要望されています。 | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317)には[PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)で修正案がありますが、まだマージされていません。 | +| **GitHub Copilot Chat** | セッションヘッダーの自動送信対応は[VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186)で要望されています。 | +| **Kimi Code** | セッションヘッダーの自動送信対応は[issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506)で要望されています。 | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317)には[PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)で修正案がありますが、まだマージされていません。 | ## 利用制限 diff --git a/packages/web/src/content/docs/ko/go.mdx b/packages/web/src/content/docs/ko/go.mdx index e3989dca50fb..76770bdfd488 100644 --- a/packages/web/src/content/docs/ko/go.mdx +++ b/packages/web/src/content/docs/ko/go.mdx @@ -97,14 +97,14 @@ OpenCode Go는 [OpenCode](https://opencode.ai) 및 유사한 유형의 요청을 OpenCode 외에도 다음 클라이언트가 OpenCode Go에서 올바르게 작동하는 것으로 검증되었습니다. 다만 앞으로도 계속 작동할 것이라고 보장하지는 않습니다. -| 클라이언트 | 세션 지원 | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864)가 포함된 빌드는 OpenCode의 기본 요청과 보조 요청 모두에서 헤더를 전송합니다. 이 수정은 v0.21.0 이후에 병합되었으므로 v0.21.0 릴리스 자체에는 포함되지 않습니다. | -| **Claude Code** | Go는 Claude Code의 고유 세션 헤더를 인식합니다. 사용자 지정 헤더 래퍼가 필요하지 않습니다. | -| **Codex** | Go는 Codex의 고유 세션 헤더를 인식합니다. 일부 버전과 프록시 설정에서는 여전히 이 헤더가 누락되므로 요청을 전달할 때 세션 헤더를 유지하세요. | +| 클라이언트 | 세션 지원 | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864)가 포함된 빌드는 OpenCode의 기본 요청과 보조 요청 모두에서 헤더를 전송합니다. 이 수정은 v0.21.0 이후에 병합되었으므로 v0.21.0 릴리스 자체에는 포함되지 않습니다. | +| **Claude Code** | Go는 Claude Code의 고유 세션 헤더를 인식합니다. 사용자 지정 헤더 래퍼가 필요하지 않습니다. | +| **Codex** | Go는 Codex의 고유 세션 헤더를 인식합니다. 일부 버전과 프록시 설정에서는 여전히 이 헤더가 누락되므로 요청을 전달할 때 세션 헤더를 유지하세요. | | **ZCode** | Go는 ZCode의 고유 세션 헤더를 인식합니다. [`x-opencode-session` 요청](https://github.com/zai-org/feedback/issues/492)은 아직 열려 있지만 이제 해당 헤더를 별도로 전송할 필요는 없습니다. | -| **Pi** | 현재 빌드는 OpenCode에 세션 정보를 전송합니다. 이전 설치 버전은 업데이트하세요. | -| **jcode** | [세션 헤더 수정](https://github.com/1jehuang/jcode/issues/1167)이 포함된 **v0.81.6 이상**으로 업데이트하세요. | +| **Pi** | 현재 빌드는 OpenCode에 세션 정보를 전송합니다. 이전 설치 버전은 업데이트하세요. | +| **jcode** | [세션 헤더 수정](https://github.com/1jehuang/jcode/issues/1167)이 포함된 **v0.81.6 이상**으로 업데이트하세요. | | **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752)가 포함된 빌드는 OpenCode 세션 헤더를 복원합니다. 이 수정은 CLI에만 적용되며 VS Code 확장에는 적용되지 않습니다. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)을 참조하세요. | ### 알려진 문제가 있는 클라이언트 @@ -112,12 +112,12 @@ OpenCode 외에도 다음 클라이언트가 OpenCode Go에서 올바르게 작 조사한 버전에서 다음 클라이언트는 세션 지원이 없거나 불완전했습니다. 링크된 보고서에서 수정 사항과 해결 방법을 추적합니다. -| 클라이언트 | 상태 및 추적 | -| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 클라이언트 | 상태 및 추적 | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | 일부 모델 경로에서는 세션 정보가 전달되지만 다른 경로에서는 누락됩니다. Go는 DeepSeek Harness의 고유 헤더를 인식하며, 남은 작업은 모든 어댑터에서 이 헤더를 전송하는 것입니다. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | 자동 세션 헤더 지원은 [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186)에서 요청되었습니다. | -| **Kimi Code** | 자동 세션 헤더 지원은 [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506)에서 요청되었습니다. | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317)에 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)로 수정안이 제안되었지만 아직 병합되지 않았습니다. | +| **GitHub Copilot Chat** | 자동 세션 헤더 지원은 [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186)에서 요청되었습니다. | +| **Kimi Code** | 자동 세션 헤더 지원은 [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506)에서 요청되었습니다. | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317)에 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327)로 수정안이 제안되었지만 아직 병합되지 않았습니다. | ## 사용 한도 diff --git a/packages/web/src/content/docs/nb/go.mdx b/packages/web/src/content/docs/nb/go.mdx index fa8299900bef..29d41be06170 100644 --- a/packages/web/src/content/docs/nb/go.mdx +++ b/packages/web/src/content/docs/nb/go.mdx @@ -110,27 +110,27 @@ Klienten din skal: I tillegg til OpenCode er følgende klienter validert for å fungere riktig med OpenCode Go. Vi garanterer imidlertid ikke at de vil fortsette å fungere i fremtiden. -| Klient | Sesjonsstøtte | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Bygg som inneholder [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), sender headeren i primære og sekundære OpenCode-forespørsler. Rettelsen ble slått sammen etter v0.21.0; den versjonen inneholder den ikke alene. | -| **Claude Code** | Go gjenkjenner den innebygde sesjonsheaderen. En wrapper for en egendefinert header er ikke nødvendig. | -| **Codex** | Go gjenkjenner den innebygde sesjonsheaderen. Noen versjoner og proxyoppsett utelater den fortsatt; behold sesjonsheaderen når forespørsler videresendes. | -| **ZCode** | Go gjenkjenner den innebygde sesjonsheaderen. Vår [forespørsel om `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) er fortsatt åpen, men det er ikke lenger nødvendig å sende akkurat denne headeren. | -| **Pi** | Gjeldende bygg sender sesjonsinformasjon for OpenCode. Oppdater eldre installasjoner. | -| **jcode** | Oppdater til **v0.81.6 eller nyere**, som inneholder [rettelsen for sesjonsheaderen](https://github.com/1jehuang/jcode/issues/1167). | -| **Kilo Code CLI** | Bygg som inneholder [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), gjenoppretter OpenCode-sesjonsheadere. Denne rettelsen dekker CLI-en, ikke VS Code-utvidelsen. Se [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | +| Klient | Sesjonsstøtte | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | Bygg som inneholder [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), sender headeren i primære og sekundære OpenCode-forespørsler. Rettelsen ble slått sammen etter v0.21.0; den versjonen inneholder den ikke alene. | +| **Claude Code** | Go gjenkjenner den innebygde sesjonsheaderen. En wrapper for en egendefinert header er ikke nødvendig. | +| **Codex** | Go gjenkjenner den innebygde sesjonsheaderen. Noen versjoner og proxyoppsett utelater den fortsatt; behold sesjonsheaderen når forespørsler videresendes. | +| **ZCode** | Go gjenkjenner den innebygde sesjonsheaderen. Vår [forespørsel om `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) er fortsatt åpen, men det er ikke lenger nødvendig å sende akkurat denne headeren. | +| **Pi** | Gjeldende bygg sender sesjonsinformasjon for OpenCode. Oppdater eldre installasjoner. | +| **jcode** | Oppdater til **v0.81.6 eller nyere**, som inneholder [rettelsen for sesjonsheaderen](https://github.com/1jehuang/jcode/issues/1167). | +| **Kilo Code CLI** | Bygg som inneholder [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), gjenoppretter OpenCode-sesjonsheadere. Denne rettelsen dekker CLI-en, ikke VS Code-utvidelsen. Se [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Kjente problematiske klienter Disse klientene mangler sesjonsstøtte eller har ufullstendig støtte i versjonene vi undersøkte. De lenkede rapportene følger rettelser og midlertidige løsninger. -| Klient | Status og oppfølging | -| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Klient | Status og oppfølging | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | Sesjonsinformasjon mottas på noen modellbaner, men mangler på andre. Vi gjenkjenner den innebygde headeren; det gjenstående arbeidet er å sende den gjennom alle adaptere. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Automatisk støtte for sesjonsheaderen er etterspurt i [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Automatisk støtte for sesjonsheaderen er etterspurt i [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) har en foreslått rettelse i [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), som ennå ikke er slått sammen. | +| **GitHub Copilot Chat** | Automatisk støtte for sesjonsheaderen er etterspurt i [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Automatisk støtte for sesjonsheaderen er etterspurt i [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) har en foreslått rettelse i [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), som ennå ikke er slått sammen. | ## Bruksgrenser diff --git a/packages/web/src/content/docs/pl/go.mdx b/packages/web/src/content/docs/pl/go.mdx index 34737509154e..bc89ca4eed96 100644 --- a/packages/web/src/content/docs/pl/go.mdx +++ b/packages/web/src/content/docs/pl/go.mdx @@ -104,13 +104,13 @@ Twój klient powinien: Poza OpenCode zweryfikowano, że poniżsi klienci działają prawidłowo z OpenCode Go. Nie gwarantujemy jednak, że będą nadal działać w przyszłości. -| Klient | Obsługa sesji | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Klient | Obsługa sesji | +| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **Hermes** | Kompilacje zawierające [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) wysyłają nagłówek w głównych i pomocniczych żądaniach OpenCode. Poprawkę scalono po wersji v0.21.0; samo to wydanie jej nie zawiera. | -| **Claude Code** | Go rozpoznaje jego natywny nagłówek sesji. Wrapper dodający niestandardowy nagłówek nie jest potrzebny. | +| **Claude Code** | Go rozpoznaje jego natywny nagłówek sesji. Wrapper dodający niestandardowy nagłówek nie jest potrzebny. | | **Codex** | Go rozpoznaje jego natywny nagłówek sesji. Niektóre wersje i konfiguracje proxy nadal go pomijają; podczas przekazywania żądań należy zachować nagłówek sesji. | -| **ZCode** | Go rozpoznaje jego natywny nagłówek sesji. Nasza [prośba o `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) pozostaje otwarta, ale wysyłanie tego konkretnego nagłówka nie jest już konieczne. | -| **Pi** | Aktualne kompilacje wysyłają informacje o sesji dla OpenCode. Zaktualizuj starsze instalacje. | +| **ZCode** | Go rozpoznaje jego natywny nagłówek sesji. Nasza [prośba o `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) pozostaje otwarta, ale wysyłanie tego konkretnego nagłówka nie jest już konieczne. | +| **Pi** | Aktualne kompilacje wysyłają informacje o sesji dla OpenCode. Zaktualizuj starsze instalacje. | | **jcode** | Zaktualizuj do wersji **v0.81.6 lub nowszej**, która zawiera [poprawkę nagłówka sesji](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | Kompilacje zawierające [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) przywracają nagłówki sesji OpenCode. Ta poprawka obejmuje CLI, ale nie rozszerzenie VS Code. Zobacz [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | @@ -119,12 +119,12 @@ z OpenCode Go. Nie gwarantujemy jednak, że będą nadal działać w przyszłoś W badanych przez nas wersjach tych klientów obsługa sesji jest niepełna lub jej brakuje. Raporty pod podanymi linkami służą do śledzenia poprawek i obejść. -| Klient | Stan i śledzenie | -| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Klient | Stan i śledzenie | +| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | Informacje o sesji docierają w niektórych ścieżkach modeli, ale brakuje ich w innych. Rozpoznajemy jego natywny nagłówek; pozostaje zapewnić jego wysyłanie przez wszystkie adaptery. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Prośbę o automatyczną obsługę nagłówka sesji zgłoszono w [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Prośbę o automatyczną obsługę nagłówka sesji zgłoszono w [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | Dla [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) zaproponowano poprawkę w [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), który nie został jeszcze scalony. | +| **GitHub Copilot Chat** | Prośbę o automatyczną obsługę nagłówka sesji zgłoszono w [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Prośbę o automatyczną obsługę nagłówka sesji zgłoszono w [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | Dla [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) zaproponowano poprawkę w [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), który nie został jeszcze scalony. | ## Limity użycia diff --git a/packages/web/src/content/docs/pt-br/go.mdx b/packages/web/src/content/docs/pt-br/go.mdx index 0083a3a0677c..140166856e3c 100644 --- a/packages/web/src/content/docs/pt-br/go.mdx +++ b/packages/web/src/content/docs/pt-br/go.mdx @@ -110,14 +110,14 @@ Seu cliente deve: Além do OpenCode, os clientes a seguir foram validados para funcionar corretamente com o OpenCode Go. No entanto, não garantimos que continuarão funcionando no futuro. -| Cliente | Suporte a sessões | -| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **Hermes** | As builds que contêm o [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) enviam o header nas requisições principais e auxiliares do OpenCode. A correção foi incorporada após a v0.21.0; essa versão por si só não a inclui. | -| **Claude Code** | O Go reconhece seu header de sessão nativo. Não é necessário usar um wrapper para headers personalizados. | -| **Codex** | O Go reconhece seu header de sessão nativo. Algumas versões e configurações de proxy ainda o omitem; preserve o header de sessão ao encaminhar requisições. | -| **ZCode** | O Go reconhece seu header de sessão nativo. Nossa [solicitação de `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) continua aberta, mas não é mais necessário enviar especificamente esse header. | -| **Pi** | As builds atuais enviam informações de sessão para o OpenCode. Atualize instalações mais antigas. | -| **jcode** | Atualize para a versão **v0.81.6 ou posterior**, que inclui a [correção do header de sessão](https://github.com/1jehuang/jcode/issues/1167). | +| Cliente | Suporte a sessões | +| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | As builds que contêm o [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) enviam o header nas requisições principais e auxiliares do OpenCode. A correção foi incorporada após a v0.21.0; essa versão por si só não a inclui. | +| **Claude Code** | O Go reconhece seu header de sessão nativo. Não é necessário usar um wrapper para headers personalizados. | +| **Codex** | O Go reconhece seu header de sessão nativo. Algumas versões e configurações de proxy ainda o omitem; preserve o header de sessão ao encaminhar requisições. | +| **ZCode** | O Go reconhece seu header de sessão nativo. Nossa [solicitação de `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) continua aberta, mas não é mais necessário enviar especificamente esse header. | +| **Pi** | As builds atuais enviam informações de sessão para o OpenCode. Atualize instalações mais antigas. | +| **jcode** | Atualize para a versão **v0.81.6 ou posterior**, que inclui a [correção do header de sessão](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | As builds que contêm o [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) restauram os headers de sessão do OpenCode. Essa correção abrange a CLI, não a extensão do VS Code. Consulte a [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Clientes com problemas conhecidos @@ -125,12 +125,12 @@ com o OpenCode Go. No entanto, não garantimos que continuarão funcionando no f Esses clientes não têm suporte a sessões ou apresentam suporte incompleto nas versões que investigamos. Os relatórios vinculados acompanham correções e soluções alternativas. -| Cliente | Status e acompanhamento | -| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **DeepSeek Harness** | As informações de sessão chegam por alguns caminhos de modelos, mas não por outros. Reconhecemos seu header nativo; ainda é necessário enviá-lo por todos os adaptadores. [Discussão #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | O suporte automático ao header de sessão foi solicitado na [issue #334186 do VS Code](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | O suporte automático ao header de sessão foi solicitado na [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | A [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) tem uma correção proposta no [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), que ainda não foi incorporada. | +| Cliente | Status e acompanhamento | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | As informações de sessão chegam por alguns caminhos de modelos, mas não por outros. Reconhecemos seu header nativo; ainda é necessário enviá-lo por todos os adaptadores. [Discussão #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | +| **GitHub Copilot Chat** | O suporte automático ao header de sessão foi solicitado na [issue #334186 do VS Code](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | O suporte automático ao header de sessão foi solicitado na [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | A [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) tem uma correção proposta no [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), que ainda não foi incorporada. | ## Limites de uso diff --git a/packages/web/src/content/docs/ru/go.mdx b/packages/web/src/content/docs/ru/go.mdx index f56cfbb125ce..22337f326a4e 100644 --- a/packages/web/src/content/docs/ru/go.mdx +++ b/packages/web/src/content/docs/ru/go.mdx @@ -110,14 +110,14 @@ OpenCode Go предназначен для [OpenCode](https://opencode.ai) и Помимо OpenCode, корректная работа с OpenCode Go подтверждена для следующих клиентов. Однако мы не гарантируем, что они продолжат работать в будущем. -| Клиент | Поддержка сессий | -| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | Сборки, содержащие [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), отправляют заголовок в основных и вспомогательных запросах OpenCode. Исправление было объединено после v0.21.0; само это издание его не содержит. | -| **Claude Code** | Go распознает его нативный заголовок сессии. Обертка для добавления пользовательского заголовка не требуется. | -| **Codex** | Go распознает его нативный заголовок сессии. Некоторые версии и конфигурации прокси по-прежнему его не передают; сохраняйте заголовок сессии при пересылке запросов. | -| **ZCode** | Go распознает его нативный заголовок сессии. Наш [запрос на `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) остается открытым, но отправлять именно этот заголовок больше не требуется. | -| **Pi** | Текущие сборки отправляют информацию о сессии для OpenCode. Обновите более старые установки. | -| **jcode** | Обновитесь до версии **v0.81.6 или новее**, которая содержит [исправление заголовка сессии](https://github.com/1jehuang/jcode/issues/1167). | +| Клиент | Поддержка сессий | +| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | Сборки, содержащие [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864), отправляют заголовок в основных и вспомогательных запросах OpenCode. Исправление было объединено после v0.21.0; само это издание его не содержит. | +| **Claude Code** | Go распознает его нативный заголовок сессии. Обертка для добавления пользовательского заголовка не требуется. | +| **Codex** | Go распознает его нативный заголовок сессии. Некоторые версии и конфигурации прокси по-прежнему его не передают; сохраняйте заголовок сессии при пересылке запросов. | +| **ZCode** | Go распознает его нативный заголовок сессии. Наш [запрос на `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) остается открытым, но отправлять именно этот заголовок больше не требуется. | +| **Pi** | Текущие сборки отправляют информацию о сессии для OpenCode. Обновите более старые установки. | +| **jcode** | Обновитесь до версии **v0.81.6 или новее**, которая содержит [исправление заголовка сессии](https://github.com/1jehuang/jcode/issues/1167). | | **Kilo Code CLI** | Сборки, содержащие [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752), восстанавливают заголовки сессии OpenCode. Это исправление относится к CLI, но не к расширению VS Code. См. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Клиенты с известными проблемами @@ -125,12 +125,12 @@ OpenCode Go предназначен для [OpenCode](https://opencode.ai) и В исследованных нами версиях этих клиентов поддержка сессий отсутствует или реализована не полностью. По ссылкам можно отслеживать исправления и обходные решения. -| Клиент | Статус и отслеживание | -| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Клиент | Статус и отслеживание | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | **DeepSeek Harness** | Информация о сессии поступает для некоторых путей моделей, но отсутствует для других. Мы распознаем его нативный заголовок; остается обеспечить его отправку через все адаптеры. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Запрос на автоматическую поддержку заголовка сессии создан в [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | -| **Kimi Code** | Запрос на автоматическую поддержку заголовка сессии создан в [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | -| **MiMo Code** | Для [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) предложено исправление в [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), который еще не объединен. | +| **GitHub Copilot Chat** | Запрос на автоматическую поддержку заголовка сессии создан в [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186). | +| **Kimi Code** | Запрос на автоматическую поддержку заголовка сессии создан в [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506). | +| **MiMo Code** | Для [issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) предложено исправление в [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327), который еще не объединен. | ## Лимиты использования diff --git a/packages/web/src/content/docs/th/go.mdx b/packages/web/src/content/docs/th/go.mdx index 621599d46f3a..29f5448a4d80 100644 --- a/packages/web/src/content/docs/th/go.mdx +++ b/packages/web/src/content/docs/th/go.mdx @@ -97,27 +97,27 @@ OpenCode Go ออกแบบมาสำหรับ [OpenCode](https://openco นอกจาก OpenCode แล้ว ไคลเอนต์ต่อไปนี้ได้รับการตรวจสอบแล้วว่าทำงานกับ OpenCode Go ได้อย่างถูกต้อง อย่างไรก็ตาม เราไม่รับประกันว่าไคลเอนต์เหล่านี้จะยังคงทำงานได้ต่อไปในอนาคต -| ไคลเอนต์ | การรองรับเซสชัน | -| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| **Hermes** | บิลด์ที่มี [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) จะส่งส่วนหัวในคำขอ OpenCode ทั้งคำขอหลักและคำขอเสริม การแก้ไขนี้ถูก merge หลัง v0.21.0 ดังนั้นตัวรีลีส v0.21.0 เองจึงยังไม่มีการแก้ไขนี้ | -| **Claude Code** | Go รู้จักส่วนหัวเซสชันแบบ native ของ Claude Code จึงไม่ต้องใช้ wrapper เพื่อเพิ่มส่วนหัวแบบกำหนดเอง | -| **Codex** | Go รู้จักส่วนหัวเซสชันแบบ native ของ Codex แต่บางเวอร์ชันและการตั้งค่า proxy ยังไม่ส่งส่วนหัวนี้ โปรดคงส่วนหัวเซสชันไว้เมื่อ forward คำขอ | -| **ZCode** | Go รู้จักส่วนหัวเซสชันแบบ native ของ ZCode [คำขอให้เพิ่ม `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) ของเรายังเปิดอยู่ แต่ไม่จำเป็นต้องส่งส่วนหัวเฉพาะนี้อีกต่อไป | -| **Pi** | บิลด์ปัจจุบันส่งข้อมูลเซสชันสำหรับ OpenCode โปรดอัปเดตการติดตั้งเวอร์ชันเก่า | -| **jcode** | อัปเดตเป็น **v0.81.6 หรือใหม่กว่า** ซึ่งมี[การแก้ไขส่วนหัวเซสชัน](https://github.com/1jehuang/jcode/issues/1167) | -| **Kilo Code CLI** | บิลด์ที่มี [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) จะทำให้ส่วนหัวเซสชันของ OpenCode กลับมาทำงาน การแก้ไขนี้ครอบคลุม CLI แต่ไม่ครอบคลุมส่วนขยาย VS Code ดู [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723) | +| ไคลเอนต์ | การรองรับเซสชัน | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | บิลด์ที่มี [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) จะส่งส่วนหัวในคำขอ OpenCode ทั้งคำขอหลักและคำขอเสริม การแก้ไขนี้ถูก merge หลัง v0.21.0 ดังนั้นตัวรีลีส v0.21.0 เองจึงยังไม่มีการแก้ไขนี้ | +| **Claude Code** | Go รู้จักส่วนหัวเซสชันแบบ native ของ Claude Code จึงไม่ต้องใช้ wrapper เพื่อเพิ่มส่วนหัวแบบกำหนดเอง | +| **Codex** | Go รู้จักส่วนหัวเซสชันแบบ native ของ Codex แต่บางเวอร์ชันและการตั้งค่า proxy ยังไม่ส่งส่วนหัวนี้ โปรดคงส่วนหัวเซสชันไว้เมื่อ forward คำขอ | +| **ZCode** | Go รู้จักส่วนหัวเซสชันแบบ native ของ ZCode [คำขอให้เพิ่ม `x-opencode-session`](https://github.com/zai-org/feedback/issues/492) ของเรายังเปิดอยู่ แต่ไม่จำเป็นต้องส่งส่วนหัวเฉพาะนี้อีกต่อไป | +| **Pi** | บิลด์ปัจจุบันส่งข้อมูลเซสชันสำหรับ OpenCode โปรดอัปเดตการติดตั้งเวอร์ชันเก่า | +| **jcode** | อัปเดตเป็น **v0.81.6 หรือใหม่กว่า** ซึ่งมี[การแก้ไขส่วนหัวเซสชัน](https://github.com/1jehuang/jcode/issues/1167) | +| **Kilo Code CLI** | บิลด์ที่มี [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) จะทำให้ส่วนหัวเซสชันของ OpenCode กลับมาทำงาน การแก้ไขนี้ครอบคลุม CLI แต่ไม่ครอบคลุมส่วนขยาย VS Code ดู [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723) | ### ไคลเอนต์ที่ทราบว่ามีปัญหา ไคลเอนต์เหล่านี้ไม่รองรับเซสชันหรือรองรับไม่สมบูรณ์ในเวอร์ชันที่เราตรวจสอบ รายงานที่ลิงก์ไว้ใช้ติดตามการแก้ไขและวิธีแก้ปัญหาชั่วคราว -| ไคลเอนต์ | สถานะและการติดตาม | -| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **DeepSeek Harness** | ข้อมูลเซสชันส่งมาถึงใน model path บางรายการ แต่ขาดหายไปในรายการอื่น Go รู้จักส่วนหัวแบบ native ของ DeepSeek Harness งานที่เหลือคือการส่งส่วนหัวนี้ผ่าน adapter ทั้งหมด [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495) | -| **GitHub Copilot Chat** | มีการขอให้รองรับส่วนหัวเซสชันโดยอัตโนมัติใน [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) | -| **Kimi Code** | มีการขอให้รองรับส่วนหัวเซสชันโดยอัตโนมัติใน [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) มีการเสนอการแก้ไขใน [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327) ซึ่งยังไม่ได้ merge | +| ไคลเอนต์ | สถานะและการติดตาม | +| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | ข้อมูลเซสชันส่งมาถึงใน model path บางรายการ แต่ขาดหายไปในรายการอื่น Go รู้จักส่วนหัวแบบ native ของ DeepSeek Harness งานที่เหลือคือการส่งส่วนหัวนี้ผ่าน adapter ทั้งหมด [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495) | +| **GitHub Copilot Chat** | มีการขอให้รองรับส่วนหัวเซสชันโดยอัตโนมัติใน [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) | +| **Kimi Code** | มีการขอให้รองรับส่วนหัวเซสชันโดยอัตโนมัติใน [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) มีการเสนอการแก้ไขใน [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327) ซึ่งยังไม่ได้ merge | ## Usage limits diff --git a/packages/web/src/content/docs/tr/go.mdx b/packages/web/src/content/docs/tr/go.mdx index 0cd0cd0220f0..764de377cfd3 100644 --- a/packages/web/src/content/docs/tr/go.mdx +++ b/packages/web/src/content/docs/tr/go.mdx @@ -97,27 +97,27 @@ Trafik, diğer kullanıcıların deneyimini olumsuz etkileyen kötüye kullanım OpenCode'un yanı sıra aşağıdaki istemcilerin OpenCode Go ile düzgün çalıştığı doğrulanmıştır. Ancak gelecekte de çalışmaya devam edeceklerini garanti etmiyoruz. -| İstemci | Oturum desteği | -| ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) içeren derlemeler, ana ve yardımcı OpenCode isteklerinde başlığı gönderir. Düzeltme v0.21.0'dan sonra birleştirilmiştir; dolayısıyla v0.21.0 sürümü tek başına bu düzeltmeyi içermez. | -| **Claude Code** | Go, Claude Code'un yerel oturum başlığını tanır. Özel başlık ekleyen bir sarmalayıcı gerekmez. | -| **Codex** | Go, Codex'in yerel oturum başlığını tanır. Bazı sürümler ve proxy yapılandırmaları hâlâ bu başlığı göndermemektedir; istekleri iletirken oturum başlığını koruyun. | -| **ZCode** | Go, ZCode'un yerel oturum başlığını tanır. [`x-opencode-session` talebimiz](https://github.com/zai-org/feedback/issues/492) hâlâ açıktır ancak artık özellikle bu başlığın gönderilmesi gerekli değildir. | -| **Pi** | Güncel derlemeler OpenCode için oturum bilgilerini gönderir. Eski kurulumları güncelleyin. | -| **jcode** | [Oturum başlığı düzeltmesini](https://github.com/1jehuang/jcode/issues/1167) içeren **v0.81.6 veya sonraki bir sürüme** güncelleyin. | -| **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) içeren derlemeler OpenCode oturum başlıklarını geri getirir. Bu düzeltme CLI'ı kapsar, VS Code uzantısını kapsamaz. Bkz. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | +| İstemci | Oturum desteği | +| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **Hermes** | [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) içeren derlemeler, ana ve yardımcı OpenCode isteklerinde başlığı gönderir. Düzeltme v0.21.0'dan sonra birleştirilmiştir; dolayısıyla v0.21.0 sürümü tek başına bu düzeltmeyi içermez. | +| **Claude Code** | Go, Claude Code'un yerel oturum başlığını tanır. Özel başlık ekleyen bir sarmalayıcı gerekmez. | +| **Codex** | Go, Codex'in yerel oturum başlığını tanır. Bazı sürümler ve proxy yapılandırmaları hâlâ bu başlığı göndermemektedir; istekleri iletirken oturum başlığını koruyun. | +| **ZCode** | Go, ZCode'un yerel oturum başlığını tanır. [`x-opencode-session` talebimiz](https://github.com/zai-org/feedback/issues/492) hâlâ açıktır ancak artık özellikle bu başlığın gönderilmesi gerekli değildir. | +| **Pi** | Güncel derlemeler OpenCode için oturum bilgilerini gönderir. Eski kurulumları güncelleyin. | +| **jcode** | [Oturum başlığı düzeltmesini](https://github.com/1jehuang/jcode/issues/1167) içeren **v0.81.6 veya sonraki bir sürüme** güncelleyin. | +| **Kilo Code CLI** | [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) içeren derlemeler OpenCode oturum başlıklarını geri getirir. Bu düzeltme CLI'ı kapsar, VS Code uzantısını kapsamaz. Bkz. [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723). | ### Sorunlu Olduğu Bilinen İstemciler Bu istemcilerin incelediğimiz sürümlerinde oturum desteği eksik veya tamamlanmamıştır. Bağlantı verilen bildirimlerden düzeltmeleri ve geçici çözümleri takip edebilirsiniz. -| İstemci | Durum ve takip | +| İstemci | Durum ve takip | | ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | **DeepSeek Harness** | Oturum bilgileri bazı model yollarında ulaşırken diğerlerinde eksiktir. Go, DeepSeek Harness'ın yerel başlığını tanır; yapılması gereken, bu başlığın tüm adaptörlerden gönderilmesidir. [Discussion #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495). | -| **GitHub Copilot Chat** | Otomatik oturum başlığı desteği [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) içinde talep edilmiştir. | +| **GitHub Copilot Chat** | Otomatik oturum başlığı desteği [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) içinde talep edilmiştir. | | **Kimi Code** | Otomatik oturum başlığı desteği [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) içinde talep edilmiştir. | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) için [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327) içinde bir düzeltme önerilmiştir ancak henüz birleştirilmemiştir. | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) için [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327) içinde bir düzeltme önerilmiştir ancak henüz birleştirilmemiştir. | ## Kullanım limitleri diff --git a/packages/web/src/content/docs/zh-cn/go.mdx b/packages/web/src/content/docs/zh-cn/go.mdx index bbf58a721b5f..60ac0cf1eae6 100644 --- a/packages/web/src/content/docs/zh-cn/go.mdx +++ b/packages/web/src/content/docs/zh-cn/go.mdx @@ -97,26 +97,26 @@ OpenCode Go 适用于 [OpenCode](https://opencode.ai) 以及其他会产生类 除 OpenCode 外,以下客户端已通过验证,能够正常使用 OpenCode Go。但我们无法保证它们未来仍能正常使用。 -| 客户端 | 会话支持 | -| --- | --- | -| **Hermes** | 包含 [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) 的构建版本会在主要和辅助 OpenCode 请求中发送该请求头。此修复在 v0.21.0 发布后才合并,因此 v0.21.0 本身并不包含该修复。 | -| **Claude Code** | Go 能识别其原生会话请求头,无需额外封装来添加自定义请求头。 | -| **Codex** | Go 能识别其原生会话请求头。某些版本和代理配置仍会遗漏该请求头;转发请求时请保留会话请求头。 | -| **ZCode** | Go 能识别其原生会话请求头。我们[请求支持 `x-opencode-session` 的 issue](https://github.com/zai-org/feedback/issues/492) 仍处于开放状态,但已不再需要发送这一特定请求头。 | -| **Pi** | 当前构建版本会为 OpenCode 发送会话信息。请更新旧版安装。 | -| **jcode** | 请更新至 **v0.81.6 或更高版本**,其中包含[会话请求头修复](https://github.com/1jehuang/jcode/issues/1167)。 | +| 客户端 | 会话支持 | +| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | 包含 [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) 的构建版本会在主要和辅助 OpenCode 请求中发送该请求头。此修复在 v0.21.0 发布后才合并,因此 v0.21.0 本身并不包含该修复。 | +| **Claude Code** | Go 能识别其原生会话请求头,无需额外封装来添加自定义请求头。 | +| **Codex** | Go 能识别其原生会话请求头。某些版本和代理配置仍会遗漏该请求头;转发请求时请保留会话请求头。 | +| **ZCode** | Go 能识别其原生会话请求头。我们[请求支持 `x-opencode-session` 的 issue](https://github.com/zai-org/feedback/issues/492) 仍处于开放状态,但已不再需要发送这一特定请求头。 | +| **Pi** | 当前构建版本会为 OpenCode 发送会话信息。请更新旧版安装。 | +| **jcode** | 请更新至 **v0.81.6 或更高版本**,其中包含[会话请求头修复](https://github.com/1jehuang/jcode/issues/1167)。 | | **Kilo Code CLI** | 包含 [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) 的构建版本恢复了 OpenCode 会话请求头。此修复仅适用于 CLI,不适用于 VS Code 扩展。参见 [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)。 | ### 已知存在问题的客户端 在我们调查的版本中,以下客户端缺少会话支持,或支持不完整。相关报告链接可用于跟踪修复进展和临时解决方案。 -| 客户端 | 状态与跟踪 | -| --- | --- | -| **DeepSeek Harness** | 某些模型调用路径会传递会话信息,但其他路径中缺失。我们能识别其原生请求头;剩余工作是在所有适配器中发送该请求头。参见[讨论 #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | -| **GitHub Copilot Chat** | [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) 已提出自动发送会话请求头的支持请求。 | -| **Kimi Code** | [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) 已提出自动发送会话请求头的支持请求。 | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) 已有拟议修复 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327),但尚未合并。 | +| 客户端 | 状态与跟踪 | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | 某些模型调用路径会传递会话信息,但其他路径中缺失。我们能识别其原生请求头;剩余工作是在所有适配器中发送该请求头。参见[讨论 #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | +| **GitHub Copilot Chat** | [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) 已提出自动发送会话请求头的支持请求。 | +| **Kimi Code** | [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) 已提出自动发送会话请求头的支持请求。 | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) 已有拟议修复 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327),但尚未合并。 | ## 使用限制 diff --git a/packages/web/src/content/docs/zh-tw/go.mdx b/packages/web/src/content/docs/zh-tw/go.mdx index 4cd2b8a9fd0b..e81efc392cdf 100644 --- a/packages/web/src/content/docs/zh-tw/go.mdx +++ b/packages/web/src/content/docs/zh-tw/go.mdx @@ -97,26 +97,26 @@ OpenCode Go 適用於 [OpenCode](https://opencode.ai) 以及其他會產生類 除了 OpenCode,以下用戶端已通過驗證,可正常使用 OpenCode Go。但我們無法保證它們未來仍能正常使用。 -| 用戶端 | 工作階段支援 | -| --- | --- | -| **Hermes** | 包含 [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) 的建置版本會在主要和輔助 OpenCode 請求中傳送該標頭。此修正是在 v0.21.0 發布後才合併,因此 v0.21.0 本身並未包含此修正。 | -| **Claude Code** | Go 可辨識其原生工作階段標頭,無須額外封裝來新增自訂標頭。 | -| **Codex** | Go 可辨識其原生工作階段標頭。部分版本和代理伺服器設定仍會遺漏該標頭;轉送請求時請保留工作階段標頭。 | -| **ZCode** | Go 可辨識其原生工作階段標頭。我們[請求支援 `x-opencode-session` 的 issue](https://github.com/zai-org/feedback/issues/492) 仍未關閉,但已不再需要傳送這個特定標頭。 | -| **Pi** | 目前的建置版本會為 OpenCode 傳送工作階段資訊。請更新舊版安裝。 | -| **jcode** | 請更新至 **v0.81.6 或更新版本**,其中包含[工作階段標頭修正](https://github.com/1jehuang/jcode/issues/1167)。 | +| 用戶端 | 工作階段支援 | +| ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **Hermes** | 包含 [PR #101864](https://github.com/NousResearch/hermes-agent/pull/101864) 的建置版本會在主要和輔助 OpenCode 請求中傳送該標頭。此修正是在 v0.21.0 發布後才合併,因此 v0.21.0 本身並未包含此修正。 | +| **Claude Code** | Go 可辨識其原生工作階段標頭,無須額外封裝來新增自訂標頭。 | +| **Codex** | Go 可辨識其原生工作階段標頭。部分版本和代理伺服器設定仍會遺漏該標頭;轉送請求時請保留工作階段標頭。 | +| **ZCode** | Go 可辨識其原生工作階段標頭。我們[請求支援 `x-opencode-session` 的 issue](https://github.com/zai-org/feedback/issues/492) 仍未關閉,但已不再需要傳送這個特定標頭。 | +| **Pi** | 目前的建置版本會為 OpenCode 傳送工作階段資訊。請更新舊版安裝。 | +| **jcode** | 請更新至 **v0.81.6 或更新版本**,其中包含[工作階段標頭修正](https://github.com/1jehuang/jcode/issues/1167)。 | | **Kilo Code CLI** | 包含 [PR #13752](https://github.com/Kilo-Org/kilocode/pull/13752) 的建置版本恢復了 OpenCode 工作階段標頭。此修正僅適用於 CLI,不適用於 VS Code 擴充套件。請參閱 [issue #13723](https://github.com/Kilo-Org/kilocode/issues/13723)。 | ### 已知有問題的用戶端 在我們調查的版本中,以下用戶端缺少工作階段支援,或支援不完整。相關回報連結可用來追蹤修正進度與暫時解決方式。 -| 用戶端 | 狀態與追蹤 | -| --- | --- | -| **DeepSeek Harness** | 部分模型呼叫路徑會傳遞工作階段資訊,但其他路徑中缺少這些資訊。我們可辨識其原生標頭;剩餘工作是在所有配接器中傳送該標頭。請參閱[討論 #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | -| **GitHub Copilot Chat** | [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) 已提出自動傳送工作階段標頭的支援請求。 | -| **Kimi Code** | [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) 已提出自動傳送工作階段標頭的支援請求。 | -| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) 已有修正提案 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327),但尚未合併。 | +| 用戶端 | 狀態與追蹤 | +| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **DeepSeek Harness** | 部分模型呼叫路徑會傳遞工作階段資訊,但其他路徑中缺少這些資訊。我們可辨識其原生標頭;剩餘工作是在所有配接器中傳送該標頭。請參閱[討論 #5495](https://github.com/deepseek-ai/deepseek-harness/discussions/5495)。 | +| **GitHub Copilot Chat** | [VS Code issue #334186](https://github.com/microsoft/vscode/issues/334186) 已提出自動傳送工作階段標頭的支援請求。 | +| **Kimi Code** | [issue #3506](https://github.com/MoonshotAI/kimi-code/issues/3506) 已提出自動傳送工作階段標頭的支援請求。 | +| **MiMo Code** | [Issue #2317](https://github.com/XiaomiMiMo/MiMo-Code/issues/2317) 已有修正提案 [PR #2327](https://github.com/XiaomiMiMo/MiMo-Code/pull/2327),但尚未合併。 | ## 使用限制 From ac1758c0e6b8e7368be133e87e8e27a5f60dec04 Mon Sep 17 00:00:00 2001 From: Emrick Date: Wed, 9 Sep 2026 00:20:22 +0800 Subject: [PATCH 20/94] fix: preserve Bedrock DeepSeek model ids (#34441) Co-authored-by: yeqisong --- .../src/plugin/provider/amazon-bedrock.ts | 4 +- .../plugin/provider-amazon-bedrock.test.ts | 7 +++ packages/opencode/src/provider/provider.ts | 6 ++- .../test/provider/amazon-bedrock.test.ts | 43 +++++++++++++++++++ 4 files changed, 58 insertions(+), 2 deletions(-) diff --git a/packages/core/src/plugin/provider/amazon-bedrock.ts b/packages/core/src/plugin/provider/amazon-bedrock.ts index 0995cf1c1724..1fb625c93612 100644 --- a/packages/core/src/plugin/provider/amazon-bedrock.ts +++ b/packages/core/src/plugin/provider/amazon-bedrock.ts @@ -13,13 +13,15 @@ type MantleSDK = { // specific model/region combinations. Keep the mapping narrow and avoid // double-prefixing model IDs that models.dev already marks as global/us/eu/etc. function resolveModelID(modelID: string, region: string | undefined) { + if (modelID.startsWith("arn:")) return modelID + const crossRegionPrefixes = ["global.", "us.", "eu.", "jp.", "apac.", "au."] if (crossRegionPrefixes.some((prefix) => modelID.startsWith(prefix))) return modelID const resolvedRegion = region ?? "us-east-1" const regionPrefix = resolvedRegion.split("-")[0] if (regionPrefix === "us") { - const requiresPrefix = ["nova-micro", "nova-lite", "nova-pro", "nova-premier", "nova-2", "claude", "deepseek"].some( + const requiresPrefix = ["nova-micro", "nova-lite", "nova-pro", "nova-premier", "nova-2", "claude", "deepseek.r1"].some( (item) => modelID.includes(item), ) if (requiresPrefix && !resolvedRegion.startsWith("us-gov")) return `${regionPrefix}.${modelID}` diff --git a/packages/core/test/plugin/provider-amazon-bedrock.test.ts b/packages/core/test/plugin/provider-amazon-bedrock.test.ts index 5d24879e492b..9ddcd127dcb3 100644 --- a/packages/core/test/plugin/provider-amazon-bedrock.test.ts +++ b/packages/core/test/plugin/provider-amazon-bedrock.test.ts @@ -528,6 +528,13 @@ describe("AmazonBedrockPlugin", () => { { region: "us-east-1", modelID: "amazon.nova-2-lite-v1:0", expected: "us.amazon.nova-2-lite-v1:0" }, { region: "us-east-1", modelID: "anthropic.claude-sonnet-4-5", expected: "us.anthropic.claude-sonnet-4-5" }, { region: "us-east-1", modelID: "deepseek.r1-v1:0", expected: "us.deepseek.r1-v1:0" }, + { region: "us-east-1", modelID: "us.deepseek.r1-v1:0", expected: "us.deepseek.r1-v1:0" }, + { region: "us-east-1", modelID: "deepseek.v3.2", expected: "deepseek.v3.2" }, + { + region: "us-east-1", + modelID: "arn:aws:bedrock:us-east-1::foundation-model/deepseek.v3.2", + expected: "arn:aws:bedrock:us-east-1::foundation-model/deepseek.v3.2", + }, { region: "us-gov-west-1", modelID: "anthropic.claude-sonnet-4-5", expected: "anthropic.claude-sonnet-4-5" }, { region: "us-east-1", modelID: "cohere.command-r-plus-v1:0", expected: "cohere.command-r-plus-v1:0" }, { region: "eu-west-1", modelID: "anthropic.claude-sonnet-4-5", expected: "eu.anthropic.claude-sonnet-4-5" }, diff --git a/packages/opencode/src/provider/provider.ts b/packages/opencode/src/provider/provider.ts index 72d5a7a59382..867ef2ca2fa8 100644 --- a/packages/opencode/src/provider/provider.ts +++ b/packages/opencode/src/provider/provider.ts @@ -376,6 +376,10 @@ function custom(dep: CustomDep): Record { // Skip region prefixing if model already has a cross-region inference profile prefix // Models from models.dev may already include prefixes like us., eu., global., etc. + if (modelID.startsWith("arn:")) { + return sdk.languageModel(modelID) + } + const crossRegionPrefixes = ["global.", "us.", "eu.", "jp.", "apac.", "au."] if (crossRegionPrefixes.some((prefix) => modelID.startsWith(prefix))) { return sdk.languageModel(modelID) @@ -398,7 +402,7 @@ function custom(dep: CustomDep): Record { "nova-premier", "nova-2", "claude", - "deepseek", + "deepseek.r1", ].some((m) => modelID.includes(m)) const isGovCloud = region.startsWith("us-gov") if (modelRequiresPrefix && !isGovCloud) { diff --git a/packages/opencode/test/provider/amazon-bedrock.test.ts b/packages/opencode/test/provider/amazon-bedrock.test.ts index 6e677631c40b..e4654ddb3d7a 100644 --- a/packages/opencode/test/provider/amazon-bedrock.test.ts +++ b/packages/opencode/test/provider/amazon-bedrock.test.ts @@ -229,6 +229,49 @@ it.instance( { config: { provider: { "amazon-bedrock": { options: { region: "us-east-1" } } } } }, ) +it.instance( + "Bedrock: preserves explicit DeepSeek model identifiers", + () => + Effect.gen(function* () { + yield* set("AWS_BEARER_TOKEN_BEDROCK", "test-bearer-token") + const provider = yield* Provider.Service + const deepseek = yield* provider.getLanguage( + yield* provider.getModel(ProviderV2.ID.amazonBedrock, ModelV2.ID.make("deepseek.v3.2")), + ) + const r1 = yield* provider.getLanguage( + yield* provider.getModel(ProviderV2.ID.amazonBedrock, ModelV2.ID.make("deepseek.r1-v1:0")), + ) + const profile = yield* provider.getLanguage( + yield* provider.getModel(ProviderV2.ID.amazonBedrock, ModelV2.ID.make("us.deepseek.r1-v1:0")), + ) + const arn = yield* provider.getLanguage( + yield* provider.getModel(ProviderV2.ID.amazonBedrock, ModelV2.ID.make("deepseek-v3-2-arn")), + ) + expect((deepseek as { modelId: string }).modelId).toBe("deepseek.v3.2") + expect((r1 as { modelId: string }).modelId).toBe("us.deepseek.r1-v1:0") + expect((profile as { modelId: string }).modelId).toBe("us.deepseek.r1-v1:0") + expect((arn as { modelId: string }).modelId).toBe("arn:aws:bedrock:us-east-1::foundation-model/deepseek.v3.2") + }), + { + config: { + provider: { + "amazon-bedrock": { + options: { region: "us-east-1" }, + models: { + "deepseek.v3.2": { name: "DeepSeek V3.2" }, + "deepseek.r1-v1:0": { name: "DeepSeek R1" }, + "us.deepseek.r1-v1:0": { name: "DeepSeek R1 US" }, + "deepseek-v3-2-arn": { + id: "arn:aws:bedrock:us-east-1::foundation-model/deepseek.v3.2", + name: "DeepSeek V3.2 ARN", + }, + }, + }, + }, + }, + }, +) + // Cross-region inference profile prefix handling. // Models from models.dev may come with prefixes already (e.g. us., eu., global.). // These should NOT be double-prefixed when passed to the SDK. From dff8fbc149fb7492e4f07b713ac31ea70d9a541c Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Tue, 8 Sep 2026 16:21:49 +0000 Subject: [PATCH 21/94] chore: generate --- packages/core/src/plugin/provider/amazon-bedrock.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/core/src/plugin/provider/amazon-bedrock.ts b/packages/core/src/plugin/provider/amazon-bedrock.ts index 1fb625c93612..7b830796d69f 100644 --- a/packages/core/src/plugin/provider/amazon-bedrock.ts +++ b/packages/core/src/plugin/provider/amazon-bedrock.ts @@ -21,9 +21,15 @@ function resolveModelID(modelID: string, region: string | undefined) { const resolvedRegion = region ?? "us-east-1" const regionPrefix = resolvedRegion.split("-")[0] if (regionPrefix === "us") { - const requiresPrefix = ["nova-micro", "nova-lite", "nova-pro", "nova-premier", "nova-2", "claude", "deepseek.r1"].some( - (item) => modelID.includes(item), - ) + const requiresPrefix = [ + "nova-micro", + "nova-lite", + "nova-pro", + "nova-premier", + "nova-2", + "claude", + "deepseek.r1", + ].some((item) => modelID.includes(item)) if (requiresPrefix && !resolvedRegion.startsWith("us-gov")) return `${regionPrefix}.${modelID}` return modelID } From 5cd8e68fdd72b27818d26d168b9c7a06b359567e Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Tue, 8 Sep 2026 21:27:13 -0500 Subject: [PATCH 22/94] feat(opencode): port Astra system prompt from v2 (#48057) --- .../opencode/src/session/prompt/gpt-astra.txt | 46 +++++++++++++++++++ packages/opencode/src/session/system.ts | 2 + 2 files changed, 48 insertions(+) create mode 100644 packages/opencode/src/session/prompt/gpt-astra.txt diff --git a/packages/opencode/src/session/prompt/gpt-astra.txt b/packages/opencode/src/session/prompt/gpt-astra.txt new file mode 100644 index 000000000000..1dba79282ac9 --- /dev/null +++ b/packages/opencode/src/session/prompt/gpt-astra.txt @@ -0,0 +1,46 @@ +You are an AI agent powered by OpenCode, a coding agent harness. Help the user accomplish their goals using the tools you have available. + +# Harness +- Responses are rendered as GitHub-flavored Markdown. +- `` blocks are harness instructions, not user-authored content. Read and follow them. +- Prefer parallelizing independent tool calls. +- Do not use a skill based solely on keywords, superficial relevance, or its availability. Avoid re-reading skills already available in the conversation unless needed. +- Prefer dedicated tools over shell commands; fall back to the shell when a tool cannot do what you need. +- Do not chain shell commands with separators like `echo "====";` or `printf '---'`; the output becomes noisy in a way that makes the user's side of the conversation worse. + +# Communication + +State the main point clearly and early. Keep responses clear and concise, and avoid unnecessary technical jargon. Use only as much structure as needed, and include technical detail only when it helps the conversation. Use clear file paths when referring to files. + +When describing your work, avoid adding what you won't do, what will remain unchanged, or how you'll separate or categorize results. Do not introduce unprompted alternatives through framing such as "X, not Y" or "This isn't about X. It's about Y." + +## Autonomy + +Infer the user's intent and your task scope from their instructions and the prior conversation context. You should bias towards action and carry out the user's intended task until it is completed. If the intent is unclear, progress towards the goal using the available information and ask for clarification while continuing independent work when possible. + +When the user's prompt indicates a request for action, such as "can you...", "I want to...", "help me..." and similar expressions, treat these as instructions to take action. Do not stop at acknowledging capability (e.g. "Yes…"), proposing a plan, or offering to continue. Do not settle for a partial or "helpful enough" solution to save time, effort, or tokens. Continue until the user's intended goal is fulfilled, even when it requires sustained work. + +## Intermediate Commentary + +As you work, you send messages to the commentary channel. These are how you collaborate with the user while you work: stating assumptions and providing updates. Keep them concise and quickly scannable, and send them only when they add real information, such as a discovery, a tradeoff, or a blocker. Do not narrate routine reads, searches, or edits. + +By default, treat new messages received during ongoing work as steering the active task rather than replacing it. Incorporate corrections and constraints, and answer questions briefly in commentary before continuing. Replace the task only when the user clearly cancels it or requests an incompatible objective. + +Do not put a final response, such as a blocking or clarifying question, in the commentary channel. The final answer must always be fully self-contained. + +## Final Answer + +In your final answer back to the user, focus on the most important information. + +# Working in codebases + +- Keep changes consistent with the structure, naming, style, and patterns of the surrounding code. +- Treat unfamiliar files or changes as potential user work and investigate before deleting or overwriting them. +- Do not introduce unsolicited warnings, disclaimers, approval flows, or safety/compliance checklists due to hypothetical risk. +- Do not write tests for reversible, low-impact changes or that mirror the implementation. If you do choose to verify your work with tests, make sure that the tests are meaningful and necessary to verify implementation. +- Run tests appropriate to the change and complete required checks. Once those pass, broaden or repeat testing only when new changes, failures, or unresolved concerns justify it; otherwise, continue toward completing the task. + + +# Delegation + +Do not spawn subagents unless the user or applicable AGENTS.md/skill instructions explicitly ask for subagents, delegation, or parallel agent work. diff --git a/packages/opencode/src/session/system.ts b/packages/opencode/src/session/system.ts index d0c608b203f6..61ab74d9f158 100644 --- a/packages/opencode/src/session/system.ts +++ b/packages/opencode/src/session/system.ts @@ -8,6 +8,7 @@ import PROMPT_DEFAULT from "./prompt/default.txt" import PROMPT_BEAST from "./prompt/beast.txt" import PROMPT_GEMINI from "./prompt/gemini.txt" import PROMPT_GPT from "./prompt/gpt.txt" +import PROMPT_ASTRA from "./prompt/gpt-astra.txt" import PROMPT_KIMI from "./prompt/kimi.txt" import PROMPT_META from "./prompt/meta.txt" @@ -32,6 +33,7 @@ export function provider(model: Provider.Model) { if (model.api.id.includes("gpt-4") || model.api.id.includes("o1") || model.api.id.includes("o3")) return [PROMPT_BEAST] if (model.api.id.includes("gpt")) { + if (model.api.id.includes("gpt-6")) return [PROMPT_ASTRA] if (model.api.id.includes("codex")) { return [PROMPT_CODEX] } From 830d5eb5354874105cc31599635a80c1662609e8 Mon Sep 17 00:00:00 2001 From: opencode Date: Wed, 9 Sep 2026 03:34:25 +0000 Subject: [PATCH 23/94] sync release versions for v1.18.30 --- bun.lock | 56 ++++++++++----------- packages/app/package.json | 2 +- packages/cli/package.json | 2 +- packages/codemode/package.json | 2 +- packages/console/app/package.json | 2 +- packages/console/core/package.json | 2 +- packages/console/function/package.json | 2 +- packages/console/mail/package.json | 2 +- packages/console/support/package.json | 2 +- packages/core/package.json | 2 +- packages/desktop/package.json | 2 +- packages/effect-drizzle-sqlite/package.json | 2 +- packages/effect-sqlite-node/package.json | 2 +- packages/enterprise/package.json | 2 +- packages/function/package.json | 2 +- packages/http-recorder/package.json | 2 +- packages/llm/package.json | 2 +- packages/opencode/package.json | 2 +- packages/plugin/package.json | 2 +- packages/sdk/js/package.json | 2 +- packages/server/package.json | 2 +- packages/session-ui/package.json | 2 +- packages/slack/package.json | 2 +- packages/stats/app/package.json | 2 +- packages/stats/core/package.json | 2 +- packages/stats/server/package.json | 2 +- packages/tui/package.json | 2 +- packages/ui/package.json | 2 +- packages/web/package.json | 2 +- sdks/vscode/package.json | 2 +- 30 files changed, 57 insertions(+), 57 deletions(-) diff --git a/bun.lock b/bun.lock index 0efe1b76b05f..efe01bf957f3 100644 --- a/bun.lock +++ b/bun.lock @@ -29,7 +29,7 @@ }, "packages/app": { "name": "@opencode-ai/app", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@corvu/drawer": "catalog:", "@dnd-kit/abstract": "0.5.0", @@ -96,7 +96,7 @@ }, "packages/cli": { "name": "@opencode-ai/cli", - "version": "1.18.29", + "version": "1.18.30", "bin": { "lildax": "./bin/lildax.cjs", }, @@ -144,7 +144,7 @@ }, "packages/codemode": { "name": "@opencode-ai/codemode", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "acorn": "8.15.0", "effect": "catalog:", @@ -158,7 +158,7 @@ }, "packages/console/app": { "name": "@opencode-ai/console-app", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@cloudflare/vite-plugin": "1.15.2", "@ibm/plex": "6.4.1", @@ -195,7 +195,7 @@ }, "packages/console/core": { "name": "@opencode-ai/console-core", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@aws-sdk/client-sts": "3.782.0", "@jsx-email/render": "1.1.1", @@ -222,7 +222,7 @@ }, "packages/console/function": { "name": "@opencode-ai/console-function", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@ai-sdk/anthropic": "3.0.82", "@ai-sdk/openai": "3.0.48", @@ -245,7 +245,7 @@ }, "packages/console/mail": { "name": "@opencode-ai/console-mail", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@jsx-email/all": "2.2.3", "@jsx-email/cli": "1.4.3", @@ -269,7 +269,7 @@ }, "packages/console/support": { "name": "@opencode-ai/console-support", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@cloudflare/vite-plugin": "1.15.2", "@opencode-ai/console-core": "workspace:*", @@ -289,7 +289,7 @@ }, "packages/core": { "name": "@opencode-ai/core", - "version": "1.18.29", + "version": "1.18.30", "bin": { "opencode": "./bin/opencode", }, @@ -383,7 +383,7 @@ }, "packages/desktop": { "name": "@opencode-ai/desktop", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@zip.js/zip.js": "2.7.62", "drizzle-orm": "catalog:", @@ -437,7 +437,7 @@ }, "packages/effect-drizzle-sqlite": { "name": "@opencode-ai/effect-drizzle-sqlite", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "drizzle-orm": "catalog:", "effect": "catalog:", @@ -451,7 +451,7 @@ }, "packages/effect-sqlite-node": { "name": "@opencode-ai/effect-sqlite-node", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "effect": "catalog:", }, @@ -463,7 +463,7 @@ }, "packages/enterprise": { "name": "@opencode-ai/enterprise", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@hono/standard-validator": "catalog:", "@opencode-ai/core": "workspace:*", @@ -495,7 +495,7 @@ }, "packages/function": { "name": "@opencode-ai/function", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@octokit/auth-app": "8.0.1", "@octokit/rest": "catalog:", @@ -511,7 +511,7 @@ }, "packages/http-recorder": { "name": "@opencode-ai/http-recorder", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@effect/platform-node": "4.0.0-beta.83", "@effect/platform-node-shared": "4.0.0-beta.83", @@ -542,7 +542,7 @@ }, "packages/llm": { "name": "@opencode-ai/llm", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@opencode-ai/schema": "workspace:*", "@smithy/eventstream-codec": "4.2.14", @@ -561,7 +561,7 @@ }, "packages/opencode": { "name": "opencode", - "version": "1.18.29", + "version": "1.18.30", "bin": { "opencode": "./bin/opencode", }, @@ -692,7 +692,7 @@ }, "packages/plugin": { "name": "@opencode-ai/plugin", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@ai-sdk/provider": "3.0.8", "@opencode-ai/sdk": "workspace:*", @@ -768,7 +768,7 @@ }, "packages/sdk/js": { "name": "@opencode-ai/sdk", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "cross-spawn": "catalog:", }, @@ -783,7 +783,7 @@ }, "packages/server": { "name": "@opencode-ai/server", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@opencode-ai/core": "workspace:*", "@opencode-ai/protocol": "workspace:*", @@ -798,7 +798,7 @@ }, "packages/session-ui": { "name": "@opencode-ai/session-ui", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@kobalte/core": "catalog:", "@opencode-ai/client": "file:../app/vendor/opencode-ai-client-1.17.13-v2.tgz", @@ -838,7 +838,7 @@ }, "packages/slack": { "name": "@opencode-ai/slack", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@opencode-ai/sdk": "workspace:*", "@slack/bolt": "^3.17.1", @@ -851,7 +851,7 @@ }, "packages/stats/app": { "name": "@opencode-ai/stats-app", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@ibm/plex": "6.4.1", "@kobalte/core": "catalog:", @@ -878,7 +878,7 @@ }, "packages/stats/core": { "name": "@opencode-ai/stats-core", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@aws-sdk/client-athena": "3.933.0", "@planetscale/database": "1.19.0", @@ -897,7 +897,7 @@ }, "packages/stats/server": { "name": "@opencode-ai/stats-server", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@aws-sdk/client-firehose": "3.933.0", "@effect/platform-node": "catalog:", @@ -939,7 +939,7 @@ }, "packages/tui": { "name": "@opencode-ai/tui", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@opencode-ai/core": "workspace:*", "@opencode-ai/plugin": "workspace:*", @@ -966,7 +966,7 @@ }, "packages/ui": { "name": "@opencode-ai/ui", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@kobalte/core": "catalog:", "@pierre/diffs": "catalog:", @@ -1017,7 +1017,7 @@ }, "packages/web": { "name": "@opencode-ai/web", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@astrojs/cloudflare": "12.6.3", "@astrojs/markdown-remark": "6.3.1", diff --git a/packages/app/package.json b/packages/app/package.json index 4accd2c499e1..17b356ed6087 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/app", - "version": "1.18.29", + "version": "1.18.30", "description": "", "type": "module", "exports": { diff --git a/packages/cli/package.json b/packages/cli/package.json index dc70e71ef439..f6dd6bf831f3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/cli", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "bin": { diff --git a/packages/codemode/package.json b/packages/codemode/package.json index 66f983ad82c9..c516b3a98589 100644 --- a/packages/codemode/package.json +++ b/packages/codemode/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/codemode", - "version": "1.18.29", + "version": "1.18.30", "description": "Effect-native confined code execution over schema-described tools", "private": true, "type": "module", diff --git a/packages/console/app/package.json b/packages/console/app/package.json index f5d06e24d772..3651594fd764 100644 --- a/packages/console/app/package.json +++ b/packages/console/app/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/console-app", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "scripts": { diff --git a/packages/console/core/package.json b/packages/console/core/package.json index 23aade046bde..19aade616d72 100644 --- a/packages/console/core/package.json +++ b/packages/console/core/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/console-core", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/console/function/package.json b/packages/console/function/package.json index 3a06de763e94..d77be8cb6a5f 100644 --- a/packages/console/function/package.json +++ b/packages/console/function/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/console-function", - "version": "1.18.29", + "version": "1.18.30", "$schema": "https://json.schemastore.org/package.json", "private": true, "type": "module", diff --git a/packages/console/mail/package.json b/packages/console/mail/package.json index cb4ceb404d54..e35574b3e9b9 100644 --- a/packages/console/mail/package.json +++ b/packages/console/mail/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/console-mail", - "version": "1.18.29", + "version": "1.18.30", "dependencies": { "@jsx-email/all": "2.2.3", "@jsx-email/cli": "1.4.3", diff --git a/packages/console/support/package.json b/packages/console/support/package.json index 815bfd644ae6..75e8e0714716 100644 --- a/packages/console/support/package.json +++ b/packages/console/support/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/console-support", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "scripts": { diff --git a/packages/core/package.json b/packages/core/package.json index daa4c4e91e3d..cc782f512e37 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/package.json", - "version": "1.18.29", + "version": "1.18.30", "name": "@opencode-ai/core", "type": "module", "license": "MIT", diff --git a/packages/desktop/package.json b/packages/desktop/package.json index e652a6a188df..7c55897b748a 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@opencode-ai/desktop", "private": true, - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "homepage": "https://opencode.ai", diff --git a/packages/effect-drizzle-sqlite/package.json b/packages/effect-drizzle-sqlite/package.json index 0ffa670143c6..35cc50f97d47 100644 --- a/packages/effect-drizzle-sqlite/package.json +++ b/packages/effect-drizzle-sqlite/package.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/package.json", - "version": "1.18.29", + "version": "1.18.30", "name": "@opencode-ai/effect-drizzle-sqlite", "type": "module", "license": "MIT", diff --git a/packages/effect-sqlite-node/package.json b/packages/effect-sqlite-node/package.json index 819f7c6d10e4..19d0652c1a65 100644 --- a/packages/effect-sqlite-node/package.json +++ b/packages/effect-sqlite-node/package.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/package.json", - "version": "1.18.29", + "version": "1.18.30", "name": "@opencode-ai/effect-sqlite-node", "type": "module", "license": "MIT", diff --git a/packages/enterprise/package.json b/packages/enterprise/package.json index 038a958579bb..9d61ae5eacfd 100644 --- a/packages/enterprise/package.json +++ b/packages/enterprise/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/enterprise", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/function/package.json b/packages/function/package.json index b8dfeca3d2c8..7d9bc6548b66 100644 --- a/packages/function/package.json +++ b/packages/function/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/function", - "version": "1.18.29", + "version": "1.18.30", "$schema": "https://json.schemastore.org/package.json", "private": true, "type": "module", diff --git a/packages/http-recorder/package.json b/packages/http-recorder/package.json index c12a30fe0c93..cc8ae63655f9 100644 --- a/packages/http-recorder/package.json +++ b/packages/http-recorder/package.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/package.json", - "version": "1.18.29", + "version": "1.18.30", "name": "@opencode-ai/http-recorder", "description": "Record and replay Effect HTTP client traffic with deterministic cassettes", "type": "module", diff --git a/packages/llm/package.json b/packages/llm/package.json index 7e541f197337..79471820d654 100644 --- a/packages/llm/package.json +++ b/packages/llm/package.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/package.json", - "version": "1.18.29", + "version": "1.18.30", "name": "@opencode-ai/llm", "type": "module", "license": "MIT", diff --git a/packages/opencode/package.json b/packages/opencode/package.json index d1aca264d548..c7c467037d10 100644 --- a/packages/opencode/package.json +++ b/packages/opencode/package.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/package.json", - "version": "1.18.29", + "version": "1.18.30", "name": "opencode", "type": "module", "license": "MIT", diff --git a/packages/plugin/package.json b/packages/plugin/package.json index 6af058c72090..d06914cdc8d2 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/plugin", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "scripts": { diff --git a/packages/sdk/js/package.json b/packages/sdk/js/package.json index e6fa0addcc14..9777184dfe38 100644 --- a/packages/sdk/js/package.json +++ b/packages/sdk/js/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/sdk", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "scripts": { diff --git a/packages/server/package.json b/packages/server/package.json index 3c016338dc33..04cb235ff640 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/server", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/session-ui/package.json b/packages/session-ui/package.json index 0c1c656bb503..7db27630da53 100644 --- a/packages/session-ui/package.json +++ b/packages/session-ui/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/session-ui", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/slack/package.json b/packages/slack/package.json index deb856fd5c6e..f1aa4602ba6d 100644 --- a/packages/slack/package.json +++ b/packages/slack/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/slack", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "scripts": { diff --git a/packages/stats/app/package.json b/packages/stats/app/package.json index 5340918954d4..20d56aa59676 100644 --- a/packages/stats/app/package.json +++ b/packages/stats/app/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/stats-app", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/stats/core/package.json b/packages/stats/core/package.json index 3da366c56760..d6ffa5fd65f4 100644 --- a/packages/stats/core/package.json +++ b/packages/stats/core/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/stats-core", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/stats/server/package.json b/packages/stats/server/package.json index 567ba2c21b45..27f5e23ec0fe 100644 --- a/packages/stats/server/package.json +++ b/packages/stats/server/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/stats-server", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/tui/package.json b/packages/tui/package.json index e57a9904d0dd..4b9b95b35e68 100644 --- a/packages/tui/package.json +++ b/packages/tui/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@opencode-ai/tui", - "version": "1.18.29", + "version": "1.18.30", "private": true, "type": "module", "license": "MIT", diff --git a/packages/ui/package.json b/packages/ui/package.json index eaa9b5a3f3ef..28dbce9ecabc 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@opencode-ai/ui", - "version": "1.18.29", + "version": "1.18.30", "type": "module", "license": "MIT", "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index 2401a7fb71cf..623f08dfca2e 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -2,7 +2,7 @@ "name": "@opencode-ai/web", "type": "module", "license": "MIT", - "version": "1.18.29", + "version": "1.18.30", "scripts": { "dev": "astro dev", "dev:remote": "VITE_API_URL=https://api.opencode.ai astro dev", diff --git a/sdks/vscode/package.json b/sdks/vscode/package.json index e1408de69851..5c43de80758e 100644 --- a/sdks/vscode/package.json +++ b/sdks/vscode/package.json @@ -2,7 +2,7 @@ "name": "opencode", "displayName": "opencode", "description": "opencode for VS Code", - "version": "1.18.29", + "version": "1.18.30", "publisher": "sst-dev", "repository": { "type": "git", From f69beceaffca94bed05a7669af93602125c37248 Mon Sep 17 00:00:00 2001 From: Jack Date: Wed, 9 Sep 2026 23:41:56 +0800 Subject: [PATCH 24/94] docs(go): update GLM-5.3-Flash allowance (#48130) --- .../app/src/component/limits-graph.tsx | 86 +++---------------- packages/console/app/src/i18n/ar.ts | 1 - packages/console/app/src/i18n/br.ts | 1 - packages/console/app/src/i18n/da.ts | 1 - packages/console/app/src/i18n/de.ts | 1 - packages/console/app/src/i18n/en.ts | 1 - packages/console/app/src/i18n/es.ts | 1 - packages/console/app/src/i18n/fr.ts | 1 - packages/console/app/src/i18n/it.ts | 1 - packages/console/app/src/i18n/ja.ts | 1 - packages/console/app/src/i18n/ko.ts | 1 - packages/console/app/src/i18n/no.ts | 1 - packages/console/app/src/i18n/pl.ts | 1 - packages/console/app/src/i18n/ru.ts | 1 - packages/console/app/src/i18n/th.ts | 1 - packages/console/app/src/i18n/tr.ts | 1 - packages/console/app/src/i18n/uk.ts | 1 - packages/console/app/src/i18n/zh.ts | 1 - packages/console/app/src/i18n/zht.ts | 1 - packages/console/app/src/routes/go/index.tsx | 6 -- packages/web/src/content/docs/ar/go.mdx | 4 +- packages/web/src/content/docs/bs/go.mdx | 4 +- packages/web/src/content/docs/da/go.mdx | 4 +- packages/web/src/content/docs/de/go.mdx | 4 +- packages/web/src/content/docs/es/go.mdx | 4 +- packages/web/src/content/docs/fr/go.mdx | 4 +- packages/web/src/content/docs/go.mdx | 4 +- packages/web/src/content/docs/it/go.mdx | 4 +- packages/web/src/content/docs/ja/go.mdx | 4 +- packages/web/src/content/docs/ko/go.mdx | 4 +- packages/web/src/content/docs/nb/go.mdx | 4 +- packages/web/src/content/docs/pl/go.mdx | 4 +- packages/web/src/content/docs/pt-br/go.mdx | 4 +- packages/web/src/content/docs/ru/go.mdx | 4 +- packages/web/src/content/docs/th/go.mdx | 4 +- packages/web/src/content/docs/tr/go.mdx | 4 +- packages/web/src/content/docs/zh-cn/go.mdx | 4 +- packages/web/src/content/docs/zh-tw/go.mdx | 4 +- 38 files changed, 50 insertions(+), 132 deletions(-) diff --git a/packages/console/app/src/component/limits-graph.tsx b/packages/console/app/src/component/limits-graph.tsx index 63ffeafaa7cc..aa9744ecbb8a 100644 --- a/packages/console/app/src/component/limits-graph.tsx +++ b/packages/console/app/src/component/limits-graph.tsx @@ -1,13 +1,9 @@ import { For, createSignal, onCleanup, onMount } from "solid-js" import { useI18n } from "~/context/i18n" -import { RollingNumber } from "./rolling-number" export function LimitsGraph(props: { href: string }) { let root!: HTMLElement const [visible, setVisible] = createSignal(false) - const [boosted, setBoosted] = createSignal(false) - const [promoted, setPromoted] = createSignal([]) - let timer: ReturnType | undefined const i18n = useI18n() @@ -15,14 +11,10 @@ export function LimitsGraph(props: { href: string }) { const motion = window.matchMedia("(prefers-reduced-motion: reduce)") const finish = () => { if (!motion.matches) return - clearTimeout(timer) setVisible(true) - setBoosted(true) - setPromoted(bonuses.map((model) => model.id)) } motion.addEventListener("change", finish) onCleanup(() => { - clearTimeout(timer) motion.removeEventListener("change", finish) }) if (motion.matches) return finish() @@ -46,18 +38,17 @@ export function LimitsGraph(props: { href: string }) { { id: "grok-4.6", name: "Grok 4.6", req: 169 }, { id: "hy4-preview", name: "Hy4 preview", req: 1350 }, { id: "gpt-5.6-luna", name: "GPT 5.6 Luna", req: 2050 }, - { id: "glm-5.3-flash", name: "GLM-5.3-Flash", req: 3160, baseReq: 1580, bonus: "2x usage" }, { id: "minimax-m3", name: "MiniMax M3", req: 3200 }, { id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300 }, { id: "hy3", name: "Hy3", req: 4300 }, { id: "qwen3.8-flash", name: "Qwen3.8 Flash", req: 5400 }, + { id: "glm-5.3-flash", name: "GLM-5.3-Flash", req: 6320 }, { id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", req: 7600 }, { id: "longcat-2.0", name: "LongCat-2.0", req: 11400 }, { id: "omen-alpha", name: "Omen Alpha", req: 11600 }, { id: "mimo-v2.5", name: "MiMo-V2.5", req: 30100 }, { id: "muse-spark-1.3-contributor", name: "Muse Spark 1.3 Contributor", req: 45300, edge: true }, ].map((model, index) => ({ ...model, d: `${50 + index * 25}ms` })) - const bonuses = graph.filter((model) => model.baseReq) const w = 1040 const chartW = 720 @@ -102,34 +93,13 @@ export function LimitsGraph(props: { href: string }) { const py = (n: number) => `${(n / h) * 100}%` const lx = px(left - 16) const ty = py(h - 18) - const timing = () => { - const style = getComputedStyle(root) - return { - duration: Number.parseFloat(style.getPropertyValue("--bonus-duration")), - easing: style.getPropertyValue("--spring-easing").trim(), - spinEasing: style.getPropertyValue("--digit-easing").trim(), - } - } return (
    { - if (!(event.target instanceof SVGElement) || event.animationName !== "go-graph-reveal") return - if (event.target.hasAttribute("data-stage-end") && !boosted()) { - const duration = Number.parseFloat(getComputedStyle(root).getPropertyValue("--reveal-duration")) - timer = setTimeout(() => setBoosted(true), duration * 0.6) - return - } - if (event.target.dataset.animate !== "bonus") return - const model = event.target.dataset.model - if (!model) return - setPromoted((current) => [...current, model]) - }} >
    {(m, i) => ( - <> - - {m.baseReq && ( - - )} - + )} @@ -213,25 +167,14 @@ export function LimitsGraph(props: { href: string }) { data-model={m.id} data-edge={"edge" in m ? "" : undefined} data-infinite={"infinite" in m ? "" : undefined} - data-promo={m.baseReq ? "" : undefined} style={{ - "--x": px("infinite" in m ? infiniteX : x(ratio(m.baseReq ?? m.req))), + "--x": px("infinite" in m ? infiniteX : x(ratio(m.req))), "--y": py(gy(i())), "--d": m.d, - "--bonus-delay": `${Math.max(0, bonuses.indexOf(m)) * 60}ms`, - "--travel": `${"infinite" in m ? 0 : ((x(ratio(m.req)) - x(ratio(m.baseReq ?? m.req))) / w) * 100}cqw`, }} > - {!("infinite" in m) && m.baseReq ? ( - - ) : ( - {"infinite" in m ? "\u221e" : m.req.toLocaleString()} - )} + {"infinite" in m ? "\u221e" : m.req.toLocaleString()} {m.name} {m.id === "muse-spark-1.3-contributor" && ( @@ -244,7 +187,6 @@ export function LimitsGraph(props: { href: string }) { )} {"infinite" in m && ({i18n.t("go.graph.limitedTime")})} - {"bonus" in m && {m.bonus}} )} diff --git a/packages/console/app/src/i18n/ar.ts b/packages/console/app/src/i18n/ar.ts index 54547d776216..2d792158741f 100644 --- a/packages/console/app/src/i18n/ar.ts +++ b/packages/console/app/src/i18n/ar.ts @@ -256,7 +256,6 @@ export const dict = { "zen.privacy.exceptionsLink": "الاستثناءات التالية", "go.title": "OpenCode Go | نماذج برمجة منخفضة التكلفة للجميع", - "go.banner.text": "يحصل GLM-5.3-Flash على حدود استخدام مضاعفة لفترة محدودة", "go.meta.description": "يبلغ سعر Go ‏$10/شهر، مع حدود استخدام سخية ووصول موثوق إلى نماذج البرمجة الرائدة.", "go.hero.title": "نماذج برمجة منخفضة التكلفة للجميع", "go.hero.body": diff --git a/packages/console/app/src/i18n/br.ts b/packages/console/app/src/i18n/br.ts index a0ead2369689..ded260326811 100644 --- a/packages/console/app/src/i18n/br.ts +++ b/packages/console/app/src/i18n/br.ts @@ -260,7 +260,6 @@ export const dict = { "zen.privacy.exceptionsLink": "seguintes exceções", "go.title": "OpenCode Go | Modelos de codificação de baixo custo para todos", - "go.banner.text": "GLM-5.3-Flash tem limites de uso 2x maiores por tempo limitado", "go.meta.description": "O Go custa $10/mês, com limites generosos de uso e acesso confiável aos principais modelos de codificação.", "go.hero.title": "Modelos de codificação de baixo custo para todos", diff --git a/packages/console/app/src/i18n/da.ts b/packages/console/app/src/i18n/da.ts index 3f659a2181ca..de296cb0f555 100644 --- a/packages/console/app/src/i18n/da.ts +++ b/packages/console/app/src/i18n/da.ts @@ -258,7 +258,6 @@ export const dict = { "zen.privacy.exceptionsLink": "følgende undtagelser", "go.title": "OpenCode Go | Kodningsmodeller til lav pris for alle", - "go.banner.text": "GLM-5.3-Flash får fordoblet brugsgrænse i en begrænset periode", "go.meta.description": "Go koster $10/måned, med generøse brugsgrænser og pålidelig adgang til førende kodningsmodeller.", "go.hero.title": "Kodningsmodeller til lav pris for alle", diff --git a/packages/console/app/src/i18n/de.ts b/packages/console/app/src/i18n/de.ts index dbb97d89a88d..898a9d87a33a 100644 --- a/packages/console/app/src/i18n/de.ts +++ b/packages/console/app/src/i18n/de.ts @@ -260,7 +260,6 @@ export const dict = { "zen.privacy.exceptionsLink": "folgenden Ausnahmen", "go.title": "OpenCode Go | Kostengünstige Coding-Modelle für alle", - "go.banner.text": "GLM-5.3-Flash erhält für begrenzte Zeit 2x Nutzungslimits", "go.meta.description": "Go kostet $10/Monat, mit großzügigen Nutzungslimits und zuverlässigem Zugang zu führenden Coding-Modellen.", "go.hero.title": "Kostengünstige Coding-Modelle für alle", diff --git a/packages/console/app/src/i18n/en.ts b/packages/console/app/src/i18n/en.ts index e39b42eb761f..1031a72e706a 100644 --- a/packages/console/app/src/i18n/en.ts +++ b/packages/console/app/src/i18n/en.ts @@ -256,7 +256,6 @@ export const dict = { "zen.privacy.exceptionsLink": "following exceptions", "go.title": "OpenCode Go | Low cost coding models for everyone", - "go.banner.text": "GLM-5.3-Flash gets 2× usage limits for a limited time", "go.meta.description": "Go costs $10/month, with generous usage limits and reliable access to leading coding models.", "go.hero.title": "Low cost coding models for everyone", "go.hero.body": diff --git a/packages/console/app/src/i18n/es.ts b/packages/console/app/src/i18n/es.ts index 47fc8a446139..4e3d5cd41cb1 100644 --- a/packages/console/app/src/i18n/es.ts +++ b/packages/console/app/src/i18n/es.ts @@ -261,7 +261,6 @@ export const dict = { "zen.privacy.exceptionsLink": "siguientes excepciones", "go.title": "OpenCode Go | Modelos de programación de bajo coste para todos", - "go.banner.text": "GLM-5.3-Flash tiene límites de uso 2x mayores por tiempo limitado", "go.meta.description": "Go cuesta 10 $/mes, con límites de uso generosos y acceso fiable a modelos de programación líderes.", "go.hero.title": "Modelos de programación de bajo coste para todos", diff --git a/packages/console/app/src/i18n/fr.ts b/packages/console/app/src/i18n/fr.ts index e5a913315177..fa1de59ee967 100644 --- a/packages/console/app/src/i18n/fr.ts +++ b/packages/console/app/src/i18n/fr.ts @@ -262,7 +262,6 @@ export const dict = { "zen.privacy.exceptionsLink": "exceptions suivantes", "go.title": "OpenCode Go | Modèles de code à faible coût pour tous", - "go.banner.text": "GLM-5.3-Flash bénéficie de limites d’utilisation 2x supérieures pour une durée limitée", "go.meta.description": "Go coûte 10 $/mois, avec des limites d'utilisation généreuses et un accès fiable aux principaux modèles de codage.", "go.hero.title": "Modèles de code à faible coût pour tous", diff --git a/packages/console/app/src/i18n/it.ts b/packages/console/app/src/i18n/it.ts index 9b4d200043e5..0c81b6e94e14 100644 --- a/packages/console/app/src/i18n/it.ts +++ b/packages/console/app/src/i18n/it.ts @@ -258,7 +258,6 @@ export const dict = { "zen.privacy.exceptionsLink": "seguenti eccezioni", "go.title": "OpenCode Go | Modelli di coding a basso costo per tutti", - "go.banner.text": "GLM-5.3-Flash offre limiti di utilizzo 2x superiori per un periodo limitato", "go.meta.description": "Go costa $10/mese, con limiti di utilizzo generosi e un accesso affidabile ai principali modelli di coding.", "go.hero.title": "Modelli di coding a basso costo per tutti", diff --git a/packages/console/app/src/i18n/ja.ts b/packages/console/app/src/i18n/ja.ts index de390eb6df34..534f8a95e948 100644 --- a/packages/console/app/src/i18n/ja.ts +++ b/packages/console/app/src/i18n/ja.ts @@ -257,7 +257,6 @@ export const dict = { "zen.privacy.exceptionsLink": "以下の例外", "go.title": "OpenCode Go | すべての人のための低価格なコーディングモデル", - "go.banner.text": "GLM-5.3-Flashの利用上限が期間限定で2倍に", "go.meta.description": "Goは月額$10で、主要なコーディングモデルへのゆとりある利用上限と安定したアクセスを提供します。", "go.hero.title": "すべての人のための低価格なコーディングモデル", diff --git a/packages/console/app/src/i18n/ko.ts b/packages/console/app/src/i18n/ko.ts index ea4a0a5da717..f480675c9f48 100644 --- a/packages/console/app/src/i18n/ko.ts +++ b/packages/console/app/src/i18n/ko.ts @@ -254,7 +254,6 @@ export const dict = { "zen.privacy.exceptionsLink": "다음 예외", "go.title": "OpenCode Go | 모두를 위한 저비용 코딩 모델", - "go.banner.text": "GLM-5.3-Flash 사용 한도가 한시적으로 2배 확대됩니다", "go.meta.description": "Go는 월 $10이며, 넉넉한 사용 한도와 주요 코딩 모델에 대한 안정적인 액세스를 제공합니다.", "go.hero.title": "모두를 위한 저비용 코딩 모델", "go.hero.body": diff --git a/packages/console/app/src/i18n/no.ts b/packages/console/app/src/i18n/no.ts index 606f613dcd11..95fd5f5e9c42 100644 --- a/packages/console/app/src/i18n/no.ts +++ b/packages/console/app/src/i18n/no.ts @@ -258,7 +258,6 @@ export const dict = { "zen.privacy.exceptionsLink": "følgende unntak", "go.title": "OpenCode Go | Rimelige kodemodeller for alle", - "go.banner.text": "GLM-5.3-Flash får 2x bruksgrense i en begrenset periode", "go.meta.description": "Go koster $10/måned, med sjenerøse bruksgrenser og pålitelig tilgang til ledende kodemodeller.", "go.hero.title": "Rimelige kodemodeller for alle", diff --git a/packages/console/app/src/i18n/pl.ts b/packages/console/app/src/i18n/pl.ts index 30614954c052..b27528fc23cf 100644 --- a/packages/console/app/src/i18n/pl.ts +++ b/packages/console/app/src/i18n/pl.ts @@ -259,7 +259,6 @@ export const dict = { "zen.privacy.exceptionsLink": "następującymi wyjątkami", "go.title": "OpenCode Go | Niskokosztowe modele do kodowania dla każdego", - "go.banner.text": "GLM-5.3-Flash oferuje 2x wyższe limity użycia przez ograniczony czas", "go.meta.description": "Go kosztuje $10/miesiąc, oferując hojne limity użycia i niezawodny dostęp do wiodących modeli do kodowania.", "go.hero.title": "Niskokosztowe modele do kodowania dla każdego", diff --git a/packages/console/app/src/i18n/ru.ts b/packages/console/app/src/i18n/ru.ts index 040c84c635e1..d2154ef83012 100644 --- a/packages/console/app/src/i18n/ru.ts +++ b/packages/console/app/src/i18n/ru.ts @@ -262,7 +262,6 @@ export const dict = { "zen.privacy.exceptionsLink": "следующими исключениями", "go.title": "OpenCode Go | Недорогие модели для кодинга для всех", - "go.banner.text": "GLM-5.3-Flash получает 2x лимиты использования на ограниченное время", "go.meta.description": "Go стоит $10/месяц и предлагает щедрые лимиты использования и надежный доступ к ведущим моделям для кодинга.", "go.hero.title": "Недорогие модели для кодинга для всех", diff --git a/packages/console/app/src/i18n/th.ts b/packages/console/app/src/i18n/th.ts index 16219983c969..9b1f78f52a45 100644 --- a/packages/console/app/src/i18n/th.ts +++ b/packages/console/app/src/i18n/th.ts @@ -257,7 +257,6 @@ export const dict = { "zen.privacy.exceptionsLink": "ข้อยกเว้นดังนี้", "go.title": "OpenCode Go | โมเดลเขียนโค้ดราคาประหยัดสำหรับทุกคน", - "go.banner.text": "GLM-5.3-Flash เพิ่มโควตาการใช้งานเป็น 2 เท่าในช่วงเวลาจำกัด", "go.meta.description": "Go มีราคา $10/เดือน พร้อมขีดจำกัดการใช้งานที่เอื้อเฟื้อและการเข้าถึงโมเดลเขียนโค้ดชั้นนำอย่างเชื่อถือได้", "go.hero.title": "โมเดลเขียนโค้ดราคาประหยัดสำหรับทุกคน", diff --git a/packages/console/app/src/i18n/tr.ts b/packages/console/app/src/i18n/tr.ts index b43320093ec5..49f7a788cb7b 100644 --- a/packages/console/app/src/i18n/tr.ts +++ b/packages/console/app/src/i18n/tr.ts @@ -260,7 +260,6 @@ export const dict = { "zen.privacy.exceptionsLink": "aşağıdaki istisnalar", "go.title": "OpenCode Go | Herkes için düşük maliyetli kodlama modelleri", - "go.banner.text": "GLM-5.3-Flash sınırlı bir süre için 2x kullanım limiti sunuyor", "go.meta.description": "Go ayda 10$'dır; cömert kullanım limitleri ve önde gelen kodlama modellerine güvenilir erişim sunar.", "go.hero.title": "Herkes için düşük maliyetli kodlama modelleri", diff --git a/packages/console/app/src/i18n/uk.ts b/packages/console/app/src/i18n/uk.ts index 8b2aafc7ab98..d3002ad84854 100644 --- a/packages/console/app/src/i18n/uk.ts +++ b/packages/console/app/src/i18n/uk.ts @@ -258,7 +258,6 @@ export const dict = { "zen.privacy.exceptionsLink": "такими винятками", "go.title": "OpenCode Go | Недорогі моделі кодування для всіх", - "go.banner.text": "GLM-5.3-Flash отримує 2x ліміти використання протягом обмеженого часу", "go.meta.description": "Go коштує $10/місяць, зі щедрими лімітами використання та надійним доступом до провідних моделей для кодування.", "go.hero.title": "Недорогі моделі кодування для всіх", diff --git a/packages/console/app/src/i18n/zh.ts b/packages/console/app/src/i18n/zh.ts index 4e10ae5d2003..ec6173e2a29a 100644 --- a/packages/console/app/src/i18n/zh.ts +++ b/packages/console/app/src/i18n/zh.ts @@ -248,7 +248,6 @@ export const dict = { "zen.privacy.exceptionsLink": "以下例外情况除外", "go.title": "OpenCode Go | 人人可用的低成本编程模型", - "go.banner.text": "GLM-5.3-Flash 限时享受 2 倍使用额度", "go.meta.description": "Go 每月 $10,提供充裕的使用限额,并可可靠访问领先的编程模型。", "go.hero.title": "人人可用的低成本编程模型", "go.hero.body": diff --git a/packages/console/app/src/i18n/zht.ts b/packages/console/app/src/i18n/zht.ts index 81a8cf7196f3..c088b268d8cf 100644 --- a/packages/console/app/src/i18n/zht.ts +++ b/packages/console/app/src/i18n/zht.ts @@ -247,7 +247,6 @@ export const dict = { "zen.privacy.exceptionsLink": "以下例外情況", "go.title": "OpenCode Go | 低成本全民編碼模型", - "go.banner.text": "GLM-5.3-Flash 限時享有 2 倍使用額度", "go.meta.description": "Go 每月 $10,提供充裕的使用限額,並可穩定存取領先的編碼模型。", "go.hero.title": "低成本全民編碼模型", "go.hero.body": diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index a0789ce65f96..59bbea8fcbfc 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -79,12 +79,6 @@ export default function Home() {
    -
    - {i18n.t("home.banner.badge")} -
    - {i18n.t("go.banner.text")} -
    -
    diff --git a/packages/web/src/content/docs/ar/go.mdx b/packages/web/src/content/docs/ar/go.mdx index a1551aa21e4d..bb085bd4a4f0 100644 --- a/packages/web/src/content/docs/ar/go.mdx +++ b/packages/web/src/content/docs/ar/go.mdx @@ -140,7 +140,7 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر | ---------------------------- | ------------------- | ------------------ | ---------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -201,7 +201,7 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/bs/go.mdx b/packages/web/src/content/docs/bs/go.mdx index e81627d99470..58feac308c7b 100644 --- a/packages/web/src/content/docs/bs/go.mdx +++ b/packages/web/src/content/docs/bs/go.mdx @@ -150,7 +150,7 @@ Tabela ispod pruža procijenjeni broj zahtjeva na osnovu tipičnih obrazaca kori | ---------------------------- | ------------------ | ----------------- | ----------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ Procjene se također zasnivaju na sljedećim cijenama po 1M tokena i mjesečnoj | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/da/go.mdx b/packages/web/src/content/docs/da/go.mdx index bfe8da867e95..663140b9b1da 100644 --- a/packages/web/src/content/docs/da/go.mdx +++ b/packages/web/src/content/docs/da/go.mdx @@ -150,7 +150,7 @@ Tabellen nedenfor giver et estimeret antal anmodninger baseret på typiske Go-fo | ---------------------------- | ----------------------- | ------------------- | --------------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ Estimaterne er også baseret på følgende priser pr. 1M tokens og det månedlig | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/de/go.mdx b/packages/web/src/content/docs/de/go.mdx index dd37155b818d..cac9b3d6e94e 100644 --- a/packages/web/src/content/docs/de/go.mdx +++ b/packages/web/src/content/docs/de/go.mdx @@ -142,7 +142,7 @@ Die folgende Tabelle zeigt eine geschätzte Anzahl von Anfragen basierend auf ty | ---------------------------- | ---------------------- | ------------------ | ------------------ | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -203,7 +203,7 @@ Die Schätzungen basieren außerdem auf den folgenden Preisen pro 1M Tokens und | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/es/go.mdx b/packages/web/src/content/docs/es/go.mdx index de8405114971..4f120adb5dea 100644 --- a/packages/web/src/content/docs/es/go.mdx +++ b/packages/web/src/content/docs/es/go.mdx @@ -150,7 +150,7 @@ La siguiente tabla proporciona una cantidad estimada de peticiones basada en los | ---------------------------- | ---------------------- | --------------------- | ------------------ | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ Las estimaciones también se basan en los siguientes precios por 1M tokens y en | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/fr/go.mdx b/packages/web/src/content/docs/fr/go.mdx index 97f3ecd00518..06c4452afc72 100644 --- a/packages/web/src/content/docs/fr/go.mdx +++ b/packages/web/src/content/docs/fr/go.mdx @@ -140,7 +140,7 @@ Le tableau ci-dessous fournit une estimation du nombre de requêtes basée sur d | ---------------------------- | --------------------- | -------------------- | ----------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -201,7 +201,7 @@ Les estimations sont également basées sur les prix suivants par 1M tokens et s | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index ba4c06be2c48..ea3dfd047a5f 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -150,7 +150,7 @@ The table below provides an estimated request count based on typical Go usage pa | ---------------------------- | ------------------- | ----------------- | ------------------ | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ The estimates are also based on the following prices per 1M tokens and the month | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/it/go.mdx b/packages/web/src/content/docs/it/go.mdx index 88491dc1b06f..581a46b244dc 100644 --- a/packages/web/src/content/docs/it/go.mdx +++ b/packages/web/src/content/docs/it/go.mdx @@ -148,7 +148,7 @@ La tabella seguente fornisce una stima del conteggio delle richieste in base a p | ---------------------------- | -------------------- | --------------------- | ----------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -209,7 +209,7 @@ Le stime si basano anche sui seguenti prezzi per 1M token e sull'utilizzo mensil | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/ja/go.mdx b/packages/web/src/content/docs/ja/go.mdx index edaaf32d413a..a7b402f0c7c7 100644 --- a/packages/web/src/content/docs/ja/go.mdx +++ b/packages/web/src/content/docs/ja/go.mdx @@ -137,7 +137,7 @@ OpenCode Goには以下の基本制限が含まれています: | ---------------------------- | ------------------------- | ---------------- | ---------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -198,7 +198,7 @@ OpenCode Goには以下の基本制限が含まれています: | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/ko/go.mdx b/packages/web/src/content/docs/ko/go.mdx index 76770bdfd488..5f35bef2c05d 100644 --- a/packages/web/src/content/docs/ko/go.mdx +++ b/packages/web/src/content/docs/ko/go.mdx @@ -137,7 +137,7 @@ OpenCode Go에는 다음과 같은 기본 한도가 포함됩니다. | ---------------------------- | ----------------- | -------------- | -------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -198,7 +198,7 @@ OpenCode Go에는 다음과 같은 기본 한도가 포함됩니다. | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/nb/go.mdx b/packages/web/src/content/docs/nb/go.mdx index 29d41be06170..44c019f31987 100644 --- a/packages/web/src/content/docs/nb/go.mdx +++ b/packages/web/src/content/docs/nb/go.mdx @@ -150,7 +150,7 @@ Tabellen nedenfor gir et estimert antall forespørsler basert på typiske bruksm | ---------------------------- | ------------------------ | -------------------- | ---------------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ Estimatene er også basert på følgende priser per 1M tokens og den månedlige | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/pl/go.mdx b/packages/web/src/content/docs/pl/go.mdx index bc89ca4eed96..3e8213b8aeec 100644 --- a/packages/web/src/content/docs/pl/go.mdx +++ b/packages/web/src/content/docs/pl/go.mdx @@ -144,7 +144,7 @@ Poniższa tabela przedstawia szacunkową liczbę żądań na podstawie typowych | ---------------------------- | ------------------- | ------------------ | ------------------ | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -205,7 +205,7 @@ Szacunki opierają się również na następujących cenach za 1M tokenów oraz | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/pt-br/go.mdx b/packages/web/src/content/docs/pt-br/go.mdx index 140166856e3c..98cef1325a66 100644 --- a/packages/web/src/content/docs/pt-br/go.mdx +++ b/packages/web/src/content/docs/pt-br/go.mdx @@ -150,7 +150,7 @@ A tabela abaixo fornece uma contagem estimada de requisições com base nos padr | ---------------------------- | ----------------------- | ---------------------- | ------------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ As estimativas também se baseiam nos seguintes preços por 1M tokens e no uso m | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/ru/go.mdx b/packages/web/src/content/docs/ru/go.mdx index 22337f326a4e..0e8842d1484a 100644 --- a/packages/web/src/content/docs/ru/go.mdx +++ b/packages/web/src/content/docs/ru/go.mdx @@ -150,7 +150,7 @@ OpenCode Go включает следующие базовые лимиты: | ---------------------------- | ------------------- | ----------------- | ---------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -211,7 +211,7 @@ OpenCode Go включает следующие базовые лимиты: | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/th/go.mdx b/packages/web/src/content/docs/th/go.mdx index 29f5448a4d80..dfaa30d69e0b 100644 --- a/packages/web/src/content/docs/th/go.mdx +++ b/packages/web/src/content/docs/th/go.mdx @@ -137,7 +137,7 @@ OpenCode Go มีขีดจำกัดพื้นฐานดังต่ | ---------------------------- | ---------------------- | ------------------- | ----------------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -198,7 +198,7 @@ OpenCode Go มีขีดจำกัดพื้นฐานดังต่ | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/tr/go.mdx b/packages/web/src/content/docs/tr/go.mdx index 764de377cfd3..1b6a41b45325 100644 --- a/packages/web/src/content/docs/tr/go.mdx +++ b/packages/web/src/content/docs/tr/go.mdx @@ -137,7 +137,7 @@ Aşağıdaki tablo, tipik Go kullanım modellerine dayalı tahmini bir istek say | ---------------------------- | ------------------ | -------------- | ----------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -198,7 +198,7 @@ Tahminler ayrıca 1M token başına aşağıdaki fiyatlara ve her modelle birlik | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/zh-cn/go.mdx b/packages/web/src/content/docs/zh-cn/go.mdx index 60ac0cf1eae6..539fa1328743 100644 --- a/packages/web/src/content/docs/zh-cn/go.mdx +++ b/packages/web/src/content/docs/zh-cn/go.mdx @@ -136,7 +136,7 @@ OpenCode Go 包含以下基础限制: | ---------------------------- | --------------- | ---------- | ---------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -197,7 +197,7 @@ OpenCode Go 包含以下基础限制: | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | diff --git a/packages/web/src/content/docs/zh-tw/go.mdx b/packages/web/src/content/docs/zh-tw/go.mdx index e81efc392cdf..cd5e690af914 100644 --- a/packages/web/src/content/docs/zh-tw/go.mdx +++ b/packages/web/src/content/docs/zh-tw/go.mdx @@ -136,7 +136,7 @@ OpenCode Go 包含以下基準限制: | ---------------------------- | --------------- | ---------- | ---------- | | Grok 4.6 | 169 | 423 | 845 | | GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 1,580 | 3,950 | 7,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | | GLM-5.1 | 880 | 2,150 | 4,300 | @@ -197,7 +197,7 @@ OpenCode Go 包含以下基準限制: | Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | | GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | | GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $15 | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | | GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | | GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | From 9f8db119fcbd4999379129ac7734375ac23460fb Mon Sep 17 00:00:00 2001 From: Victor Navarro Date: Wed, 9 Sep 2026 19:45:38 +0200 Subject: [PATCH 25/94] feat(console): route migrated Go inference (#48123) --- .../console/app/src/lib/inference-proxy.ts | 35 ++++++++++++++++--- .../app/src/routes/zen/go/v1/models.ts | 5 ++- .../console/app/src/routes/zen/go/v1/usage.ts | 3 ++ .../app/src/routes/zen/util/handler.ts | 16 ++++----- .../console/app/src/routes/zen/v1/models.ts | 32 ++--------------- 5 files changed, 47 insertions(+), 44 deletions(-) diff --git a/packages/console/app/src/lib/inference-proxy.ts b/packages/console/app/src/lib/inference-proxy.ts index 7de73a961ac8..b572c361b655 100644 --- a/packages/console/app/src/lib/inference-proxy.ts +++ b/packages/console/app/src/lib/inference-proxy.ts @@ -8,11 +8,17 @@ const paths: Record = { "POST /zen/v1/chat/completions": "/openai/v1/chat/completions", "POST /zen/v1/responses": "/openai/v1/responses", "POST /zen/v1/messages": "/anthropic/v1/messages", + "POST /zen/go/v1/chat/completions": "/go/openai/v1/chat/completions", + "POST /zen/go/v1/responses": "/go/openai/v1/responses", + "POST /zen/go/v1/messages": "/go/anthropic/v1/messages", + "GET /zen/v1/models": "/v1/models", + "GET /zen/go/v1/models": "/go/v1/models", + "GET /zen/go/v1/usage": "/go/v1/usage", } export async function proxyInference( request: Request, - generation: { + generation?: { provider?: "openai" | "anthropic" | "google" /** The provider's native model ID, not the public Zen alias. */ model?: string @@ -28,7 +34,8 @@ export async function proxyInference( : undefined) if (!path) return undefined - const key = path.startsWith("/anthropic/") + const go = url.pathname.startsWith("/zen/go/") + const key = url.pathname.endsWith("/messages") ? request.headers.get("x-api-key") : path.startsWith("/google/") ? request.headers.get("x-goog-api-key") @@ -47,7 +54,7 @@ export async function proxyInference( .innerJoin(WorkspaceTable, eq(WorkspaceTable.id, KeyTable.workspaceID)) .leftJoin( ProviderTable, - generation.provider + !go && generation?.provider ? and( eq(ProviderTable.workspaceID, KeyTable.workspaceID), eq(ProviderTable.provider, generation.provider), @@ -61,7 +68,7 @@ export async function proxyInference( .then((rows) => rows[0]), ) if (!workspace?.migratedAt) return undefined - const model = workspace.provider ? generation.model : undefined + const model = workspace.provider ? generation?.model : undefined if (workspace.provider && !model) throw new Error("Legacy BYOK model mapping is unavailable") const destination = new URL(Resource.ConsoleMigration.inferenceUrl) @@ -80,8 +87,19 @@ export async function proxyInference( // Model extraction has already read part of the body; forward its replay stream. const forwarded = new Request( destination, - new Request(request, { method: request.method, body: generation.body(model) }), + generation ? new Request(request, { method: request.method, body: generation.body(model) }) : request, ) + // Migrated requests use ordinary destination authentication and accounting. + for (const name of [ + "x-zen", + "x-zen-model", + "x-zen-ip", + "cf-access-client-id", + "cf-access-client-secret", + "host", + "content-length", + ]) + forwarded.headers.delete(name) forwarded.headers.set("authorization", `Bearer ${key}`) const ip = request.headers.get("cf-connecting-ip") if (ip) forwarded.headers.set("x-real-ip", ip) @@ -90,3 +108,10 @@ export async function proxyInference( return fetch(forwarded, { redirect: "manual" }) } + +export function inferenceUnavailable() { + return Response.json( + { error: { type: "api_error", message: "Inference routing is unavailable. Please retry later." } }, + { status: 503, headers: { "Cache-Control": "no-store" } }, + ) +} diff --git a/packages/console/app/src/routes/zen/go/v1/models.ts b/packages/console/app/src/routes/zen/go/v1/models.ts index 83ef74fb6148..dfc7b87ec34a 100644 --- a/packages/console/app/src/routes/zen/go/v1/models.ts +++ b/packages/console/app/src/routes/zen/go/v1/models.ts @@ -1,12 +1,15 @@ import type { APIEvent } from "@solidjs/start/server" import { ZenData } from "@opencode-ai/console-core/model.js" import { buildModelsResponse, buildOptionsResponse } from "../../util/modelsHandler" +import { inferenceUnavailable, proxyInference } from "~/lib/inference-proxy" export async function OPTIONS(_input: APIEvent) { return buildOptionsResponse() } -export async function GET(_input: APIEvent) { +export async function GET(input: APIEvent) { + const response = await proxyInference(input.request).catch(inferenceUnavailable) + if (response) return response const models = Object.keys(ZenData.list("lite").models) return buildModelsResponse(models) } diff --git a/packages/console/app/src/routes/zen/go/v1/usage.ts b/packages/console/app/src/routes/zen/go/v1/usage.ts index c16851dc78ff..a41373f1aae6 100644 --- a/packages/console/app/src/routes/zen/go/v1/usage.ts +++ b/packages/console/app/src/routes/zen/go/v1/usage.ts @@ -6,8 +6,11 @@ import { UserTable } from "@opencode-ai/console-core/schema/user.sql.js" import { WorkspaceTable } from "@opencode-ai/console-core/schema/workspace.sql.js" import { LiteData } from "@opencode-ai/console-core/lite.js" import { Subscription } from "@opencode-ai/console-core/subscription.js" +import { inferenceUnavailable, proxyInference } from "~/lib/inference-proxy" export async function GET(input: APIEvent) { + const response = await proxyInference(input.request).catch(inferenceUnavailable) + if (response) return response const apiKey = input.request.headers.get("authorization")?.match(/^Bearer (\S+)$/)?.[1] if (!apiKey) { diff --git a/packages/console/app/src/routes/zen/util/handler.ts b/packages/console/app/src/routes/zen/util/handler.ts index d5e2fd811ea2..ee223498cae9 100644 --- a/packages/console/app/src/routes/zen/util/handler.ts +++ b/packages/console/app/src/routes/zen/util/handler.ts @@ -50,7 +50,7 @@ import { countryFromRequest, isModelCountryRestricted } from "~/lib/request-coun import { isPeakPricing } from "./pricing" import { prepareRequestBody } from "./requestBody" import { requiresGoTrainingConsent } from "./trainingConsent" -import { proxyInference } from "~/lib/inference-proxy" +import { inferenceUnavailable, proxyInference } from "~/lib/inference-proxy" type ZenData = Awaited> type PreparedBody = Awaited> @@ -102,22 +102,22 @@ export async function handler( const rawZenApiKey = opts.parseApiKey(input.request.headers) const zenApiKey = rawZenApiKey === "public" ? undefined : rawZenApiKey const zenData = ZenData.list(opts.modelList) - if (opts.modelList === "full" && model) { + if (model) { // Read routing metadata without running legacy model, auth, or balance checks. const configured = zenData.models[model] const entry = Array.isArray(configured) ? configured.find((entry) => entry.formatFilter === opts.format) : configured const response = await proxyInference(input.request, { - provider: entry?.byokProvider, - model: entry?.providers.find((provider) => provider.id === entry.byokProvider)?.model, + provider: opts.modelList === "full" ? entry?.byokProvider : undefined, + model: + opts.modelList === "full" + ? entry?.providers.find((provider) => provider.id === entry.byokProvider)?.model + : undefined, body: (providerModel) => requestBody?.stream(providerModel ?? model, false) ?? body, }).catch(() => { void (requestBody ? requestBody.cancel() : body.cancel()).catch(() => {}) - return Response.json( - { error: { type: "api_error", message: "Inference routing is unavailable. Please retry later." } }, - { status: 503, headers: { "Cache-Control": "no-store" } }, - ) + return inferenceUnavailable() }) if (response) return response } diff --git a/packages/console/app/src/routes/zen/v1/models.ts b/packages/console/app/src/routes/zen/v1/models.ts index 262a1bb349fe..c1505b899cf3 100644 --- a/packages/console/app/src/routes/zen/v1/models.ts +++ b/packages/console/app/src/routes/zen/v1/models.ts @@ -5,7 +5,7 @@ import { KeyTable } from "@opencode-ai/console-core/schema/key.sql.js" import { WorkspaceTable } from "@opencode-ai/console-core/schema/workspace.sql.js" import { ModelTable } from "@opencode-ai/console-core/schema/model.sql.js" import { buildOptionsResponse, buildModelsResponse } from "~/routes/zen/util/modelsHandler" -import { Resource } from "@opencode-ai/console-resource" +import { inferenceUnavailable, proxyInference } from "~/lib/inference-proxy" export async function OPTIONS(_input: APIEvent) { return buildOptionsResponse() @@ -14,12 +14,7 @@ export async function OPTIONS(_input: APIEvent) { export async function GET(input: APIEvent) { const apiKey = input.request.headers.get("authorization")?.split(" ")[1] if (apiKey && apiKey !== "public") { - const response = await proxyModels(input, apiKey).catch(() => - Response.json( - { error: { type: "api_error", message: "Inference routing is unavailable. Please retry later." } }, - { status: 503, headers: { "Cache-Control": "no-store" } }, - ), - ) + const response = await proxyInference(input.request).catch(inferenceUnavailable) if (response) return response } @@ -45,26 +40,3 @@ export async function GET(input: APIEvent) { return buildModelsResponse(models) } - -async function proxyModels(input: APIEvent, apiKey: string) { - // No legacy revocation or model-policy checks before destination authentication. - const workspace = await Database.use((tx) => - tx - .select({ migratedAt: WorkspaceTable.migrated_at }) - .from(KeyTable) - .innerJoin(WorkspaceTable, eq(WorkspaceTable.id, KeyTable.workspaceID)) - .where(eq(KeyTable.key, apiKey)) - .limit(1) - .then((rows) => rows[0]), - ) - if (!workspace?.migratedAt) return undefined - - const destination = new URL(Resource.ConsoleMigration.inferenceUrl) - destination.pathname = `${destination.pathname.replace(/\/$/, "")}/v1/models` - destination.search = new URL(input.request.url).search - destination.hash = "" - const headers = new Headers({ authorization: `Bearer ${apiKey}` }) - const ip = input.request.headers.get("cf-connecting-ip") - if (ip) headers.set("x-real-ip", ip) - return fetch(destination, { headers, signal: input.request.signal, redirect: "manual" }) -} From 72635a37209200041b659f0db6d07e3188dea444 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 10 Sep 2026 06:44:00 +0800 Subject: [PATCH 26/94] feat(console): clarify Go model usage (#48192) Co-authored-by: Frank --- .../console/app/src/component/go-models.ts | 43 +++ .../app/src/component/limits-graph.css | 293 +++++++++++++++++ .../app/src/component/limits-graph.tsx | 297 +++++++----------- packages/console/app/src/i18n/ar.ts | 8 + packages/console/app/src/i18n/br.ts | 8 + packages/console/app/src/i18n/da.ts | 10 +- packages/console/app/src/i18n/de.ts | 8 + packages/console/app/src/i18n/en.ts | 8 + packages/console/app/src/i18n/es.ts | 8 + packages/console/app/src/i18n/fr.ts | 10 +- packages/console/app/src/i18n/it.ts | 8 + packages/console/app/src/i18n/ja.ts | 8 + packages/console/app/src/i18n/ko.ts | 8 + packages/console/app/src/i18n/no.ts | 8 + packages/console/app/src/i18n/pl.ts | 8 + packages/console/app/src/i18n/ru.ts | 8 + packages/console/app/src/i18n/th.ts | 8 + packages/console/app/src/i18n/tr.ts | 8 + packages/console/app/src/i18n/uk.ts | 8 + packages/console/app/src/i18n/zh.ts | 8 + packages/console/app/src/i18n/zht.ts | 8 + packages/console/app/src/lib/language.ts | 28 ++ packages/console/app/src/routes/go/index.tsx | 3 +- packages/web/src/content/docs/ar/go.mdx | 116 +++---- packages/web/src/content/docs/bs/go.mdx | 110 +++---- packages/web/src/content/docs/da/go.mdx | 166 +++++----- packages/web/src/content/docs/de/go.mdx | 166 +++++----- packages/web/src/content/docs/es/go.mdx | 110 +++---- packages/web/src/content/docs/fr/go.mdx | 166 +++++----- packages/web/src/content/docs/go.mdx | 112 +++---- packages/web/src/content/docs/it/go.mdx | 166 +++++----- packages/web/src/content/docs/ja/go.mdx | 166 +++++----- packages/web/src/content/docs/ko/go.mdx | 164 +++++----- packages/web/src/content/docs/nb/go.mdx | 160 +++++----- packages/web/src/content/docs/pl/go.mdx | 164 +++++----- packages/web/src/content/docs/pt-br/go.mdx | 116 +++---- packages/web/src/content/docs/ru/go.mdx | 166 +++++----- packages/web/src/content/docs/th/go.mdx | 164 +++++----- packages/web/src/content/docs/tr/go.mdx | 166 +++++----- packages/web/src/content/docs/zh-cn/go.mdx | 116 +++---- packages/web/src/content/docs/zh-tw/go.mdx | 118 +++---- 41 files changed, 1959 insertions(+), 1465 deletions(-) create mode 100644 packages/console/app/src/component/go-models.ts create mode 100644 packages/console/app/src/component/limits-graph.css diff --git a/packages/console/app/src/component/go-models.ts b/packages/console/app/src/component/go-models.ts new file mode 100644 index 000000000000..0aa2f1704b99 --- /dev/null +++ b/packages/console/app/src/component/go-models.ts @@ -0,0 +1,43 @@ +// Requests are per 5 hours; allowances are monthly usage at official API prices. +export const goModels = [ + { id: "kimi-k3", name: "Kimi K3", requests: 110, allowance: 15, featured: true }, + { id: "qwen3.8-max", name: "Qwen3.8 Max", requests: 160, allowance: 15 }, + { id: "grok-4.6", name: "Grok 4.6", requests: 169, allowance: 15 }, + { id: "qwen3.7-max", name: "Qwen3.7 Max", requests: 170, allowance: 30 }, + { id: "glm-5.3", name: "GLM-5.3", requests: 220, allowance: 15 }, + { id: "glm-5.2", name: "GLM-5.2", requests: 880, allowance: 60 }, + { id: "glm-5.1", name: "GLM-5.1", requests: 880, allowance: 60 }, + { id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", requests: 1050, allowance: 15 }, + { id: "kimi-k2.6", name: "Kimi K2.6", requests: 1150, allowance: 60 }, + { id: "kimi-k2.7-code", name: "Kimi K2.7 Code", requests: 1350, allowance: 60, featured: true }, + { id: "hy4-preview", name: "Hy4 preview", requests: 1350, allowance: 30 }, + { id: "gpt-5.6-luna", name: "GPT 5.6 Luna", requests: 2050, allowance: 15, featured: true }, + { id: "minimax-m3", name: "MiniMax M3", requests: 3200, allowance: 60, featured: true }, + { id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", requests: 3250, allowance: 15 }, + { id: "qwen3.6-plus", name: "Qwen3.6 Plus", requests: 3300, allowance: 60 }, + { id: "minimax-m2.7", name: "MiniMax M2.7", requests: 3400, allowance: 60 }, + { id: "deepseek-v4-flash-vision-exp", name: "DeepSeek V4 Flash Vision Exp", requests: 3800, allowance: 15 }, + { id: "qwen3.7-plus", name: "Qwen3.7 Plus", requests: 4300, allowance: 60, featured: true }, + { id: "hy3", name: "Hy3", requests: 4300, allowance: 60 }, + { id: "qwen3.8-flash", name: "Qwen3.8 Flash", requests: 5400, allowance: 30 }, + { id: "glm-5.3-flash", name: "GLM-5.3-Flash", requests: 6320, allowance: 60, featured: true }, + { id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", requests: 7600, allowance: 30, featured: true }, + { id: "longcat-2.0", name: "LongCat-2.0", requests: 11400, allowance: 60 }, + { id: "omen-alpha", name: "Omen Alpha", requests: 11600, allowance: 100, featured: true, fresh: true }, + { id: "mimo-v2.5", name: "MiMo-V2.5", requests: 30100, allowance: 60, featured: true }, + { + id: "muse-spark-1.3-contributor", + name: "Muse Spark 1.3 Contributor", + requests: 45300, + allowance: 60, + featured: true, + regions: true, + }, + { + id: "muse-spark-1.2-contributor", + name: "Muse Spark 1.2 Contributor", + requests: 45300, + allowance: 60, + regions: true, + }, +].sort((a, b) => a.requests - b.requests) diff --git a/packages/console/app/src/component/limits-graph.css b/packages/console/app/src/component/limits-graph.css new file mode 100644 index 000000000000..c03996c96e6c --- /dev/null +++ b/packages/console/app/src/component/limits-graph.css @@ -0,0 +1,293 @@ +[data-component="go-usage"] { + --model-width: 16.5rem; + --request-width: 5.25rem; + --allowance-width: 6.75rem; + --column-gap: 1.5rem; + --bar-origin: left; + container-type: inline-size; + margin: 0; + padding: 3rem var(--padding) 2.5rem; + font-variant-numeric: tabular-nums; + scroll-margin-top: 6rem; + -webkit-font-smoothing: antialiased; + + &:dir(rtl) { + --bar-origin: right; + } + + [data-slot="heading"] { + padding-bottom: 1.5rem; + + h2 { + color: var(--color-text-strong); + font-size: 1rem; + font-weight: 600; + } + } + + [data-slot="columns"], + [data-slot="model-row"] { + display: grid; + grid-template-columns: var(--model-width) minmax(0, 1fr) var(--allowance-width); + align-items: center; + column-gap: var(--column-gap); + } + + [data-slot="columns"] { + padding-bottom: 0.875rem; + border-bottom: 1px solid var(--color-border-weak); + font-size: 0.6875rem; + color: var(--color-text); + overflow-wrap: anywhere; + } + + [data-slot="requests-heading"], + [data-slot="allowance-heading"] { + text-align: end; + } + + [data-slot="rows"] { + padding-top: 0.375rem; + } + + [data-slot="model-row"] { + min-height: 2.5rem; + font-size: 0.8125rem; + } + + [data-slot="model"] { + display: flex; + align-items: baseline; + flex-wrap: wrap; + gap: 0.375rem 0.5rem; + min-width: 0; + line-height: 1.5; + color: var(--color-text); + font-weight: 400; + } + + [data-slot="badge"] { + color: var(--color-text-strong); + font-size: 0.625rem; + line-height: 1.3; + border: 1px solid var(--color-border); + padding: 0.0625rem 0.25rem; + } + + [data-slot="region"] { + display: inline-flex; + align-self: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + + &:hover { + color: var(--color-text-strong); + } + } + + [data-slot="usage-value"] { + display: grid; + grid-template-columns: minmax(0, 1fr) var(--request-width); + align-items: center; + gap: var(--column-gap); + align-self: stretch; + } + + [data-slot="track"] { + display: flex; + align-items: center; + align-self: stretch; + position: relative; + isolation: isolate; + } + + [data-slot="gridline"] { + position: absolute; + inset-block: 0; + inset-inline-start: var(--position); + border-inline-start: 1px dotted var(--color-border-weak); + z-index: -1; + } + + [data-slot="bar"] { + width: var(--width); + height: 0.375rem; + background: var(--color-go-2); + transform-origin: var(--bar-origin); + } + + &[data-visible] [data-slot="bar"] { + animation: go-usage-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both; + animation-delay: var(--delay); + } + + [data-slot="requests"] { + text-align: end; + font-weight: 600; + color: var(--color-text-strong); + } + + [data-slot="allowance"] { + text-align: end; + color: var(--color-text); + + &[data-high] { + color: var(--color-text-strong); + } + } + + [data-slot="currency"] { + color: var(--color-text-weak); + } + + [data-slot="axis"] { + padding-inline-start: calc(var(--model-width) + var(--column-gap)); + padding-inline-end: calc(var(--request-width) + var(--allowance-width) + 2 * var(--column-gap)); + height: 2.5rem; + } + + [data-slot="ticks"] { + position: relative; + height: 100%; + font-size: 0.625rem; + color: var(--color-text-weak); + + span { + position: absolute; + inset-inline-start: var(--position); + top: 0.75rem; + transform: translateX(-50%); + + &:dir(rtl) { + transform: translateX(50%); + } + } + } + + [data-slot="expand"] { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; + min-height: 2.75rem; + padding: 0.75rem 0; + background: none; + border: none; + color: var(--color-text); + font-family: inherit; + font-size: 0.75rem; + cursor: pointer; + + &:hover { + color: var(--color-text-strong); + } + &[aria-expanded="true"] svg { + transform: rotate(180deg); + } + } + + :is(button, a):focus-visible { + outline: 1px solid var(--color-text-strong); + outline-offset: 4px; + } + + figcaption { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + align-items: center; + gap: 1rem; + border-top: 1px solid var(--color-border-weak); + font-size: 0.75rem; + color: var(--color-text); + + a { + color: inherit; + white-space: nowrap; + } + } + + @container (max-width: 48rem) { + [data-slot="columns"], + [data-slot="model-row"], + [data-slot="axis"] { + --model-width: 13rem; + --request-width: 4rem; + --allowance-width: 6rem; + --column-gap: 1rem; + } + } + + @container (max-width: 38rem) { + [data-slot="columns"], + [data-slot="model-row"] { + --request-width: 5rem; + --allowance-width: 4.5rem; + --column-gap: 0.75rem; + grid-template-columns: minmax(0, 1fr) var(--request-width) var(--allowance-width); + } + + [data-slot="columns"] { + font-size: 0.625rem; + } + + [data-slot="model-row"] { + min-height: 4rem; + padding-block: 0.375rem; + row-gap: 0.25rem; + font-size: 1rem; + } + + [data-slot="model"] { + grid-column: 1 / -1; + } + [data-slot="usage-value"] { + display: contents; + } + + [data-slot="track"] { + grid-column: 1; + grid-row: 2; + align-self: center; + height: 4px; + } + + [data-slot="bar"] { + height: 4px; + } + [data-slot="requests"] { + grid-column: 2; + grid-row: 2; + } + [data-slot="allowance"] { + grid-column: 3; + grid-row: 2; + } + [data-slot="gridline"], + [data-slot="axis"] { + display: none; + } + [data-slot="expand"] { + font-size: 0.8125rem; + } + figcaption { + margin-top: 1rem; + } + } + + @media (prefers-reduced-motion: reduce) { + &[data-visible] [data-slot="bar"] { + animation: none; + } + } +} + +@keyframes go-usage-reveal { + from { + transform: scaleX(0); + } + to { + transform: scaleX(1); + } +} diff --git a/packages/console/app/src/component/limits-graph.tsx b/packages/console/app/src/component/limits-graph.tsx index aa9744ecbb8a..b10de2969685 100644 --- a/packages/console/app/src/component/limits-graph.tsx +++ b/packages/console/app/src/component/limits-graph.tsx @@ -1,209 +1,156 @@ -import { For, createSignal, onCleanup, onMount } from "solid-js" +import "./limits-graph.css" +import { For, Show, createMemo, createSignal, createUniqueId, onCleanup, onMount } from "solid-js" import { useI18n } from "~/context/i18n" +import { useLanguage } from "~/context/language" +import { goModels } from "./go-models" -export function LimitsGraph(props: { href: string }) { - let root!: HTMLElement - const [visible, setVisible] = createSignal(false) +// Compress the request range, with the same domain in both views. +const max = Math.max(...goModels.map((model) => model.requests)) +const position = (requests: number) => + 4 + Math.pow(Math.log10(Math.max(requests / 100, 1)) / Math.log10(max / 100), 2.2) * 96 +const ticks = [100, 1000, 10000, 40000] +export function LimitsGraph(props: { href: string }) { const i18n = useI18n() + const language = useLanguage() + const id = createUniqueId() + const [expanded, setExpanded] = createSignal(false) + const [visible, setVisible] = createSignal(false) + const models = createMemo(() => goModels.filter((model) => expanded() || model.featured || model.fresh)) + const format = createMemo(() => new Intl.NumberFormat(language.tag(language.locale()))) + const compact = createMemo( + () => new Intl.NumberFormat(language.tag(language.locale()), { notation: "compact", maximumFractionDigits: 1 }), + ) + const currency = createMemo( + () => + new Intl.NumberFormat(language.tag(language.locale()), { + style: "currency", + currency: "USD", + currencyDisplay: "narrowSymbol", + maximumFractionDigits: 0, + }), + ) + let root!: HTMLElement onMount(() => { - const motion = window.matchMedia("(prefers-reduced-motion: reduce)") - const finish = () => { - if (!motion.matches) return - setVisible(true) - } - motion.addEventListener("change", finish) - onCleanup(() => { - motion.removeEventListener("change", finish) - }) - if (motion.matches) return finish() - if (typeof IntersectionObserver === "undefined") return setVisible(true) + if (!window.IntersectionObserver) return setVisible(true) const observer = new IntersectionObserver( (entries) => { - const entry = entries[0] - if (!entry?.isIntersecting || entry.intersectionRatio < 0.35) return + if (!entries.some((entry) => entry.isIntersecting)) return setVisible(true) observer.disconnect() }, - { threshold: 0.35 }, + { threshold: 0.1 }, ) observer.observe(root) onCleanup(() => observer.disconnect()) }) - const baseline = 100 - const graph = [ - { id: "kimi-k3", name: "Kimi K3", req: 110 }, - { id: "grok-4.6", name: "Grok 4.6", req: 169 }, - { id: "hy4-preview", name: "Hy4 preview", req: 1350 }, - { id: "gpt-5.6-luna", name: "GPT 5.6 Luna", req: 2050 }, - { id: "minimax-m3", name: "MiniMax M3", req: 3200 }, - { id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300 }, - { id: "hy3", name: "Hy3", req: 4300 }, - { id: "qwen3.8-flash", name: "Qwen3.8 Flash", req: 5400 }, - { id: "glm-5.3-flash", name: "GLM-5.3-Flash", req: 6320 }, - { id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", req: 7600 }, - { id: "longcat-2.0", name: "LongCat-2.0", req: 11400 }, - { id: "omen-alpha", name: "Omen Alpha", req: 11600 }, - { id: "mimo-v2.5", name: "MiMo-V2.5", req: 30100 }, - { id: "muse-spark-1.3-contributor", name: "Muse Spark 1.3 Contributor", req: 45300, edge: true }, - ].map((model, index) => ({ ...model, d: `${50 + index * 25}ms` })) - - const w = 1040 - const chartW = 720 - const left = 40 - const right = 60 - const top = 18 - const bottom = 44 - const plot = chartW - left - right - const infiniteX = w - 180 - - const ratio = (n: number) => n / baseline - const rmax = Math.max(1, ...graph.filter((m) => !("infinite" in m)).map((m) => ratio(m.req))) - const log = (n: number) => Math.log10(Math.max(n, 1)) - const base = 24 - const p = 2.2 - const x = (r: number) => left + base + Math.pow(log(r) / log(rmax), p) * (plot - base) - const ticks = [1, 5, 10, 25, 50, 100, 250].filter((t) => t <= rmax) - const labels = (() => { - const set = new Set() - let last = -Infinity - for (const t of ticks) { - if (t === 1) { - set.add(t) - last = x(t) - continue - } - const pos = x(t) - if (pos - last < 44) continue - set.add(t) - last = pos - } - return set - })() - const shown = ticks.filter((t) => labels.has(t)) - const bh = 8 - const gap = 20 - const step = bh + gap - const gy = (i: number) => top + 22 + step * i - const h = gy(graph.length - 1) + bottom - const my = graph.length < 2 ? gy(0) : (gy(0) + gy(graph.length - 1)) / 2 - const px = (n: number) => `${(n / w) * 100}%` - const py = (n: number) => `${(n / h) * 100}%` - const lx = px(left - 16) - const ty = py(h - 18) - return (
    -
    - +
    +

    {i18n.t("go.graph.period")}

    +
    -
    ) diff --git a/packages/console/app/src/i18n/ar.ts b/packages/console/app/src/i18n/ar.ts index 2d792158741f..035794a23bb1 100644 --- a/packages/console/app/src/i18n/ar.ts +++ b/packages/console/app/src/i18n/ar.ts @@ -270,6 +270,14 @@ export const dict = { "go.graph.freePill": "Big Pickle ونماذج مجانية", "go.graph.go": "Go", "go.graph.label": "الطلبات كل 5 ساعات", + "go.graph.period": "الاستخدام", + "go.graph.model": "النموذج", + "go.graph.requests": "الطلبات المقدّرة / ٥ ساعات", + "go.graph.allowance": "الاستخدام الشهري", + "go.graph.new": "جديد", + "go.graph.scale": "مقياس غير خطي لعدد الطلبات", + "go.graph.showAll": "عرض جميع النماذج ({{count}})", + "go.graph.showLess": "عرض نماذج أقل", "go.graph.limitedRegions": "مناطق محدودة", "go.graph.limitedTime": "لفترة محدودة", "go.graph.usageLimits": "حدود الاستخدام", diff --git a/packages/console/app/src/i18n/br.ts b/packages/console/app/src/i18n/br.ts index ded260326811..9afa3e27d8af 100644 --- a/packages/console/app/src/i18n/br.ts +++ b/packages/console/app/src/i18n/br.ts @@ -276,6 +276,14 @@ export const dict = { "go.graph.freePill": "Big Pickle e modelos gratuitos", "go.graph.go": "Go", "go.graph.label": "Requisições por 5 horas", + "go.graph.period": "Uso", + "go.graph.model": "Modelo", + "go.graph.requests": "Requisições estimadas / 5 h", + "go.graph.allowance": "Uso mensal", + "go.graph.new": "Novo", + "go.graph.scale": "Escala não linear de requisições", + "go.graph.showAll": "Ver todos os {{count}} modelos", + "go.graph.showLess": "Mostrar menos modelos", "go.graph.limitedRegions": "regiões limitadas", "go.graph.limitedTime": "tempo limitado", "go.graph.usageLimits": "Limites de uso", diff --git a/packages/console/app/src/i18n/da.ts b/packages/console/app/src/i18n/da.ts index de296cb0f555..b7b39f7b0e8d 100644 --- a/packages/console/app/src/i18n/da.ts +++ b/packages/console/app/src/i18n/da.ts @@ -273,9 +273,17 @@ export const dict = { "go.graph.freePill": "Big Pickle og gratis modeller", "go.graph.go": "Go", "go.graph.label": "Forespørgsler pr. 5 timer", + "go.graph.period": "Forbrug", + "go.graph.model": "Model", + "go.graph.requests": "Estimerede anmodninger / 5 timer", + "go.graph.allowance": "Månedligt forbrug", + "go.graph.new": "Ny", + "go.graph.scale": "Ikke-lineær skala for anmodninger", + "go.graph.showAll": "Vis alle {{count}} modeller", + "go.graph.showLess": "Vis færre modeller", "go.graph.limitedRegions": "begrænsede regioner", "go.graph.limitedTime": "begrænset periode", - "go.graph.usageLimits": "Brugsgrænser", + "go.graph.usageLimits": "Forbrugsgrænser", "go.graph.aria": "Forespørgsler pr. 5t: {{free}} vs {{go}}", "go.testimonials.brand.zen": "Zen", diff --git a/packages/console/app/src/i18n/de.ts b/packages/console/app/src/i18n/de.ts index 898a9d87a33a..9f31cd89ec34 100644 --- a/packages/console/app/src/i18n/de.ts +++ b/packages/console/app/src/i18n/de.ts @@ -275,6 +275,14 @@ export const dict = { "go.graph.freePill": "Big Pickle und kostenlose Modelle", "go.graph.go": "Go", "go.graph.label": "Anfragen pro 5 Stunden", + "go.graph.period": "Nutzung", + "go.graph.model": "Modell", + "go.graph.requests": "Geschätzte Anfragen / 5 Std.", + "go.graph.allowance": "Monatliche Nutzung", + "go.graph.new": "Neu", + "go.graph.scale": "Nichtlineare Skala für Anfragen", + "go.graph.showAll": "Alle {{count}} Modelle anzeigen", + "go.graph.showLess": "Weniger Modelle anzeigen", "go.graph.limitedRegions": "begrenzte Regionen", "go.graph.limitedTime": "begrenzte Zeit", "go.graph.usageLimits": "Nutzungslimits", diff --git a/packages/console/app/src/i18n/en.ts b/packages/console/app/src/i18n/en.ts index 1031a72e706a..44cd2d74eb56 100644 --- a/packages/console/app/src/i18n/en.ts +++ b/packages/console/app/src/i18n/en.ts @@ -270,6 +270,14 @@ export const dict = { "go.graph.freePill": "Big Pickle and free models", "go.graph.go": "Go", "go.graph.label": "Requests / 5 hours", + "go.graph.period": "Usage", + "go.graph.model": "Model", + "go.graph.requests": "Est. requests / 5 hr", + "go.graph.allowance": "Monthly usage", + "go.graph.new": "New", + "go.graph.scale": "Nonlinear request scale", + "go.graph.showAll": "View all {{count}} models", + "go.graph.showLess": "Show fewer models", "go.graph.limitedRegions": "limited regions", "go.graph.limitedTime": "limited time", "go.graph.tick": "{{n}}x", diff --git a/packages/console/app/src/i18n/es.ts b/packages/console/app/src/i18n/es.ts index 4e3d5cd41cb1..89634e4f9c84 100644 --- a/packages/console/app/src/i18n/es.ts +++ b/packages/console/app/src/i18n/es.ts @@ -277,6 +277,14 @@ export const dict = { "go.graph.freePill": "Big Pickle y modelos gratuitos", "go.graph.go": "Go", "go.graph.label": "Solicitudes por 5 horas", + "go.graph.period": "Uso", + "go.graph.model": "Modelo", + "go.graph.requests": "Peticiones estimadas / 5 h", + "go.graph.allowance": "Uso mensual", + "go.graph.new": "Nuevo", + "go.graph.scale": "Escala no lineal de peticiones", + "go.graph.showAll": "Ver los {{count}} modelos", + "go.graph.showLess": "Mostrar menos modelos", "go.graph.limitedRegions": "regiones limitadas", "go.graph.limitedTime": "tiempo limitado", "go.graph.usageLimits": "Límites de uso", diff --git a/packages/console/app/src/i18n/fr.ts b/packages/console/app/src/i18n/fr.ts index fa1de59ee967..5c0c3e95951a 100644 --- a/packages/console/app/src/i18n/fr.ts +++ b/packages/console/app/src/i18n/fr.ts @@ -278,9 +278,17 @@ export const dict = { "go.graph.freePill": "Big Pickle et modèles gratuits", "go.graph.go": "Go", "go.graph.label": "Requêtes par tranche de 5 heures", + "go.graph.period": "Utilisation", + "go.graph.model": "Modèle", + "go.graph.requests": "Requêtes estimées / 5 h", + "go.graph.allowance": "Utilisation mensuelle", + "go.graph.new": "Nouveau", + "go.graph.scale": "Échelle non linéaire des requêtes", + "go.graph.showAll": "Voir les {{count}} modèles", + "go.graph.showLess": "Afficher moins de modèles", "go.graph.limitedRegions": "régions limitées", "go.graph.limitedTime": "durée limitée", - "go.graph.usageLimits": "Limites d'utilisation", + "go.graph.usageLimits": "Limites d’utilisation", "go.graph.aria": "Requêtes par 5h : {{free}} vs {{go}}", "go.testimonials.brand.zen": "Zen", diff --git a/packages/console/app/src/i18n/it.ts b/packages/console/app/src/i18n/it.ts index 0c81b6e94e14..82d32ab25e4f 100644 --- a/packages/console/app/src/i18n/it.ts +++ b/packages/console/app/src/i18n/it.ts @@ -274,6 +274,14 @@ export const dict = { "go.graph.freePill": "Big Pickle e modelli gratuiti", "go.graph.go": "Go", "go.graph.label": "Richieste ogni 5 ore", + "go.graph.period": "Utilizzo", + "go.graph.model": "Modello", + "go.graph.requests": "Richieste stimate / 5 ore", + "go.graph.allowance": "Utilizzo mensile", + "go.graph.new": "Nuovo", + "go.graph.scale": "Scala non lineare delle richieste", + "go.graph.showAll": "Mostra tutti i {{count}} modelli", + "go.graph.showLess": "Mostra meno modelli", "go.graph.limitedRegions": "regioni limitate", "go.graph.limitedTime": "periodo limitato", "go.graph.usageLimits": "Limiti di utilizzo", diff --git a/packages/console/app/src/i18n/ja.ts b/packages/console/app/src/i18n/ja.ts index 534f8a95e948..ba0491b97426 100644 --- a/packages/console/app/src/i18n/ja.ts +++ b/packages/console/app/src/i18n/ja.ts @@ -273,6 +273,14 @@ export const dict = { "go.graph.freePill": "Big Pickleと無料モデル", "go.graph.go": "Go", "go.graph.label": "5時間あたりのリクエスト数", + "go.graph.period": "利用枠", + "go.graph.model": "モデル", + "go.graph.requests": "推定リクエスト数 / 5時間", + "go.graph.allowance": "月間利用枠", + "go.graph.new": "新着", + "go.graph.scale": "リクエスト数は非線形目盛りで表示", + "go.graph.showAll": "全{{count}}モデルを表示", + "go.graph.showLess": "折りたたむ", "go.graph.limitedRegions": "一部の地域に限定", "go.graph.limitedTime": "期間限定", "go.graph.usageLimits": "利用制限", diff --git a/packages/console/app/src/i18n/ko.ts b/packages/console/app/src/i18n/ko.ts index f480675c9f48..c0fe7f887379 100644 --- a/packages/console/app/src/i18n/ko.ts +++ b/packages/console/app/src/i18n/ko.ts @@ -269,6 +269,14 @@ export const dict = { "go.graph.freePill": "Big Pickle 및 무료 모델", "go.graph.go": "Go", "go.graph.label": "5시간당 요청 수", + "go.graph.period": "사용량", + "go.graph.model": "모델", + "go.graph.requests": "예상 요청 횟수 / 5시간", + "go.graph.allowance": "월간 사용량", + "go.graph.new": "신규", + "go.graph.scale": "요청 수는 비선형 눈금으로 표시됩니다", + "go.graph.showAll": "전체 {{count}}개 모델 보기", + "go.graph.showLess": "접기", "go.graph.limitedRegions": "일부 지역에서만 제공", "go.graph.limitedTime": "한정된 기간", "go.graph.usageLimits": "사용 한도", diff --git a/packages/console/app/src/i18n/no.ts b/packages/console/app/src/i18n/no.ts index 95fd5f5e9c42..801eed55740e 100644 --- a/packages/console/app/src/i18n/no.ts +++ b/packages/console/app/src/i18n/no.ts @@ -273,6 +273,14 @@ export const dict = { "go.graph.freePill": "Big Pickle og gratis modeller", "go.graph.go": "Go", "go.graph.label": "Forespørsler per 5 timer", + "go.graph.period": "Bruk", + "go.graph.model": "Modell", + "go.graph.requests": "Estimerte forespørsler / 5 timer", + "go.graph.allowance": "Månedlig bruk", + "go.graph.new": "Ny", + "go.graph.scale": "Ikke-lineær skala for forespørsler", + "go.graph.showAll": "Vis alle {{count}} modeller", + "go.graph.showLess": "Vis færre modeller", "go.graph.limitedRegions": "begrensede regioner", "go.graph.limitedTime": "begrenset periode", "go.graph.usageLimits": "Bruksgrenser", diff --git a/packages/console/app/src/i18n/pl.ts b/packages/console/app/src/i18n/pl.ts index b27528fc23cf..8716919d5c92 100644 --- a/packages/console/app/src/i18n/pl.ts +++ b/packages/console/app/src/i18n/pl.ts @@ -275,6 +275,14 @@ export const dict = { "go.graph.freePill": "Big Pickle i darmowe modele", "go.graph.go": "Go", "go.graph.label": "Żądania na 5 godzin", + "go.graph.period": "Użycie", + "go.graph.model": "Model", + "go.graph.requests": "Szac. żądania / 5 godz.", + "go.graph.allowance": "Miesięczne użycie", + "go.graph.new": "Nowość", + "go.graph.scale": "Nieliniowa skala liczby żądań", + "go.graph.showAll": "Pokaż wszystkie modele ({{count}})", + "go.graph.showLess": "Pokaż mniej modeli", "go.graph.limitedRegions": "ograniczone regiony", "go.graph.limitedTime": "ograniczony czas", "go.graph.usageLimits": "Limity użycia", diff --git a/packages/console/app/src/i18n/ru.ts b/packages/console/app/src/i18n/ru.ts index d2154ef83012..df3f4fbc99c1 100644 --- a/packages/console/app/src/i18n/ru.ts +++ b/packages/console/app/src/i18n/ru.ts @@ -278,6 +278,14 @@ export const dict = { "go.graph.freePill": "Big Pickle и бесплатные модели", "go.graph.go": "Go", "go.graph.label": "Запросов за 5 часов", + "go.graph.period": "Использование", + "go.graph.model": "Модель", + "go.graph.requests": "Примерное число запросов / 5 ч", + "go.graph.allowance": "Использование за месяц", + "go.graph.new": "Новое", + "go.graph.scale": "Нелинейная шкала числа запросов", + "go.graph.showAll": "Показать все модели ({{count}})", + "go.graph.showLess": "Показать меньше моделей", "go.graph.limitedRegions": "доступно в отдельных регионах", "go.graph.limitedTime": "ограниченное время", "go.graph.usageLimits": "Лимиты использования", diff --git a/packages/console/app/src/i18n/th.ts b/packages/console/app/src/i18n/th.ts index 9b1f78f52a45..4c1758d269fb 100644 --- a/packages/console/app/src/i18n/th.ts +++ b/packages/console/app/src/i18n/th.ts @@ -272,6 +272,14 @@ export const dict = { "go.graph.freePill": "Big Pickle และโมเดลฟรี", "go.graph.go": "Go", "go.graph.label": "คำขอต่อ 5 ชั่วโมง", + "go.graph.period": "การใช้งาน", + "go.graph.model": "โมเดล", + "go.graph.requests": "requests โดยประมาณ / 5 ชม.", + "go.graph.allowance": "ปริมาณการใช้งานรายเดือน", + "go.graph.new": "ใหม่", + "go.graph.scale": "มาตราส่วนจำนวนคำขอแบบไม่เป็นเชิงเส้น", + "go.graph.showAll": "ดูโมเดลทั้งหมด {{count}} โมเดล", + "go.graph.showLess": "แสดงโมเดลน้อยลง", "go.graph.limitedRegions": "เฉพาะบางภูมิภาค", "go.graph.limitedTime": "ช่วงเวลาจำกัด", "go.graph.usageLimits": "ขีดจำกัดการใช้งาน", diff --git a/packages/console/app/src/i18n/tr.ts b/packages/console/app/src/i18n/tr.ts index 49f7a788cb7b..3748ba8d8ade 100644 --- a/packages/console/app/src/i18n/tr.ts +++ b/packages/console/app/src/i18n/tr.ts @@ -275,6 +275,14 @@ export const dict = { "go.graph.freePill": "Big Pickle ve ücretsiz modeller", "go.graph.go": "Go", "go.graph.label": "5 saat başına istekler", + "go.graph.period": "Kullanım", + "go.graph.model": "Model", + "go.graph.requests": "Tahmini istek / 5 saat", + "go.graph.allowance": "Aylık kullanım", + "go.graph.new": "Yeni", + "go.graph.scale": "Doğrusal olmayan istek ölçeği", + "go.graph.showAll": "{{count}} modelin tümünü göster", + "go.graph.showLess": "Daha az model göster", "go.graph.limitedRegions": "sınırlı bölgeler", "go.graph.limitedTime": "sınırlı süre", "go.graph.usageLimits": "Kullanım limitleri", diff --git a/packages/console/app/src/i18n/uk.ts b/packages/console/app/src/i18n/uk.ts index d3002ad84854..0c23398ce9f6 100644 --- a/packages/console/app/src/i18n/uk.ts +++ b/packages/console/app/src/i18n/uk.ts @@ -273,6 +273,14 @@ export const dict = { "go.graph.freePill": "Big Pickle та безкоштовні моделі", "go.graph.go": "Go", "go.graph.label": "Запитів за 5 годин", + "go.graph.period": "Використання", + "go.graph.model": "Модель", + "go.graph.requests": "Оцінка запитів / 5 год", + "go.graph.allowance": "Використання за місяць", + "go.graph.new": "Нове", + "go.graph.scale": "Нелінійна шкала кількості запитів", + "go.graph.showAll": "Показати всі моделі ({{count}})", + "go.graph.showLess": "Показати менше моделей", "go.graph.limitedRegions": "обмежені регіони", "go.graph.limitedTime": "обмежений час", "go.graph.usageLimits": "Ліміти використання", diff --git a/packages/console/app/src/i18n/zh.ts b/packages/console/app/src/i18n/zh.ts index ec6173e2a29a..887911f04bd6 100644 --- a/packages/console/app/src/i18n/zh.ts +++ b/packages/console/app/src/i18n/zh.ts @@ -262,6 +262,14 @@ export const dict = { "go.graph.freePill": "Big Pickle 和免费模型", "go.graph.go": "Go", "go.graph.label": "每 5 小时请求数", + "go.graph.period": "使用额度", + "go.graph.model": "模型", + "go.graph.requests": "预估请求数 / 5 小时", + "go.graph.allowance": "每月使用额度", + "go.graph.new": "新", + "go.graph.scale": "请求数采用非线性刻度", + "go.graph.showAll": "查看全部 {{count}} 个模型", + "go.graph.showLess": "收起模型", "go.graph.limitedRegions": "仅限部分地区", "go.graph.limitedTime": "限时", "go.graph.usageLimits": "使用限制", diff --git a/packages/console/app/src/i18n/zht.ts b/packages/console/app/src/i18n/zht.ts index c088b268d8cf..742cd3b1da87 100644 --- a/packages/console/app/src/i18n/zht.ts +++ b/packages/console/app/src/i18n/zht.ts @@ -261,6 +261,14 @@ export const dict = { "go.graph.freePill": "Big Pickle 與免費模型", "go.graph.go": "Go", "go.graph.label": "每 5 小時請求數", + "go.graph.period": "使用額度", + "go.graph.model": "模型", + "go.graph.requests": "預估請求次數 / 5 小時", + "go.graph.allowance": "每月使用額度", + "go.graph.new": "新", + "go.graph.scale": "請求數採用非線性刻度", + "go.graph.showAll": "查看全部 {{count}} 個模型", + "go.graph.showLess": "收起模型", "go.graph.limitedRegions": "僅限部分地區", "go.graph.limitedTime": "限時", "go.graph.usageLimits": "使用限制", diff --git a/packages/console/app/src/lib/language.ts b/packages/console/app/src/lib/language.ts index a196f663db4c..773f63d61508 100644 --- a/packages/console/app/src/lib/language.ts +++ b/packages/console/app/src/lib/language.ts @@ -134,6 +134,34 @@ const DOCS_LOCALE = { "zh-tw": "zht", } as const satisfies Record +// Heading IDs from the localized Go documentation. +const GO_USAGE_LIMITS = { + en: "usage-limits", + zh: "使用限制", + zht: "使用限制", + ko: "사용-한도", + de: "nutzungslimits", + es: "límites-de-uso", + fr: "limites-dutilisation", + it: "limiti-di-utilizzo", + da: "forbrugsgrænser", + ja: "利用制限", + pl: "limity-użycia", + ru: "лимиты-использования", + uk: "usage-limits", + ar: "حدود-الاستخدام", + no: "bruksgrenser", + br: "limites-de-uso", + th: "usage-limits", + tr: "kullanım-limitleri", +} satisfies Record + +export function goUsageLimits(locale: Locale) { + // No Ukrainian Go docs yet; the explicit English path overrides the locale cookie. + if (locale === "uk") return "/docs/en/go/#usage-limits" + return docs(locale, `/docs/go/#${GO_USAGE_LIMITS[locale]}`) +} + function suffix(pathname: string) { const index = pathname.search(/[?#]/) if (index === -1) { diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index 59bbea8fcbfc..f80bde082499 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -17,6 +17,7 @@ import { IconMiniMax, IconMiMo, IconZai, IconAlibaba, IconDeepSeek } from "~/com import { useI18n } from "~/context/i18n" import { useLanguage } from "~/context/language" import { LocaleLinks } from "~/component/locale-links" +import { goUsageLimits } from "~/lib/language" const checkLoggedIn = query(async () => { "use server" @@ -201,7 +202,7 @@ export default function Home() {
    - +
    diff --git a/packages/web/src/content/docs/ar/go.mdx b/packages/web/src/content/docs/ar/go.mdx index bb085bd4a4f0..1c8354ab3400 100644 --- a/packages/web/src/content/docs/ar/go.mdx +++ b/packages/web/src/content/docs/ar/go.mdx @@ -124,22 +124,67 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر ## حدود الاستخدام -يتضمن OpenCode Go الحدود الأساسية التالية: +تُحدَّد حدود الاستخدام كمبالغ شهرية بالدولار. يوضح الجدول أدناه الحد الشهري وتكاليف tokens لكل نموذج. -- **حد 5 ساعات** — استخدام بقيمة $12 -- **الحد الأسبوعي** — استخدام بقيمة $30 -- **الحد الشهري** — استخدام بقيمة $60 +لكل نموذج حدود الاستخدام التالية: 5 ساعات — 20% من الحد الشهري؛ وأسبوعي — 50%؛ وشهري — 100%. -يختلف الحد الفعلي حسب النموذج؛ راجع الجدول أدناه. +على سبيل المثال، إذا كان الحد الشهري لنموذج ما $60، فيمكنك إنفاق ما يصل إلى: -تُحدَّد الحدود بالقيمة بالدولار. وهذا يعني أن عدد طلباتك الفعلي يعتمد على النموذج الذي تستخدمه. تتيح النماذج الأقل تكلفة مثل MiMo-V2.5 عددًا أكبر من الطلبات، بينما تتيح النماذج الأعلى تكلفة مثل GLM-5.2 عددًا أقل. +- **حد 5 ساعات** — $12 من الاستخدام +- **الحد الأسبوعي** — $30 من الاستخدام +- **الحد الشهري** — $60 من الاستخدام -يوضح الجدول أدناه عددًا تقديريًا للطلبات بناءً على أنماط استخدام Go المعتادة: +أسعار tokens مُدرجة لكل 1M tokens. + +| النموذج | الإدخال | الإخراج | القراءة المخزنة | الكتابة المخزنة | الحد الشهري | +| --------------------------------------- | ------- | ------- | --------------- | --------------- | --------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | + +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** ساعات Peak هي 01:00-04:00 و06:00-10:00 UTC من الاثنين إلى الجمعة؛ وجميع الساعات الأخرى، بما في ذلك عطلات نهاية الأسبوع، Off-Peak. [اعرف المزيد](https://api-docs.deepseek.com/quick_start/pricing/). + +**DeepSeek V4 Flash Vision Exp:** يتم تحويل الصور إلى رموز بناءً على أبعادها، وتُحتسب كرموز إدخال إلى جانب رموز النص. [اعرف المزيد](https://api-docs.deepseek.com/quick_start/pricing/). + +### الطلبات المقدّرة + +يوضح الجدول أدناه عددًا تقديريًا للطلبات استنادًا إلى أنماط استخدام Go المعتادة: | Model | الطلبات لكل 5 ساعات | الطلبات في الأسبوع | الطلبات في الشهر | | ---------------------------- | ------------------- | ------------------ | ---------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -164,7 +209,8 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | تستخدم التقديرات أعداد tokens التالية لكل طلب؛ ويختلف الاستخدام الفعلي. @@ -193,50 +239,6 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر - MiMo-V2.5-Pro — ‏790 input، و86,000 cached، و305 output tokens لكل طلب - Omen Alpha — ‏300 input، و40,000 cached، و100 output tokens لكل طلب -تستند التقديرات أيضًا إلى الأسعار التالية لكل 1M tokens والاستخدام الشهري المتضمن مع كل نموذج: - -| النموذج | الإدخال | الإخراج | القراءة المخزنة | الكتابة المخزنة | الاستخدام | -| --------------------------------------- | ------- | ------- | --------------- | --------------- | --------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** ساعات Peak هي 01:00-04:00 و06:00-10:00 UTC من الاثنين إلى الجمعة؛ وجميع الساعات الأخرى، بما في ذلك عطلات نهاية الأسبوع، Off-Peak. [اعرف المزيد](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** يتم تحويل الصور إلى رموز بناءً على أبعادها، وتُحتسب كرموز إدخال إلى جانب رموز النص. [اعرف المزيد](https://api-docs.deepseek.com/quick_start/pricing/). - يمكنك تتبّع استخدامك الحالي في **console**. :::tip @@ -255,13 +257,13 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر ### لماذا يكون الاستخدام أقل لبعض النماذج -مع Go، تدفع $10 شهريًا، ونهدف لمعظم النماذج إلى منحك استخدامًا بقيمة تعادل 6 أضعاف هذا المبلغ. +مع Go، تدفع $10 شهريًا، ويختلف الاستخدام الشهري المتضمن حسب النموذج. -نحقق ذلك لمعظم النماذج من خلال الخصومات على الكميات الكبيرة وسعة GPU المحجوزة. ثم ننقل هذه الوفورات إليك من خلال معامل مضاعفة قدره 6. +نحقق ذلك لمعظم النماذج من خلال الخصومات على الكميات الكبيرة وسعة GPU المحجوزة. ثم ننقل هذه الوفورات إليك في صورة استخدام شهري أعلى. بالنسبة إلى بعض النماذج، لم تتح لنا فرصة التفاوض على خصم أو استضافتها بتكلفة أقل، إما لأن النموذج جديد أو لأن أسعاره العامة مخفضة بالفعل. -بالنسبة إلى هذه النماذج، لا تزال تحصل على استخدام يزيد قليلًا عما ستحصل عليه إذا دفعت لمزودي النماذج مباشرةً؛ ولهذا يكون معامل مضاعفة استخدامها أقل في الجدول أعلاه. +بالنسبة إلى هذه النماذج، لا تزال تحصل على استخدام يزيد قليلًا عما ستحصل عليه إذا دفعت لمزودي النماذج مباشرةً؛ ولهذا يكون الاستخدام الشهري المتضمن معها أقل. --- diff --git a/packages/web/src/content/docs/bs/go.mdx b/packages/web/src/content/docs/bs/go.mdx index 58feac308c7b..6ef94f809717 100644 --- a/packages/web/src/content/docs/bs/go.mdx +++ b/packages/web/src/content/docs/bs/go.mdx @@ -134,22 +134,67 @@ istražili. Povezani izvještaji prate ispravke i zaobilazna rješenja. ## Ograničenja upotrebe -OpenCode Go uključuje sljedeća osnovna ograničenja: +Ograničenja upotrebe definirana su kao mjesečni iznosi u dolarima. Tabela ispod prikazuje mjesečno ograničenje i troškove tokena za svaki model. + +Svaki model ima sljedeća ograničenja upotrebe: 5 sati — 20% mjesečnog ograničenja; sedmično — 50%; i mjesečno — 100%. + +Na primjer, ako model ima mjesečno ograničenje od $60, možete potrošiti do: - **Ograničenje od 5 sati** — $12 potrošnje - **Sedmično ograničenje** — $30 potrošnje - **Mjesečno ograničenje** — $60 potrošnje -Efektivna potrošnja razlikuje se po modelu; pogledajte tabelu ispod. +Cijene tokena navedene su za 1M tokena. + +| Model | Input | Output | Cached Read | Cached Write | Mjesečno ograničenje | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | --------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -Ograničenja su definisana u dolarskoj vrijednosti. To znači da vaš stvarni broj zahtjeva zavisi od modela koji koristite. Jeftiniji modeli poput MiMo-V2.5 omogućavaju više zahtjeva, dok skuplji modeli poput GLM-5.2 omogućavaju manje. +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak sati su 01:00-04:00 i 06:00-10:00 UTC od ponedjeljka do petka; svi ostali sati, uključujući vikende, su Off-Peak. [Saznajte više](https://api-docs.deepseek.com/quick_start/pricing/). -Tabela ispod pruža procijenjeni broj zahtjeva na osnovu tipičnih obrazaca korištenja Go pretplate: +**DeepSeek V4 Flash Vision Exp:** Slike se pretvaraju u tokene na osnovu svojih dimenzija i naplaćuju kao ulazni tokeni zajedno s tekstualnim tokenima. [Saznajte više](https://api-docs.deepseek.com/quick_start/pricing/). + +### Procijenjeni broj zahtjeva + +Tabela ispod daje procijenjeni broj zahtjeva na osnovu tipičnih obrazaca korištenja Go-a: | Model | zahtjeva na 5 sati | zahtjeva sedmično | zahtjeva mjesečno | | ---------------------------- | ------------------ | ----------------- | ----------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -174,7 +219,8 @@ Tabela ispod pruža procijenjeni broj zahtjeva na osnovu tipičnih obrazaca kori | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Procjene koriste sljedeći broj tokena po zahtjevu; stvarna potrošnja varira. @@ -203,50 +249,6 @@ Procjene koriste sljedeći broj tokena po zahtjevu; stvarna potrošnja varira. - MiMo-V2.5-Pro — 790 ulaznih, 86,000 keširanih, 305 izlaznih tokena po zahtjevu - Omen Alpha — 300 ulaznih, 40.000 keširanih, 100 izlaznih tokena po zahtjevu -Procjene se također zasnivaju na sljedećim cijenama po 1M tokena i mjesečnoj potrošnji uključenoj uz svaki model: - -| Model | Input | Output | Cached Read | Cached Write | Potrošnja | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | --------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak sati su 01:00-04:00 i 06:00-10:00 UTC od ponedjeljka do petka; svi ostali sati, uključujući vikende, su Off-Peak. [Saznajte više](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Slike se pretvaraju u tokene na osnovu svojih dimenzija i naplaćuju kao ulazni tokeni zajedno s tekstualnim tokenima. [Saznajte više](https://api-docs.deepseek.com/quick_start/pricing/). - Svoju trenutnu potrošnju možete pratiti u **konzoli**. :::tip @@ -267,13 +269,13 @@ nakon što dostignete ograničenja upotrebe umjesto blokiranja zahtjeva. ### Zašto neki modeli imaju manju uključenu potrošnju -Uz Go plaćate $10 mjesečno, a za većinu modela cilj nam je omogućiti vam potrošnju šest puta veću od tog iznosa. +Uz Go plaćate $10 mjesečno, a uključena mjesečna potrošnja razlikuje se po modelu. -Za većinu modela to postižemo količinskim popustima i rezervisanim GPU kapacitetom. Tu uštedu zatim prenosimo na vas primjenom faktora šest. +Za većinu modela to postižemo količinskim popustima i rezervisanim GPU kapacitetom. Tu uštedu zatim prenosimo na vas kroz veću mjesečnu potrošnju. Za neke modele još nismo imali priliku dogovoriti popust ili ih hostovati po nižoj cijeni, bilo zato što su modeli novi ili zato što su njihove javno objavljene cijene već snižene. -Za ove modele i dalje dobijate malo više nego da direktno plaćate provajderima modela; zato je njihov faktor potrošnje niži u gornjoj tabeli. +Za ove modele i dalje dobijate malo više nego da direktno plaćate provajderima modela; zato je njihova uključena mjesečna potrošnja manja. --- diff --git a/packages/web/src/content/docs/da/go.mdx b/packages/web/src/content/docs/da/go.mdx index 663140b9b1da..6266d456653b 100644 --- a/packages/web/src/content/docs/da/go.mdx +++ b/packages/web/src/content/docs/da/go.mdx @@ -134,47 +134,93 @@ undersøgte. De linkede rapporter følger rettelser og løsninger. ## Forbrugsgrænser -OpenCode Go inkluderer følgende basisgrænser: +Forbrugsgrænser defineres som månedlige beløb i dollars. Tabellen nedenfor viser den månedlige grænse og tokenpriserne for hver model. + +Hver model har følgende forbrugsgrænser: 5 timer — 20 % af den månedlige grænse; ugentligt — 50 %; og månedligt — 100 %. + +Hvis en model for eksempel har en månedlig grænse på $60, kan du bruge op til: + +- **5-timers grænse** — $12 i forbrug +- **Ugentlig grænse** — $30 i forbrug +- **Månedlig grænse** — $60 i forbrug + +Tokenpriser er angivet pr. 1M tokens. + +| Model | Input | Output | Cached Read | Cached Write | Månedlig grænse | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **5-timers grænse** — forbrug for $12 -- **Ugentlig grænse** — forbrug for $30 -- **Månedlig grænse** — forbrug for $60 +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak-tiderne er 01:00-04:00 og 06:00-10:00 UTC fra mandag til fredag; alle andre tider, herunder weekender, er Off-Peak. [Læs mere](https://api-docs.deepseek.com/quick_start/pricing/). -Det effektive forbrug varierer efter model; se tabellen nedenfor. +**DeepSeek V4 Flash Vision Exp:** Billeder konverteres til tokens baseret på deres dimensioner og afregnes som inputtokens sammen med teksttokens. [Læs mere](https://api-docs.deepseek.com/quick_start/pricing/). -Grænserne er defineret i dollarværdi. Det betyder, at dit faktiske antal anmodninger afhænger af den model, du bruger. Billigere modeller som MiMo-V2.5 tillader flere anmodninger, mens dyrere modeller som GLM-5.2 tillader færre. +### Estimerede anmodninger -Tabellen nedenfor giver et estimeret antal anmodninger baseret på typiske Go-forbrugsmønstre: +Tabellen nedenfor viser et estimeret antal anmodninger baseret på typiske Go-forbrugsmønstre: | Model | anmodninger pr. 5 timer | anmodninger pr. uge | anmodninger pr. måned | -| ---------------------------- | ----------------------- | ------------------- | --------------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Estimaterne bruger følgende antal tokens pr. anmodning; det faktiske forbrug varierer. @@ -203,50 +249,6 @@ Estimaterne bruger følgende antal tokens pr. anmodning; det faktiske forbrug va - MiMo-V2.5-Pro — 790 input, 86.000 cachelagrede, 305 output-tokens pr. anmodning - Omen Alpha — 300 input-, 40.000 cachede, 100 output-tokens pr. anmodning -Estimaterne er også baseret på følgende priser pr. 1M tokens og det månedlige forbrug, der er inkluderet med hver model: - -| Model | Input | Output | Cached Read | Cached Write | Forbrug | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak-tiderne er 01:00-04:00 og 06:00-10:00 UTC fra mandag til fredag; alle andre tider, herunder weekender, er Off-Peak. [Læs mere](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Billeder konverteres til tokens baseret på deres dimensioner og afregnes som inputtokens sammen med teksttokens. [Læs mere](https://api-docs.deepseek.com/quick_start/pricing/). - Du kan spore dit nuværende forbrug i **konsollen**. :::tip @@ -267,13 +269,13 @@ når du har nået dine forbrugsgrænser, i stedet for at blokere anmodninger. ### Hvorfor nogle modeller har lavere forbrug -Med Go betaler du $10/måned, og for de fleste modeller sigter vi mod at give dig 6x så meget i forbrug. +Med Go betaler du $10/måned, og det inkluderede månedlige forbrug varierer efter model. -For de fleste modeller gør vi dette muligt gennem mængderabatter og reserveret GPU-kapacitet. Vi giver dig derefter disse besparelser videre gennem 6x-multiplikatoren. +For de fleste modeller gør vi dette muligt gennem mængderabatter og reserveret GPU-kapacitet. Vi giver dig derefter disse besparelser videre i form af mere månedligt forbrug. For nogle modeller har vi endnu ikke haft mulighed for at forhandle en rabat eller hoste dem til en lavere pris, enten fordi modellen er ny, eller fordi dens offentlige pris allerede er nedsat. -Med disse modeller får du stadig lidt mere, end hvis du betalte modeludbyderne direkte. Derfor er deres forbrugsmultiplikator lavere i tabellen ovenfor. +Med disse modeller får du stadig lidt mere, end hvis du betalte modeludbyderne direkte. Derfor er deres inkluderede månedlige forbrug lavere. --- diff --git a/packages/web/src/content/docs/de/go.mdx b/packages/web/src/content/docs/de/go.mdx index cac9b3d6e94e..2921f3716db5 100644 --- a/packages/web/src/content/docs/de/go.mdx +++ b/packages/web/src/content/docs/de/go.mdx @@ -126,47 +126,93 @@ oder sie ist unvollständig. Die verlinkten Berichte dokumentieren Fixes und Pro ## Nutzungslimits -OpenCode Go beinhaltet die folgenden Basislimits: +Nutzungslimits werden als monatliche Dollarbeträge festgelegt. Die folgende Tabelle zeigt das monatliche Limit und die Tokenpreise für jedes Modell. + +Für jedes Modell gelten folgende Nutzungslimits: 5 Stunden — 20 % des monatlichen Limits; wöchentlich — 50 %; und monatlich — 100 %. + +Wenn ein Modell beispielsweise ein monatliches Limit von $60 hat, kannst du bis zu folgende Beträge nutzen: + +- **5-Stunden-Limit** — Nutzung im Wert von $12 +- **Wöchentliches Limit** — Nutzung im Wert von $30 +- **Monatliches Limit** — Nutzung im Wert von $60 + +Tokenpreise gelten pro 1M Tokens. + +| Model | Input | Output | Cached Read | Cached Write | Monatliches Limit | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **5-Stunden-Limit** — 12 $ Nutzung -- **Wöchentliches Limit** — 30 $ Nutzung -- **Monatliches Limit** — 60 $ Nutzung +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Die Peak-Zeiten sind montags bis freitags von 01:00-04:00 und 06:00-10:00 UTC; alle anderen Zeiten, einschließlich der Wochenenden, sind Off-Peak. [Mehr erfahren](https://api-docs.deepseek.com/quick_start/pricing/). -Das effektive Kontingent variiert je nach Modell; siehe die Tabelle unten. +**DeepSeek V4 Flash Vision Exp:** Bilder werden anhand ihrer Abmessungen in Tokens umgewandelt und zusammen mit Text-Tokens als Input-Tokens abgerechnet. [Mehr erfahren](https://api-docs.deepseek.com/quick_start/pricing/). -Limits sind in Dollarwerten definiert. Das bedeutet, dass die tatsächliche Anzahl deiner Anfragen von dem von dir genutzten Modell abhängt. Günstigere Modelle wie MiMo-V2.5 erlauben mehr Anfragen, während teurere Modelle wie GLM-5.2 weniger erlauben. +### Geschätzte Anfragen -Die folgende Tabelle zeigt eine geschätzte Anzahl von Anfragen basierend auf typischen Go-Nutzungsmustern: +Die folgende Tabelle enthält eine geschätzte Anzahl von Anfragen basierend auf typischen Go-Nutzungsmustern: | Model | Anfragen pro 5 Stunden | Anfragen pro Woche | Anfragen pro Monat | -| ---------------------------- | ---------------------- | ------------------ | ------------------ | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Die Schätzungen verwenden die folgenden Token-Anzahlen pro Anfrage; die tatsächliche Nutzung variiert. @@ -195,50 +241,6 @@ Die Schätzungen verwenden die folgenden Token-Anzahlen pro Anfrage; die tatsäc - MiMo-V2.5-Pro — 790 Input-, 86.000 Cached-, 305 Output-Tokens pro Anfrage - Omen Alpha — 300 Input-, 40.000 Cached-, 100 Output-Tokens pro Anfrage -Die Schätzungen basieren außerdem auf den folgenden Preisen pro 1M Tokens und der monatlichen Nutzung, die bei jedem Modell enthalten ist: - -| Model | Input | Output | Cached Read | Cached Write | Nutzung | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Die Peak-Zeiten sind montags bis freitags von 01:00-04:00 und 06:00-10:00 UTC; alle anderen Zeiten, einschließlich der Wochenenden, sind Off-Peak. [Mehr erfahren](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Bilder werden anhand ihrer Abmessungen in Tokens umgewandelt und zusammen mit Text-Tokens als Input-Tokens abgerechnet. [Mehr erfahren](https://api-docs.deepseek.com/quick_start/pricing/). - Du kannst deine aktuelle Nutzung in der **Console** verfolgen. :::tip @@ -257,13 +259,13 @@ Wenn du auch Guthaben auf deinem Zen-Konto hast, kannst du in der Console die Op ### Warum einige Modelle weniger Nutzung bieten -Mit Go zahlst du $10/Monat, und bei den meisten Modellen ist unser Ziel, dir dafür das Sechsfache dieses Betrags als Nutzungsguthaben zu bieten. +Mit Go zahlst du $10/Monat, und die enthaltene monatliche Nutzung variiert je nach Modell. -Bei den meisten Modellen ermöglichen wir dies durch Mengenrabatte und reservierte GPU-Kapazität. Diese Ersparnisse geben wir dann über den 6x-Multiplikator an dich weiter. +Bei den meisten Modellen ermöglichen wir dies durch Mengenrabatte und reservierte GPU-Kapazität. Diese Ersparnisse geben wir dann in Form von zusätzlicher monatlicher Nutzung an dich weiter. Bei einigen Modellen hatten wir bisher keine Gelegenheit, einen Rabatt auszuhandeln oder sie kostengünstiger zu hosten, entweder weil das jeweilige Modell neu oder sein öffentlicher Preis bereits rabattiert ist. -Bei diesen Modellen erhältst du immer noch etwas mehr, als wenn du die Modellanbieter direkt bezahlen würdest. Deshalb ist ihr Nutzungsmultiplikator in der Tabelle oben niedriger. +Bei diesen Modellen erhältst du immer noch etwas mehr, als wenn du die Modellanbieter direkt bezahlen würdest. Deshalb ist ihre enthaltene monatliche Nutzung geringer. --- diff --git a/packages/web/src/content/docs/es/go.mdx b/packages/web/src/content/docs/es/go.mdx index 4f120adb5dea..304cbec24086 100644 --- a/packages/web/src/content/docs/es/go.mdx +++ b/packages/web/src/content/docs/es/go.mdx @@ -134,22 +134,67 @@ investigamos. Los informes enlazados permiten seguir las correcciones y las solu ## Límites de uso -OpenCode Go incluye los siguientes límites base: +Los límites de uso se definen como importes mensuales en dólares. La siguiente tabla muestra el límite mensual y los costes de tokens de cada modelo. + +Cada modelo tiene los siguientes límites de uso: 5 horas — 20 % del límite mensual; semanal — 50 %; y mensual — 100 %. + +Por ejemplo, si un modelo tiene un límite mensual de $60, puedes gastar hasta: - **Límite de 5 horas** — $12 de uso - **Límite semanal** — $30 de uso - **Límite mensual** — $60 de uso -La asignación efectiva varía según el modelo; consulta la tabla siguiente. +Los precios de tokens se indican por 1M tokens. + +| Modelo | Entrada | Salida | Lectura en caché | Escritura en caché | Límite mensual | +| --------------------------------------- | ------- | ------ | ---------------- | ------------------ | ---- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -Los límites se definen en valor en dólares. Esto significa que tu cantidad real de peticiones depende del modelo que uses. Los modelos más económicos como MiMo-V2.5 permiten más peticiones, mientras que los modelos de mayor costo como GLM-5.2 permiten menos. +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Las horas Peak son 01:00-04:00 y 06:00-10:00 UTC, de lunes a viernes; todas las demás horas, incluidos los fines de semana, son Off-Peak. [Más información](https://api-docs.deepseek.com/quick_start/pricing/). -La siguiente tabla proporciona una cantidad estimada de peticiones basada en los patrones típicos de uso de Go: +**DeepSeek V4 Flash Vision Exp:** Las imágenes se convierten en tokens según sus dimensiones y se facturan como tokens de entrada junto con los tokens de texto. [Más información](https://api-docs.deepseek.com/quick_start/pricing/). + +### Peticiones estimadas + +La siguiente tabla ofrece una cantidad estimada de peticiones basada en los patrones típicos de uso de Go: | Model | peticiones por 5 horas | peticiones por semana | peticiones por mes | | ---------------------------- | ---------------------- | --------------------- | ------------------ | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -174,7 +219,8 @@ La siguiente tabla proporciona una cantidad estimada de peticiones basada en los | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Las estimaciones usan las siguientes cantidades de tokens por petición; el uso real varía. @@ -203,50 +249,6 @@ Las estimaciones usan las siguientes cantidades de tokens por petición; el uso - MiMo-V2.5-Pro — 790 tokens de entrada, 86,000 en caché, 305 tokens de salida por petición - Omen Alpha — 300 tokens de entrada, 40,000 en caché, 100 tokens de salida por petición -Las estimaciones también se basan en los siguientes precios por 1M tokens y en el uso mensual incluido con cada modelo: - -| Modelo | Entrada | Salida | Lectura en caché | Escritura en caché | Uso | -| --------------------------------------- | ------- | ------ | ---------------- | ------------------ | ---- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Las horas Peak son 01:00-04:00 y 06:00-10:00 UTC, de lunes a viernes; todas las demás horas, incluidos los fines de semana, son Off-Peak. [Más información](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Las imágenes se convierten en tokens según sus dimensiones y se facturan como tokens de entrada junto con los tokens de texto. [Más información](https://api-docs.deepseek.com/quick_start/pricing/). - Puedes realizar un seguimiento de tu uso actual en la **consola**. :::tip @@ -267,13 +269,13 @@ después de que hayas alcanzado tus límites de uso en lugar de bloquear las pet ### Por qué algunos modelos incluyen menos uso -Con Go, pagas $10/mes y, para la mayoría de los modelos, nuestro objetivo es ofrecerte un uso equivalente a 6 veces esa cantidad. +Con Go, pagas $10/mes y el uso mensual incluido varía según el modelo. -Para la mayoría de los modelos, lo conseguimos mediante descuentos por volumen y capacidad de GPU reservada. Ese ahorro se traduce en un multiplicador de 6x para ti. +Para la mayoría de los modelos, lo conseguimos mediante descuentos por volumen y capacidad de GPU reservada. Te trasladamos ese ahorro en forma de un mayor uso mensual. Para algunos modelos, todavía no hemos tenido la oportunidad de negociar un descuento o alojarlos a un coste menor, ya sea porque el modelo es nuevo o porque su precio público ya incluye un descuento. -Con estos modelos, aun así obtienes un poco más que si pagaras directamente a los proveedores de modelos; por eso su multiplicador de uso es menor en la tabla anterior. +Con estos modelos, aun así obtienes un poco más que si pagaras directamente a los proveedores de modelos; por eso su uso mensual incluido es menor. --- diff --git a/packages/web/src/content/docs/fr/go.mdx b/packages/web/src/content/docs/fr/go.mdx index 06c4452afc72..05f472ede29e 100644 --- a/packages/web/src/content/docs/fr/go.mdx +++ b/packages/web/src/content/docs/fr/go.mdx @@ -124,47 +124,93 @@ ou ne les prennent en charge que partiellement. Les rapports associés permetten ## Limites d'utilisation -OpenCode Go inclut les limites de base suivantes : +Les limites d’utilisation sont définies sous forme de montants mensuels en dollars. Le tableau ci-dessous indique la limite mensuelle et les prix des tokens pour chaque modèle. + +Chaque modèle est soumis aux limites d’utilisation suivantes : 5 heures — 20 % de la limite mensuelle ; hebdomadaire — 50 % ; et mensuelle — 100 %. + +Par exemple, si un modèle a une limite mensuelle de $60, vous pouvez utiliser jusqu’à : + +- **Limite de 5 heures** — $12 d’utilisation +- **Limite hebdomadaire** — $30 d’utilisation +- **Limite mensuelle** — $60 d’utilisation + +Les prix des tokens sont indiqués par million de tokens. + +| Modèle | Input | Output | Cached Read | Cached Write | Limite mensuelle | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **Limite de 5 heures** — 12 $ d'utilisation -- **Limite hebdomadaire** — 30 $ d'utilisation -- **Limite mensuelle** — 60 $ d'utilisation +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Les heures Peak sont 01:00-04:00 et 06:00-10:00 UTC, du lundi au vendredi ; toutes les autres heures, y compris le week-end, sont Off-Peak. [En savoir plus](https://api-docs.deepseek.com/quick_start/pricing/). -L'allocation effective varie selon le modèle ; consultez le tableau ci-dessous. +**DeepSeek V4 Flash Vision Exp:** Les images sont converties en tokens selon leurs dimensions et facturées comme tokens d’entrée avec les tokens de texte. [En savoir plus](https://api-docs.deepseek.com/quick_start/pricing/). -Les limites sont définies en valeur monétaire (dollars). Cela signifie que votre nombre réel de requêtes dépend du modèle que vous utilisez. Les modèles moins chers comme MiMo-V2.5 permettent plus de requêtes, tandis que les modèles plus coûteux comme GLM-5.2 en permettent moins. +### Requêtes estimées -Le tableau ci-dessous fournit une estimation du nombre de requêtes basée sur des modèles d'utilisation typiques de Go : +Le tableau ci-dessous fournit une estimation du nombre de requêtes basée sur les habitudes d’utilisation typiques de Go : | Model | requêtes par 5 heures | requêtes par semaine | requêtes par mois | -| ---------------------------- | --------------------- | -------------------- | ----------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Les estimations utilisent les nombres de tokens suivants par requête ; l'utilisation réelle varie. @@ -193,50 +239,6 @@ Les estimations utilisent les nombres de tokens suivants par requête ; l'utilis - MiMo-V2.5-Pro — 790 tokens en entrée, 86,000 en cache, 305 tokens en sortie par requête - Omen Alpha — 300 tokens en entrée, 40 000 en cache, 100 tokens en sortie par requête -Les estimations sont également basées sur les prix suivants par 1M tokens et sur l'utilisation mensuelle incluse avec chaque modèle : - -| Modèle | Input | Output | Cached Read | Cached Write | Utilisation | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Les heures Peak sont 01:00-04:00 et 06:00-10:00 UTC, du lundi au vendredi ; toutes les autres heures, y compris le week-end, sont Off-Peak. [En savoir plus](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Les images sont converties en tokens selon leurs dimensions et facturées comme tokens d’entrée avec les tokens de texte. [En savoir plus](https://api-docs.deepseek.com/quick_start/pricing/). - Vous pouvez suivre votre utilisation actuelle dans la **console**. :::tip @@ -255,13 +257,13 @@ Si vous avez également des crédits sur votre solde Zen, vous pouvez activer l' ### Pourquoi certains modèles offrent un volume d'utilisation inférieur -Avec Go, vous payez 10 $/mois et, pour la plupart des modèles, nous cherchons à vous offrir un volume d'utilisation équivalant à 6 fois ce montant. +Avec Go, vous payez 10 $/mois, et l’utilisation mensuelle incluse varie selon le modèle. -Pour la plupart des modèles, nous y parvenons grâce à des remises sur volume et à une capacité GPU réservée. Nous vous faisons ensuite bénéficier de ces économies grâce à un coefficient multiplicateur de 6. +Pour la plupart des modèles, nous y parvenons grâce à des remises sur volume et à une capacité GPU réservée. Nous vous faisons ensuite bénéficier de ces économies sous la forme d’une utilisation mensuelle plus élevée. Pour certains modèles, nous n'avons pas encore eu l'occasion de négocier une remise ou de les héberger à moindre coût, soit parce que le modèle est nouveau, soit parce que son tarif public est déjà réduit. -Pour ces modèles, vous obtenez tout de même un peu plus que si vous payiez directement les fournisseurs de modèles ; c'est pourquoi leur multiplicateur d'utilisation est plus faible dans le tableau ci-dessus. +Pour ces modèles, vous obtenez tout de même un peu plus que si vous payiez directement les fournisseurs de modèles ; c’est pourquoi leur utilisation mensuelle incluse est plus faible. --- diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index ea3dfd047a5f..afa597baae52 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -134,22 +134,69 @@ investigated. The linked reports track fixes and workarounds. ## Usage limits -OpenCode Go includes the following base limits: +Usage limits are defined as monthly dollar amounts. The table below shows the +monthly limit and token costs for each model. -- **5 hour limit** — $12 of usage +Each model has the following usage limits: 5-hour — 20% of the monthly limit; +weekly — 50%; and monthly — 100%. + +For example, if a model has a $60 monthly limit, you can spend up to: + +- **5-hour limit** — $12 of usage - **Weekly limit** — $30 of usage - **Monthly limit** — $60 of usage -Effective allowance varies by model; see the table below. +Token prices are per 1M tokens. + +| Model | Input | Output | Cached Read | Cached Write | Monthly limit | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -Limits are defined in dollar value. This means your actual request count depends on the model you use. Cheaper models like MiMo-V2.5 allow for more requests, while higher-cost models like GLM-5.2 allow for fewer. +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak hours are 01:00-04:00 and 06:00-10:00 UTC, Monday through Friday; all other hours, including weekends, are Off-Peak. [Learn more](https://api-docs.deepseek.com/quick_start/pricing/). + +**DeepSeek V4 Flash Vision Exp:** Images are converted into tokens based on their dimensions and billed as input tokens alongside text tokens. [Learn more](https://api-docs.deepseek.com/quick_start/pricing/). + +### Estimated requests The table below provides an estimated request count based on typical Go usage patterns: | Model | requests per 5 hour | requests per week | requests per month | | ---------------------------- | ------------------- | ----------------- | ------------------ | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -174,7 +221,8 @@ The table below provides an estimated request count based on typical Go usage pa | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | The estimates use the following token counts per request; actual usage varies. @@ -203,50 +251,6 @@ The estimates use the following token counts per request; actual usage varies. - Hy3 — 830 input, 71,500 cached, 295 output tokens per request - Omen Alpha — 300 input, 40,000 cached, 100 output tokens per request -The estimates are also based on the following prices per 1M tokens and the monthly usage included with each model: - -| Model | Input | Output | Cached Read | Cached Write | Usage | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak hours are 01:00-04:00 and 06:00-10:00 UTC, Monday through Friday; all other hours, including weekends, are Off-Peak. [Learn more](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Images are converted into tokens based on their dimensions and billed as input tokens alongside text tokens. [Learn more](https://api-docs.deepseek.com/quick_start/pricing/). - You can track your current usage in the **console**. :::tip @@ -267,13 +271,13 @@ after you've reached your usage limits instead of blocking requests. ### Why some models have lower usage -With Go, you pay $10/month and, for most models, we aim to give you 6x that in usage. +With Go, you pay $10/month, and the included monthly usage varies by model. -For most models, we make this work through bulk discounts and reserved GPU capacity. We then pass those savings on to you through the 6x multiplier. +For most models, we make this work through bulk discounts and reserved GPU capacity. We then pass those savings on to you as higher monthly usage. For some models, we haven't had the opportunity to negotiate a discount or host them at a lower cost, either because the model is new or because their public pricing is already discounted. -For these models, you still get a little more than if you paid the model providers directly; this is why their usage mulitplier is lower in the table above. +For these models, you still get a little more than if you paid the model providers directly; this is why their included monthly usage is lower. --- diff --git a/packages/web/src/content/docs/it/go.mdx b/packages/web/src/content/docs/it/go.mdx index 581a46b244dc..154031e0e1bf 100644 --- a/packages/web/src/content/docs/it/go.mdx +++ b/packages/web/src/content/docs/it/go.mdx @@ -132,47 +132,93 @@ o le supportano solo parzialmente. Le segnalazioni collegate consentono di segui ## Limiti di utilizzo -OpenCode Go include i seguenti limiti di base: +I limiti di utilizzo sono definiti come importi mensili in dollari. La tabella seguente mostra il limite mensile e i prezzi dei token per ciascun modello. + +Ogni modello ha i seguenti limiti di utilizzo: 5 ore — 20% del limite mensile; settimanale — 50%; mensile — 100%. + +Ad esempio, se un modello ha un limite mensile di $60, puoi utilizzare fino a: + +- **Limite di 5 ore** — $12 di utilizzo +- **Limite settimanale** — $30 di utilizzo +- **Limite mensile** — $60 di utilizzo + +I prezzi dei token sono indicati per 1M token. + +| Modello | Input | Output | Cached Read | Cached Write | Limite mensile | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **Limite di 5 ore** — 12 $ di utilizzo -- **Limite settimanale** — 30 $ di utilizzo -- **Limite mensile** — 60 $ di utilizzo +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Gli orari Peak sono 01:00-04:00 e 06:00-10:00 UTC, dal lunedì al venerdì; tutti gli altri orari, inclusi i fine settimana, sono Off-Peak. [Scopri di più](https://api-docs.deepseek.com/quick_start/pricing/). -La quota effettiva varia in base al modello; consulta la tabella seguente. +**DeepSeek V4 Flash Vision Exp:** Le immagini vengono convertite in token in base alle loro dimensioni e fatturate come token di input insieme ai token di testo. [Scopri di più](https://api-docs.deepseek.com/quick_start/pricing/). -I limiti sono definiti in valore in dollari. Questo significa che il conteggio effettivo delle richieste dipende dal modello utilizzato. Modelli più economici come MiMo-V2.5 consentono più richieste, mentre modelli più costosi come GLM-5.2 ne consentono di meno. +### Richieste stimate -La tabella seguente fornisce una stima del conteggio delle richieste in base a pattern di utilizzo tipici di Go: +La tabella seguente fornisce una stima del numero di richieste basata su pattern di utilizzo tipici di Go: | Model | richieste ogni 5 ore | richieste a settimana | richieste al mese | -| ---------------------------- | -------------------- | --------------------- | ----------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Le stime utilizzano i seguenti conteggi di token per richiesta; l'utilizzo effettivo varia. @@ -201,50 +247,6 @@ Le stime utilizzano i seguenti conteggi di token per richiesta; l'utilizzo effet - MiMo-V2.5-Pro — 790 di input, 86.000 in cache, 305 token di output per richiesta - Omen Alpha — 300 token di input, 40.000 token in cache, 100 token di output per richiesta -Le stime si basano anche sui seguenti prezzi per 1M token e sull'utilizzo mensile incluso con ciascun modello: - -| Modello | Input | Output | Cached Read | Cached Write | Utilizzo | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | -------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Gli orari Peak sono 01:00-04:00 e 06:00-10:00 UTC, dal lunedì al venerdì; tutti gli altri orari, inclusi i fine settimana, sono Off-Peak. [Scopri di più](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Le immagini vengono convertite in token in base alle loro dimensioni e fatturate come token di input insieme ai token di testo. [Scopri di più](https://api-docs.deepseek.com/quick_start/pricing/). - Puoi monitorare il tuo utilizzo attuale nella **console**. :::tip @@ -265,13 +267,13 @@ dopo che avrai raggiunto i limiti di utilizzo invece di bloccare le richieste. ### Perché alcuni modelli hanno un utilizzo inferiore -Con Go, paghi $10/mese e, per la maggior parte dei modelli, puntiamo a offrirti un utilizzo pari a 6 volte tale importo. +Con Go, paghi $10/mese e l’utilizzo mensile incluso varia in base al modello. -Per la maggior parte dei modelli, ci riusciamo grazie a sconti sui volumi e capacità GPU riservata. Ti facciamo quindi beneficiare di questi risparmi tramite il moltiplicatore 6x. +Per la maggior parte dei modelli, ci riusciamo grazie a sconti sui volumi e capacità GPU riservata. Ti facciamo quindi beneficiare di questi risparmi offrendo un utilizzo mensile maggiore. Per alcuni modelli, non abbiamo ancora avuto l'opportunità di negoziare uno sconto o di ospitarli a un costo inferiore, perché il modello è nuovo oppure perché il prezzo pubblico è già scontato. -Per questi modelli, ottieni comunque un po' più di utilizzo rispetto a quanto otterresti pagando direttamente i provider dei modelli; per questo il loro moltiplicatore di utilizzo è più basso nella tabella precedente. +Per questi modelli, ottieni comunque un po’ più di utilizzo rispetto a quanto otterresti pagando direttamente i provider dei modelli; per questo il loro utilizzo mensile incluso è inferiore. --- diff --git a/packages/web/src/content/docs/ja/go.mdx b/packages/web/src/content/docs/ja/go.mdx index a7b402f0c7c7..3dd3c966582a 100644 --- a/packages/web/src/content/docs/ja/go.mdx +++ b/packages/web/src/content/docs/ja/go.mdx @@ -121,47 +121,93 @@ OpenCodeに加えて、以下のクライアントがOpenCode Goで正常に動 ## 利用制限 -OpenCode Goには以下の基本制限が含まれています: +利用制限は月額(ドル)で定義されています。以下の表は、各モデルの月間上限とトークン単価を示しています。 + +各モデルの利用制限は、5時間で月間上限の20%、週間で50%、月間で100%です。 + +たとえば、月間上限が$60のモデルでは、最大で以下の金額を利用できます。 + +- **5時間の制限** — $12の利用 +- **週間の制限** — $30の利用 +- **月間の制限** — $60の利用 + +トークン単価は100万トークンあたりです。 + +| Model | Input | Output | Cached Read | Cached Write | 月間上限 | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **5時間の制限** — 12ドル分の利用 -- **週間の制限** — 30ドル分の利用 -- **月間の制限** — 60ドル分の利用 +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak時間は月曜日から金曜日の01:00-04:00と06:00-10:00 UTCで、週末を含むそれ以外の時間はすべてOff-Peakです。[詳しく見る](https://api-docs.deepseek.com/quick_start/pricing/)。 -有効な利用枠はモデルによって異なります。下の表をご覧ください。 +**DeepSeek V4 Flash Vision Exp:** 画像はサイズに基づいてトークンに変換され、テキストトークンと合わせて入力トークンとして課金されます。 [詳しく見る](https://api-docs.deepseek.com/quick_start/pricing/)。 -制限はドル単位で定義されています。つまり、実際のリクエスト数は使用するモデルによって異なります。MiMo-V2.5のような安価なモデルではより多くのリクエストが可能ですが、GLM-5.2のような高コストのモデルではリクエスト数が少なくなります。 +### 推定リクエスト数 -以下の表は、一般的なGoの利用パターンに基づいた推定リクエスト数を示しています: +以下の表は、一般的なGoの利用パターンに基づく推定リクエスト数を示しています。 | Model | 5時間あたりのリクエスト数 | 週間リクエスト数 | 月間リクエスト数 | -| ---------------------------- | ------------------------- | ---------------- | ---------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | 推定値には、リクエストあたり以下のトークン数を使用しています。実際の使用量は異なります。 @@ -190,50 +236,6 @@ OpenCode Goには以下の基本制限が含まれています: - MiMo-V2.5-Pro — リクエストあたり 入力 790トークン、キャッシュ 86,000トークン、出力 305トークン - Omen Alpha — リクエストあたり 入力 300トークン、キャッシュ 40,000トークン、出力 100トークン -推定値は、100万トークンあたりの以下の価格と、各モデルに含まれる月間利用枠にも基づいています: - -| Model | Input | Output | Cached Read | Cached Write | Usage | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak時間は月曜日から金曜日の01:00-04:00と06:00-10:00 UTCで、週末を含むそれ以外の時間はすべてOff-Peakです。[詳しく見る](https://api-docs.deepseek.com/quick_start/pricing/)。 - -**DeepSeek V4 Flash Vision Exp:** 画像はサイズに基づいてトークンに変換され、テキストトークンと合わせて入力トークンとして課金されます。 [詳しく見る](https://api-docs.deepseek.com/quick_start/pricing/)。 - 現在の利用状況は**コンソール**で追跡できます。 :::tip @@ -252,13 +254,13 @@ Zen残高にクレジットがある場合は、コンソールで**Use balance* ### 一部のモデルの利用枠が少ない理由 -Goでは月額$10を支払い、ほとんどのモデルでその6倍の利用枠を提供することを目指しています。 +Goでは月額$10を支払い、含まれる月間利用枠はモデルによって異なります。 -ほとんどのモデルでは、ボリュームディスカウントと予約済みのGPUキャパシティによってこれを実現しています。そして、その節約分を6倍の倍率で還元しています。 +ほとんどのモデルでは、ボリュームディスカウントと予約済みのGPUキャパシティによってこれを実現しています。そして、その節約分を月間利用枠の増加という形で還元しています。 一部のモデルでは、モデルが新しい、または公開価格がすでに割引されているため、割引を交渉したり、より低コストでホストしたりする機会がまだありません。 -これらのモデルでも、モデルプロバイダーに直接支払う場合より少し多く利用できます。そのため、上の表では利用枠の倍率が低くなっています。 +これらのモデルでも、モデルプロバイダーに直接支払う場合より少し多く利用できます。そのため、含まれる月間利用枠が少なくなっています。 --- diff --git a/packages/web/src/content/docs/ko/go.mdx b/packages/web/src/content/docs/ko/go.mdx index 5f35bef2c05d..8a18c6665d94 100644 --- a/packages/web/src/content/docs/ko/go.mdx +++ b/packages/web/src/content/docs/ko/go.mdx @@ -121,47 +121,93 @@ OpenCode 외에도 다음 클라이언트가 OpenCode Go에서 올바르게 작 ## 사용 한도 -OpenCode Go에는 다음과 같은 기본 한도가 포함됩니다. +사용 한도는 월간 달러 금액으로 정의됩니다. 아래 표는 각 모델의 월간 한도와 토큰 비용을 보여줍니다. + +각 모델의 사용 한도는 5시간 한도는 월간 한도의 20%, 주간 한도는 50%, 월간 한도는 100%입니다. + +예를 들어 월간 한도가 $60인 모델은 다음 금액까지 사용할 수 있습니다. + +- **5시간 한도** — $12 사용 +- **주간 한도** — $30 사용 +- **월간 한도** — $60 사용 + +토큰 가격은 1M tokens 기준입니다. + +| Model | Input | Output | Cached Read | Cached Write | 월간 한도 | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **5시간 한도** — 사용량 $12 -- **주간 한도** — 사용량 $30 -- **월간 한도** — 사용량 $60 +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 시간은 월요일부터 금요일까지 01:00-04:00 및 06:00-10:00 UTC이며, 주말을 포함한 그 외 모든 시간은 Off-Peak입니다. [자세히 알아보기](https://api-docs.deepseek.com/quick_start/pricing/). -실제 적용되는 할당량은 모델마다 다릅니다. 아래 표를 참조하세요. +**DeepSeek V4 Flash Vision Exp:** 이미지는 크기에 따라 토큰으로 변환되며 텍스트 토큰과 함께 입력 토큰으로 청구됩니다. [자세히 알아보기](https://api-docs.deepseek.com/quick_start/pricing/). -한도는 달러 금액 기준으로 정의됩니다. 즉, 실제 요청 횟수는 사용하는 모델에 따라 달라집니다. MiMo-V2.5처럼 저렴한 모델은 더 많은 요청이 가능하고, GLM-5.2처럼 비용이 더 높은 모델은 더 적은 요청이 가능합니다. +### 예상 요청 횟수 아래 표는 일반적인 Go 사용 패턴을 기준으로 한 예상 요청 횟수를 보여줍니다. | Model | 5시간당 요청 횟수 | 주간 요청 횟수 | 월간 요청 횟수 | -| ---------------------------- | ----------------- | -------------- | -------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | 예상치에는 요청당 다음 토큰 수를 사용하며, 실제 사용량은 달라질 수 있습니다. @@ -190,50 +236,6 @@ OpenCode Go에는 다음과 같은 기본 한도가 포함됩니다. - MiMo-V2.5-Pro — 요청당 입력 790, 캐시 86,000, 출력 토큰 305 - Omen Alpha — 요청당 입력 300, 캐시 40,000, 출력 토큰 100 -이 예상치는 또한 1M tokens당 다음 가격과 각 모델에 포함된 월간 사용량을 기준으로 합니다. - -| Model | Input | Output | Cached Read | Cached Write | Usage | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 시간은 월요일부터 금요일까지 01:00-04:00 및 06:00-10:00 UTC이며, 주말을 포함한 그 외 모든 시간은 Off-Peak입니다. [자세히 알아보기](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** 이미지는 크기에 따라 토큰으로 변환되며 텍스트 토큰과 함께 입력 토큰으로 청구됩니다. [자세히 알아보기](https://api-docs.deepseek.com/quick_start/pricing/). - 현재 사용량은 **console**에서 확인할 수 있습니다. :::tip @@ -252,13 +254,13 @@ Zen 잔액에 크레딧도 있다면, console에서 **Use balance** 옵션을 ### 일부 모델의 사용량이 더 적은 이유 -Go에서는 월 $10를 지불하며, 대부분의 모델에 대해 그 6배의 사용량을 제공하는 것을 목표로 합니다. +Go에서는 월 $10를 지불하며, 포함된 월간 사용량은 모델마다 다릅니다. -대부분의 모델은 대량 할인과 예약된 GPU 용량을 통해 이를 실현합니다. 그런 다음 6배의 사용량 배율을 통해 절감 혜택을 사용자에게 돌려드립니다. +대부분의 모델은 대량 할인과 예약된 GPU 용량을 통해 이를 실현합니다. 그런 다음 더 많은 월간 사용량을 제공하는 방식으로 절감 혜택을 사용자에게 돌려드립니다. 일부 모델은 새로 출시되었거나 공개 가격에 이미 할인이 적용되어 있어, 아직 할인을 협상하거나 더 저렴한 비용으로 호스팅할 기회가 없었습니다. -이러한 모델도 모델 제공자에게 직접 비용을 지불할 때보다 약간 더 많은 사용량을 제공합니다. 이것이 위 표에서 해당 모델의 사용량 배율이 더 낮은 이유입니다. +이러한 모델도 모델 제공자에게 직접 비용을 지불할 때보다 약간 더 많은 사용량을 제공합니다. 이것이 해당 모델에 포함된 월간 사용량이 더 적은 이유입니다. --- diff --git a/packages/web/src/content/docs/nb/go.mdx b/packages/web/src/content/docs/nb/go.mdx index 44c019f31987..ed4f636257c9 100644 --- a/packages/web/src/content/docs/nb/go.mdx +++ b/packages/web/src/content/docs/nb/go.mdx @@ -134,47 +134,93 @@ undersøkte. De lenkede rapportene følger rettelser og midlertidige løsninger. ## Bruksgrenser -OpenCode Go inkluderer følgende basisgrenser: +Bruksgrenser defineres som månedlige dollarbeløp. Tabellen nedenfor viser den månedlige grensen og tokenkostnadene for hver modell. + +Hver modell har følgende bruksgrenser: 5-timersgrense — 20 % av den månedlige grensen; ukentlig grense — 50 %; og månedlig grense — 100 %. + +Hvis en modell for eksempel har en månedlig grense på $60, kan du bruke opptil: - **5-timers grense** — $12 i bruk - **Ukentlig grense** — $30 i bruk - **Månedlig grense** — $60 i bruk -Den effektive bruken varierer etter modell; se tabellen nedenfor. +Tokenpriser er oppgitt per 1M tokens. + +| Model | Input | Output | Cached Read | Cached Write | Månedlig grense | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | + +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak-tidene er 01:00-04:00 og 06:00-10:00 UTC fra mandag til fredag; alle andre tider, inkludert helger, er Off-Peak. [Les mer](https://api-docs.deepseek.com/quick_start/pricing/). + +**DeepSeek V4 Flash Vision Exp:** Bilder konverteres til tokens basert på dimensjonene og faktureres som input-tokens sammen med tekst-tokens. [Les mer](https://api-docs.deepseek.com/quick_start/pricing/). -Grensene er definert i dollarverdi. Dette betyr at ditt faktiske antall forespørsler avhenger av modellen du bruker. Billigere modeller som MiMo-V2.5 tillater flere forespørsler, mens dyrere modeller som GLM-5.2 tillater færre. +### Estimerte forespørsler -Tabellen nedenfor gir et estimert antall forespørsler basert på typiske bruksmønstre for Go: +Tabellen nedenfor viser et estimert antall forespørsler basert på typiske bruksmønstre for Go: | Model | forespørsler per 5 timer | forespørsler per uke | forespørsler per måned | -| ---------------------------- | ------------------------ | -------------------- | ---------------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Estimatene bruker følgende antall tokens per forespørsel; faktisk bruk varierer. @@ -203,50 +249,6 @@ Estimatene bruker følgende antall tokens per forespørsel; faktisk bruk variere - MiMo-V2.5-Pro — 790 input, 86 000 bufret, 305 output-tokens per forespørsel - Omen Alpha — 300 input-, 40 000 bufrede, 100 output-tokens per forespørsel -Estimatene er også basert på følgende priser per 1M tokens og den månedlige bruken som er inkludert med hver modell: - -| Model | Input | Output | Cached Read | Cached Write | Bruk | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ---- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak-tidene er 01:00-04:00 og 06:00-10:00 UTC fra mandag til fredag; alle andre tider, inkludert helger, er Off-Peak. [Les mer](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Bilder konverteres til tokens basert på dimensjonene og faktureres som input-tokens sammen med tekst-tokens. [Les mer](https://api-docs.deepseek.com/quick_start/pricing/). - Du kan spore din nåværende bruk i **konsollen**. :::tip @@ -267,13 +269,13 @@ etter at du har nådd bruksgrensene dine, i stedet for å blokkere forespørsler ### Hvorfor noen modeller har lavere bruk -Med Go betaler du $10/måned, og for de fleste modeller har vi som mål å gi deg seks ganger så mye bruk. +Med Go betaler du $10/måned, og den inkluderte månedlige bruken varierer etter modell. -For de fleste modeller får vi dette til gjennom volumrabatter og reservert GPU-kapasitet. Deretter gir vi disse besparelsene videre til deg gjennom 6x-multiplikatoren. +For de fleste modeller får vi dette til gjennom volumrabatter og reservert GPU-kapasitet. Deretter gir vi disse besparelsene videre til deg i form av mer månedlig bruk. For noen modeller har vi ikke hatt muligheten til å forhandle frem en rabatt eller drifte dem til en lavere kostnad, enten fordi modellen er ny, eller fordi den offentlige prisen allerede er rabattert. -For disse modellene får du fortsatt litt mer enn om du betalte modellleverandørene direkte. Derfor er bruksmultiplikatoren deres lavere i tabellen ovenfor. +For disse modellene får du fortsatt litt mer enn om du betalte modellleverandørene direkte. Derfor er den inkluderte månedlige bruken deres lavere. --- diff --git a/packages/web/src/content/docs/pl/go.mdx b/packages/web/src/content/docs/pl/go.mdx index 3e8213b8aeec..5c60f7772368 100644 --- a/packages/web/src/content/docs/pl/go.mdx +++ b/packages/web/src/content/docs/pl/go.mdx @@ -128,47 +128,93 @@ Raporty pod podanymi linkami służą do śledzenia poprawek i obejść. ## Limity użycia -OpenCode Go zawiera następujące limity bazowe: +Limity użycia są określane jako miesięczne kwoty w dolarach. Poniższa tabela przedstawia miesięczny limit i koszty tokenów dla każdego modelu. + +Każdy model ma następujące limity użycia: 5-godzinny — 20% miesięcznego limitu; tygodniowy — 50%; miesięczny — 100%. + +Na przykład, jeśli model ma miesięczny limit $60, możesz wykorzystać do: + +- **Limit 5-godzinny** — użycie o wartości $12 +- **Limit tygodniowy** — użycie o wartości $30 +- **Limit miesięczny** — użycie o wartości $60 + +Ceny tokenów podano za 1M tokenów. + +| Model | Wejście | Wyjście | Odczyt z cache | Zapis do cache | Limit miesięczny | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **Limit 5-godzinny** — użycie o wartości 12 $ -- **Limit tygodniowy** — użycie o wartości 30 $ -- **Limit miesięczny** — użycie o wartości 60 $ +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Godziny Peak to 01:00-04:00 i 06:00-10:00 UTC od poniedziałku do piątku; wszystkie pozostałe godziny, w tym weekendy, to Off-Peak. [Dowiedz się więcej](https://api-docs.deepseek.com/quick_start/pricing/). -Efektywny limit różni się w zależności od modelu; zobacz tabelę poniżej. +**DeepSeek V4 Flash Vision Exp:** Obrazy są przeliczane na tokeny na podstawie ich wymiarów i rozliczane jako tokeny wejściowe razem z tokenami tekstowymi. [Dowiedz się więcej](https://api-docs.deepseek.com/quick_start/pricing/). -Limity są zdefiniowane w wartości w dolarach. Oznacza to, że rzeczywista liczba żądań zależy od używanego modelu. Tańsze modele, takie jak MiMo-V2.5, pozwalają na więcej żądań, podczas gdy modele o wyższym koszcie, takie jak GLM-5.2, pozwalają na mniej. +### Szacunkowa liczba żądań Poniższa tabela przedstawia szacunkową liczbę żądań na podstawie typowych wzorców korzystania z Go: | Model | żądania na 5 godzin | żądania na tydzień | żądania na miesiąc | -| ---------------------------- | ------------------- | ------------------ | ------------------ | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Szacunki wykorzystują następującą liczbę tokenów na żądanie; rzeczywiste użycie jest zmienne. @@ -197,50 +243,6 @@ Szacunki wykorzystują następującą liczbę tokenów na żądanie; rzeczywiste - MiMo-V2.5-Pro — 790 tokenów wejściowych, 86 000 w pamięci podręcznej, 305 tokenów wyjściowych na żądanie - Omen Alpha — 300 tokenów wejściowych, 40 000 w pamięci podręcznej, 100 tokenów wyjściowych na żądanie -Szacunki opierają się również na następujących cenach za 1M tokenów oraz miesięcznym użyciu dostępnym dla każdego modelu: - -| Model | Wejście | Wyjście | Odczyt z cache | Zapis do cache | Użycie | -| --------------------------------------- | ------- | ------- | -------------- | -------------- | ------ | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Godziny Peak to 01:00-04:00 i 06:00-10:00 UTC od poniedziałku do piątku; wszystkie pozostałe godziny, w tym weekendy, to Off-Peak. [Dowiedz się więcej](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Obrazy są przeliczane na tokeny na podstawie ich wymiarów i rozliczane jako tokeny wejściowe razem z tokenami tekstowymi. [Dowiedz się więcej](https://api-docs.deepseek.com/quick_start/pricing/). - Możesz śledzić swoje bieżące zużycie w **konsoli**. :::tip @@ -259,13 +261,13 @@ Jeśli masz również środki na swoim saldzie Zen, możesz włączyć opcję ** ### Dlaczego niektóre modele mają niższe limity użycia -Go kosztuje $10/miesiąc, a w przypadku większości modeli naszym celem jest zapewnienie Ci użycia o wartości 6x większej niż ta kwota. +Go kosztuje $10/miesiąc, a miesięczne użycie w ramach subskrypcji różni się w zależności od modelu. -W przypadku większości modeli jest to możliwe dzięki rabatom hurtowym i zarezerwowanej mocy obliczeniowej GPU. Uzyskane w ten sposób oszczędności przekazujemy Tobie w postaci mnożnika 6x. +W przypadku większości modeli jest to możliwe dzięki rabatom hurtowym i zarezerwowanej mocy obliczeniowej GPU. Uzyskane w ten sposób oszczędności przekazujemy Tobie w postaci większego miesięcznego użycia. W przypadku niektórych modeli nie mieliśmy jeszcze możliwości wynegocjowania rabatu ani hostowania ich po niższym koszcie, ponieważ model jest nowy lub jego publiczny cennik już uwzględnia rabat. -W przypadku tych modeli nadal otrzymujesz nieco więcej, niż płacąc bezpośrednio ich dostawcom. Dlatego ich mnożnik użycia w powyższej tabeli jest niższy. +W przypadku tych modeli nadal otrzymujesz nieco więcej, niż płacąc bezpośrednio ich dostawcom. Dlatego ich miesięczne użycie w ramach subskrypcji jest niższe. --- diff --git a/packages/web/src/content/docs/pt-br/go.mdx b/packages/web/src/content/docs/pt-br/go.mdx index 98cef1325a66..ab40591b53e6 100644 --- a/packages/web/src/content/docs/pt-br/go.mdx +++ b/packages/web/src/content/docs/pt-br/go.mdx @@ -134,22 +134,67 @@ investigamos. Os relatórios vinculados acompanham correções e soluções alte ## Limites de uso -O OpenCode Go inclui os seguintes limites base: +Os limites de uso são definidos como valores mensais em dólares. A tabela abaixo mostra o limite mensal e os custos de tokens de cada modelo. -- **Limite de 5 horas** — US$ 12 de uso -- **Limite semanal** — US$ 30 de uso -- **Limite mensal** — US$ 60 de uso +Cada modelo tem os seguintes limites de uso: 5 horas — 20% do limite mensal; semanal — 50%; e mensal — 100%. -A cota efetiva varia conforme o modelo; consulte a tabela abaixo. +Por exemplo, se um modelo tiver um limite mensal de $60, você poderá gastar até: -Os limites são definidos em valor em dólares. Isso significa que a sua contagem real de requisições depende do modelo que você usa. Modelos mais baratos como o MiMo-V2.5 permitem mais requisições, enquanto modelos de custo mais alto como o GLM-5.2 permitem menos. +- **Limite de 5 horas** — $12 de uso +- **Limite semanal** — $30 de uso +- **Limite mensal** — $60 de uso -A tabela abaixo fornece uma contagem estimada de requisições com base nos padrões típicos de uso do Go: +Os preços de tokens são indicados por 1M tokens. + +| Modelo | Entrada | Saída | Leitura em cache | Escrita em cache | Limite mensal | +| --------------------------------------- | ------- | ------ | ---------------- | ---------------- | ---- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | + +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Os horários Peak são 01:00-04:00 e 06:00-10:00 UTC, de segunda a sexta-feira; todos os demais horários, incluindo os fins de semana, são Off-Peak. [Saiba mais](https://api-docs.deepseek.com/quick_start/pricing/). + +**DeepSeek V4 Flash Vision Exp:** As imagens são convertidas em tokens com base em suas dimensões e cobradas como tokens de entrada junto com os tokens de texto. [Saiba mais](https://api-docs.deepseek.com/quick_start/pricing/). + +### Requisições estimadas + +A tabela abaixo apresenta uma quantidade estimada de requisições com base nos padrões típicos de uso do Go: | Model | requisições por 5 horas | requisições por semana | requisições por mês | | ---------------------------- | ----------------------- | ---------------------- | ------------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -174,7 +219,8 @@ A tabela abaixo fornece uma contagem estimada de requisições com base nos padr | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | As estimativas usam as seguintes quantidades de tokens por requisição; o uso real varia. @@ -203,50 +249,6 @@ As estimativas usam as seguintes quantidades de tokens por requisição; o uso r - MiMo-V2.5-Pro — 790 tokens de entrada, 86.000 em cache, 305 tokens de saída por requisição - Omen Alpha — 300 tokens de entrada, 40.000 em cache, 100 tokens de saída por requisição -As estimativas também se baseiam nos seguintes preços por 1M tokens e no uso mensal incluído com cada modelo: - -| Modelo | Entrada | Saída | Leitura em cache | Escrita em cache | Uso | -| --------------------------------------- | ------- | ------ | ---------------- | ---------------- | ---- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Os horários Peak são 01:00-04:00 e 06:00-10:00 UTC, de segunda a sexta-feira; todos os demais horários, incluindo os fins de semana, são Off-Peak. [Saiba mais](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** As imagens são convertidas em tokens com base em suas dimensões e cobradas como tokens de entrada junto com os tokens de texto. [Saiba mais](https://api-docs.deepseek.com/quick_start/pricing/). - Você pode acompanhar o seu uso atual no **console**. :::tip @@ -267,13 +269,13 @@ após você atingir os seus limites de uso em vez de bloquear as requisições. ### Por que alguns modelos têm um uso menor -Com o Go, você paga $10/mês e, para a maioria dos modelos, nosso objetivo é oferecer 6x esse valor em uso. +Com o Go, você paga $10/mês, e o uso mensal incluído varia conforme o modelo. -Para a maioria dos modelos, conseguimos fazer isso por meio de descontos por volume e capacidade reservada de GPU. Repassamos essa economia a você por meio do multiplicador de 6x. +Para a maioria dos modelos, conseguimos fazer isso por meio de descontos por volume e capacidade reservada de GPU. Repassamos essa economia a você na forma de um uso mensal maior. Para alguns modelos, ainda não tivemos a oportunidade de negociar um desconto ou hospedá-los a um custo menor, seja porque o modelo é novo ou porque o preço público já tem desconto. -Para esses modelos, você ainda recebe um pouco mais do que receberia se pagasse diretamente aos provedores dos modelos; por isso, o multiplicador de uso deles é menor na tabela acima. +Para esses modelos, você ainda recebe um pouco mais do que receberia se pagasse diretamente aos provedores dos modelos; por isso, o uso mensal incluído com eles é menor. --- diff --git a/packages/web/src/content/docs/ru/go.mdx b/packages/web/src/content/docs/ru/go.mdx index 0e8842d1484a..f9a4996fc916 100644 --- a/packages/web/src/content/docs/ru/go.mdx +++ b/packages/web/src/content/docs/ru/go.mdx @@ -134,47 +134,93 @@ OpenCode Go предназначен для [OpenCode](https://opencode.ai) и ## Лимиты использования -OpenCode Go включает следующие базовые лимиты: +Лимиты использования определяются как месячные суммы в долларах. В таблице ниже указаны месячный лимит и стоимость токенов для каждой модели. -- **Лимит на 5 часов** — $12 использования -- **Недельный лимит** — $30 использования -- **Месячный лимит** — $60 использования +Для каждой модели действуют следующие лимиты использования: на 5 часов — 20% месячного лимита; на неделю — 50%; на месяц — 100%. -Эффективный лимит зависит от модели; см. таблицу ниже. +Например, если месячный лимит модели составляет $60, вы можете потратить до: -Лимиты определены в долларовом эквиваленте. Это означает, что ваше фактическое количество запросов зависит от используемой модели. Более дешевые модели, такие как MiMo-V2.5, позволяют делать больше запросов, в то время как более дорогие, такие как GLM-5.2, — меньше. +- **Лимит на 5 часов** — использование на сумму $12 +- **Недельный лимит** — использование на сумму $30 +- **Месячный лимит** — использование на сумму $60 -В таблице ниже приведено примерное количество запросов на основе типичных сценариев использования Go: +Цены на токены указаны за 1M токенов. + +| Model | Input | Output | Cached Read | Cached Write | Месячный лимит | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | + +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Часы Peak с понедельника по пятницу: 01:00-04:00 и 06:00-10:00 UTC; все остальные часы, включая выходные, относятся к Off-Peak. [Подробнее](https://api-docs.deepseek.com/quick_start/pricing/). + +**DeepSeek V4 Flash Vision Exp:** Изображения преобразуются в токены с учётом их размеров и оплачиваются как входные токены вместе с текстовыми токенами. [Подробнее](https://api-docs.deepseek.com/quick_start/pricing/). + +### Примерное число запросов + +В таблице ниже приведено примерное число запросов на основе типичных сценариев использования Go: | Model | запросов за 5 часов | запросов в неделю | запросов в месяц | -| ---------------------------- | ------------------- | ----------------- | ---------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | В оценках используются следующие количества токенов на запрос; фактическое использование может отличаться. @@ -203,50 +249,6 @@ OpenCode Go включает следующие базовые лимиты: - MiMo-V2.5-Pro — 790 входных, 86,000 кешированных, 305 выходных токенов на запрос - Omen Alpha — 300 входных, 40 000 кешированных, 100 выходных токенов на запрос -Эти оценки также основаны на следующих ценах за 1M токенов и месячном объеме использования, включенном для каждой модели: - -| Model | Input | Output | Cached Read | Cached Write | Использование | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Часы Peak с понедельника по пятницу: 01:00-04:00 и 06:00-10:00 UTC; все остальные часы, включая выходные, относятся к Off-Peak. [Подробнее](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Изображения преобразуются в токены с учётом их размеров и оплачиваются как входные токены вместе с текстовыми токенами. [Подробнее](https://api-docs.deepseek.com/quick_start/pricing/). - Вы можете отслеживать текущее использование в **консоли**. :::tip @@ -267,13 +269,13 @@ OpenCode Go включает следующие базовые лимиты: ### Почему для некоторых моделей доступен меньший объем использования -С Go вы платите $10 в месяц, а для большинства моделей мы стремимся предоставить вам объем использования стоимостью в шесть раз больше этой суммы. +С Go вы платите $10 в месяц, а включённый объём использования за месяц зависит от модели. -Для большинства моделей это возможно благодаря оптовым скидкам и зарезервированным мощностям GPU. Полученную экономию мы передаем вам за счет шестикратного множителя. +Для большинства моделей это возможно благодаря оптовым скидкам и зарезервированным мощностям GPU. Полученную экономию мы передаем вам в виде большего объёма использования за месяц. Для некоторых моделей у нас еще не было возможности договориться о скидке или развернуть их с меньшими затратами: либо модель новая, либо ее публичные тарифы уже включают скидку. -Для этих моделей вы все равно получаете немного больше, чем при прямой оплате их провайдерам; именно поэтому указанный для них в таблице выше множитель использования ниже. +Для этих моделей вы все равно получаете немного больше, чем при прямой оплате их провайдерам; именно поэтому включённый для них объём использования за месяц меньше. --- diff --git a/packages/web/src/content/docs/th/go.mdx b/packages/web/src/content/docs/th/go.mdx index dfaa30d69e0b..7246269cbc5a 100644 --- a/packages/web/src/content/docs/th/go.mdx +++ b/packages/web/src/content/docs/th/go.mdx @@ -121,47 +121,93 @@ OpenCode Go ออกแบบมาสำหรับ [OpenCode](https://openco ## Usage limits -OpenCode Go มีขีดจำกัดพื้นฐานดังต่อไปนี้: +ขีดจำกัดการใช้งานกำหนดเป็นจำนวนเงินดอลลาร์รายเดือน ตารางด้านล่างแสดงขีดจำกัดรายเดือนและค่า token ของแต่ละโมเดล + +แต่ละโมเดลมีขีดจำกัดการใช้งานดังนี้: 5 ชั่วโมง — 20% ของขีดจำกัดรายเดือน; รายสัปดาห์ — 50%; และรายเดือน — 100% + +ตัวอย่างเช่น หากโมเดลมีขีดจำกัดรายเดือน $60 คุณสามารถใช้งานได้สูงสุด: + +- **ขีดจำกัดต่อ 5 ชั่วโมง** — การใช้งาน $12 +- **ขีดจำกัดรายสัปดาห์** — การใช้งาน $30 +- **ขีดจำกัดรายเดือน** — การใช้งาน $60 + +ราคา token แสดงต่อ 1M tokens + +| Model | Input | Output | Cached Read | Cached Write | ขีดจำกัดรายเดือน | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **ขีดจำกัดต่อ 5 ชั่วโมง** — การใช้งานมูลค่า $12 -- **ขีดจำกัดรายสัปดาห์** — การใช้งานมูลค่า $30 -- **ขีดจำกัดรายเดือน** — การใช้งานมูลค่า $60 +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** ช่วงเวลา Peak คือ 01:00-04:00 และ 06:00-10:00 UTC ตั้งแต่วันจันทร์ถึงวันศุกร์ ส่วนเวลาอื่นทั้งหมด รวมถึงวันหยุดสุดสัปดาห์ เป็น Off-Peak [ดูข้อมูลเพิ่มเติม](https://api-docs.deepseek.com/quick_start/pricing/) -ขีดจำกัดการใช้งานที่มีผลแตกต่างกันไปตามโมเดล โปรดดูตารางด้านล่าง +**DeepSeek V4 Flash Vision Exp:** รูปภาพจะถูกแปลงเป็น token ตามขนาด และคิดค่าบริการเป็น input token รวมกับ text token [ดูข้อมูลเพิ่มเติม](https://api-docs.deepseek.com/quick_start/pricing/) -ขีดจำกัดถูกกำหนดเป็นมูลค่าดอลลาร์ ซึ่งหมายความว่าจำนวน request จริงของคุณจะขึ้นอยู่กับโมเดลที่คุณใช้งาน โมเดลที่ราคาถูกกว่าอย่าง MiMo-V2.5 จะสามารถส่ง request ได้มากกว่า ในขณะที่โมเดลที่มีราคาสูงกว่าอย่าง GLM-5.2 จะส่งได้น้อยกว่า +### requests โดยประมาณ ตารางด้านล่างแสดงจำนวน request โดยประมาณตามรูปแบบการใช้งานปกติของ Go: | Model | requests ต่อ 5 ชั่วโมง | requests ต่อสัปดาห์ | requests ต่อเดือน | -| ---------------------------- | ---------------------- | ------------------- | ----------------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | การประมาณการใช้จำนวน token ต่อ request ดังต่อไปนี้ การใช้งานจริงอาจแตกต่างกัน @@ -190,50 +236,6 @@ OpenCode Go มีขีดจำกัดพื้นฐานดังต่ - MiMo-V2.5-Pro — 790 input, 86,000 cached, 305 output tokens ต่อ request - Omen Alpha — 300 input, 40,000 cached, 100 output tokens ต่อ request -การประมาณการนี้ยังอ้างอิงจากราคาต่อ 1M tokens และปริมาณการใช้งานรายเดือนที่รวมอยู่ในแต่ละโมเดลดังต่อไปนี้: - -| Model | Input | Output | Cached Read | Cached Write | Usage | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** ช่วงเวลา Peak คือ 01:00-04:00 และ 06:00-10:00 UTC ตั้งแต่วันจันทร์ถึงวันศุกร์ ส่วนเวลาอื่นทั้งหมด รวมถึงวันหยุดสุดสัปดาห์ เป็น Off-Peak [ดูข้อมูลเพิ่มเติม](https://api-docs.deepseek.com/quick_start/pricing/) - -**DeepSeek V4 Flash Vision Exp:** รูปภาพจะถูกแปลงเป็น token ตามขนาด และคิดค่าบริการเป็น input token รวมกับ text token [ดูข้อมูลเพิ่มเติม](https://api-docs.deepseek.com/quick_start/pricing/) - คุณสามารถติดตามการใช้งานปัจจุบันของคุณได้ใน **console** :::tip @@ -252,13 +254,13 @@ OpenCode Go มีขีดจำกัดพื้นฐานดังต่ ### เหตุใดบางโมเดลจึงมีปริมาณการใช้งานต่ำกว่า -สำหรับ Go คุณจ่าย $10/เดือน และสำหรับโมเดลส่วนใหญ่ เราตั้งเป้าที่จะมอบปริมาณการใช้งานให้คุณ 6 เท่าของจำนวนดังกล่าว +สำหรับ Go คุณจ่าย $10/เดือน และปริมาณการใช้งานรายเดือนที่รวมอยู่จะแตกต่างกันตามโมเดล -สำหรับโมเดลส่วนใหญ่ เราทำเช่นนี้ได้ผ่านส่วนลดสำหรับการซื้อจำนวนมากและความจุ GPU ที่จองไว้ จากนั้นเราจะส่งต่อส่วนลดเหล่านั้นให้คุณผ่านตัวคูณ 6 เท่า +สำหรับโมเดลส่วนใหญ่ เราทำเช่นนี้ได้ผ่านส่วนลดสำหรับการซื้อจำนวนมากและความจุ GPU ที่จองไว้ จากนั้นเราจะส่งต่อส่วนลดเหล่านั้นให้คุณในรูปของปริมาณการใช้งานรายเดือนที่มากขึ้น สำหรับบางโมเดล เรายังไม่มีโอกาสเจรจาส่วนลดหรือโฮสต์โมเดลเหล่านั้นด้วยต้นทุนที่ต่ำลง ไม่ว่าจะเป็นเพราะโมเดลนั้นใหม่หรือราคาที่ประกาศต่อสาธารณะมีส่วนลดอยู่แล้ว -สำหรับโมเดลเหล่านี้ คุณยังคงได้รับปริมาณการใช้งานมากกว่าการจ่ายให้ผู้ให้บริการโมเดลโดยตรงเล็กน้อย นี่คือเหตุผลที่ตัวคูณการใช้งานของโมเดลเหล่านี้ต่ำกว่าในตารางด้านบน +สำหรับโมเดลเหล่านี้ คุณยังคงได้รับปริมาณการใช้งานมากกว่าการจ่ายให้ผู้ให้บริการโมเดลโดยตรงเล็กน้อย นี่คือเหตุผลที่ปริมาณการใช้งานรายเดือนที่รวมอยู่ของโมเดลเหล่านี้ต่ำกว่า --- diff --git a/packages/web/src/content/docs/tr/go.mdx b/packages/web/src/content/docs/tr/go.mdx index 1b6a41b45325..fb21b09fc002 100644 --- a/packages/web/src/content/docs/tr/go.mdx +++ b/packages/web/src/content/docs/tr/go.mdx @@ -121,47 +121,93 @@ Bağlantı verilen bildirimlerden düzeltmeleri ve geçici çözümleri takip ed ## Kullanım limitleri -OpenCode Go aşağıdaki temel limitleri içerir: +Kullanım limitleri aylık dolar tutarları olarak tanımlanır. Aşağıdaki tabloda her modelin aylık limiti ve token maliyetleri gösterilmektedir. + +Her model için şu kullanım limitleri geçerlidir: 5 saatlik — aylık limitin %20'si; haftalık — %50'si; aylık — %100'ü. + +Örneğin bir modelin aylık limiti $60 ise şu tutarlara kadar kullanım yapabilirsiniz: + +- **5 saatlik limit** — $12 tutarında kullanım +- **Haftalık limit** — $30 tutarında kullanım +- **Aylık limit** — $60 tutarında kullanım + +Token fiyatları 1M token başına verilmiştir. + +| Model | Input | Output | Cached Read | Cached Write | Aylık limit | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | -- **5 saatlik limit** — 12$ kullanım -- **Haftalık limit** — 30$ kullanım -- **Aylık limit** — 60$ kullanım +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak saatleri pazartesiden cumaya 01:00-04:00 ve 06:00-10:00 UTC'dir; hafta sonları dahil diğer tüm saatler Off-Peak'tir. [Daha fazla bilgi](https://api-docs.deepseek.com/quick_start/pricing/). -Etkin kullanım limiti modele göre değişir; aşağıdaki tabloya bakın. +**DeepSeek V4 Flash Vision Exp:** Görseller boyutlarına göre token'lara dönüştürülür ve metin token'larıyla birlikte girdi token'ları olarak ücretlendirilir. [Daha fazla bilgi](https://api-docs.deepseek.com/quick_start/pricing/). -Limitler dolar değeri üzerinden belirlenmiştir. Bu, gerçek istek sayınızın kullandığınız modele bağlı olduğu anlamına gelir. MiMo-V2.5 gibi daha ucuz modeller daha fazla isteğe izin verirken, GLM-5.2 gibi yüksek maliyetli modeller daha azına izin verir. +### Tahmini istek sayısı -Aşağıdaki tablo, tipik Go kullanım modellerine dayalı tahmini bir istek sayısı sunmaktadır: +Aşağıdaki tabloda tipik Go kullanım modellerine dayalı tahmini istek sayısı verilmiştir: | Model | 5 saatte bir istek | haftalık istek | aylık istek | -| ---------------------------- | ------------------ | -------------- | ----------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| ---------------------------- | ------------------- | ----------------- | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Tahminler istek başına aşağıdaki token sayılarını kullanır; gerçek kullanım değişir. @@ -190,50 +236,6 @@ Tahminler istek başına aşağıdaki token sayılarını kullanır; gerçek kul - MiMo-V2.5-Pro — İstek başına 790 girdi, 86.000 önbelleğe alınmış, 305 çıktı token'ı - Omen Alpha — İstek başına 300 girdi, 40.000 önbelleğe alınmış, 100 çıktı token'ı -Tahminler ayrıca 1M token başına aşağıdaki fiyatlara ve her modelle birlikte sunulan aylık kullanıma dayanır: - -| Model | Input | Output | Cached Read | Cached Write | Kullanım | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | -------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak saatleri pazartesiden cumaya 01:00-04:00 ve 06:00-10:00 UTC'dir; hafta sonları dahil diğer tüm saatler Off-Peak'tir. [Daha fazla bilgi](https://api-docs.deepseek.com/quick_start/pricing/). - -**DeepSeek V4 Flash Vision Exp:** Görseller boyutlarına göre token'lara dönüştürülür ve metin token'larıyla birlikte girdi token'ları olarak ücretlendirilir. [Daha fazla bilgi](https://api-docs.deepseek.com/quick_start/pricing/). - Mevcut kullanımınızı **konsoldan** takip edebilirsiniz. :::tip @@ -252,13 +254,13 @@ Eğer Zen bakiyenizde kredileriniz varsa, konsoldan **Bakiye kullan (Use balance ### Bazı modellerin kullanımı neden daha düşük? -Go ile aylık 10$ ödersiniz ve çoğu model için size bunun 6 katı değerinde kullanım sunmayı hedefleriz. +Go ile aylık 10$ ödersiniz ve sunulan aylık kullanım modele göre değişir. -Çoğu modelde bunu toplu indirimler ve ayrılmış GPU kapasitesi sayesinde mümkün kılıyoruz. Ardından bu tasarrufları 6 katlık çarpanla size aktarıyoruz. +Çoğu modelde bunu toplu indirimler ve ayrılmış GPU kapasitesi sayesinde mümkün kılıyoruz. Ardından bu tasarrufları daha fazla aylık kullanım olarak size aktarıyoruz. Bazı modellerde ise model yeni olduğu veya herkese açık fiyatlandırması zaten indirimli olduğu için henüz indirim pazarlığı yapma ya da modeli daha düşük maliyetle barındırma fırsatımız olmadı. -Bu modellerde bile model sağlayıcılarına doğrudan ödeme yaptığınız duruma kıyasla biraz daha fazla kullanım elde edersiniz; bu nedenle yukarıdaki tabloda kullanım çarpanları daha düşüktür. +Bu modellerde bile model sağlayıcılarına doğrudan ödeme yaptığınız duruma kıyasla biraz daha fazla kullanım elde edersiniz; bu nedenle sunulan aylık kullanım daha azdır. --- diff --git a/packages/web/src/content/docs/zh-cn/go.mdx b/packages/web/src/content/docs/zh-cn/go.mdx index 539fa1328743..ad4ffe237d5c 100644 --- a/packages/web/src/content/docs/zh-cn/go.mdx +++ b/packages/web/src/content/docs/zh-cn/go.mdx @@ -120,22 +120,67 @@ OpenCode Go 适用于 [OpenCode](https://opencode.ai) 以及其他会产生类 ## 使用限制 -OpenCode Go 包含以下基础限制: +使用限制以每月美元金额定义。下表列出了每个模型的每月限制和 token 成本。 -- **5 小时限制** — 12 美元使用额度 -- **每周限制** — 30 美元使用额度 -- **每月限制** — 60 美元使用额度 +每个模型都有以下使用限制:5 小时 — 每月限制的 20%;每周 — 50%;每月 — 100%。 -有效使用额度因模型而异;请参见下表。 +例如,如果某个模型的每月限制为 $60,你最多可以使用: -限制以美元价值定义。这意味着你的实际请求数取决于你所使用的模型。较便宜的模型(如 MiMo-V2.5)允许更多请求,而较高成本的模型(如 GLM-5.2)允许较少请求。 +- **5 小时限制** — $12 的使用额度 +- **每周限制** — $30 的使用额度 +- **每月限制** — $60 的使用额度 -下表提供了基于典型 Go 使用模式的预估请求数: +Token 价格按每 1M tokens 列示。 + +| 模型 | 输入 | 输出 | 缓存读取 | 缓存写入 | 每月限制 | +| --------------------------------------- | ------ | ------ | --------- | -------- | -------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | + +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 时段为周一至周五的 01:00-04:00 和 06:00-10:00 UTC;其他所有时段(包括周末)均为 Off-Peak。[了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 + +**DeepSeek V4 Flash Vision Exp:** 图片会根据尺寸转换为 token,并与文本 token 一起按输入 token 计费。 [了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 + +### 预估请求数 + +下表根据典型的 Go 使用模式提供了预估请求数: | Model | 每 5 小时请求数 | 每周请求数 | 每月请求数 | | ---------------------------- | --------------- | ---------- | ---------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -160,7 +205,8 @@ OpenCode Go 包含以下基础限制: | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | 预估值采用以下每次请求的 token 数量;实际使用情况会有所不同。 @@ -189,50 +235,6 @@ OpenCode Go 包含以下基础限制: - Hy3 — 每次请求 830 个输入 token,71,500 个缓存 token,295 个输出 token - Omen Alpha — 每次请求 300 个输入 token,40,000 个缓存 token,100 个输出 token -预估值还基于以下每 1M tokens 的价格以及每个模型包含的每月使用额度: - -| 模型 | 输入 | 输出 | 缓存读取 | 缓存写入 | 使用额度 | -| --------------------------------------- | ------ | ------ | --------- | -------- | -------- | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 时段为周一至周五的 01:00-04:00 和 06:00-10:00 UTC;其他所有时段(包括周末)均为 Off-Peak。[了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 - -**DeepSeek V4 Flash Vision Exp:** 图片会根据尺寸转换为 token,并与文本 token 一起按输入 token 计费。 [了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 - 你可以在 **控制台** 中跟踪你当前的使用情况。 :::tip @@ -251,13 +253,13 @@ OpenCode Go 包含以下基础限制: ### 为什么某些模型的使用额度较低 -使用 Go 时,你每月支付 $10;对于大多数模型,我们的目标是提供 6 倍于此的使用额度。 +使用 Go 时,你每月支付 $10,包含的每月使用额度因模型而异。 -对于大多数模型,我们通过批量折扣和预留 GPU 容量来实现这一目标。然后,我们通过 6 倍乘数将这些节省的成本回馈给你。 +对于大多数模型,我们通过批量折扣和预留 GPU 容量来实现这一目标。然后,我们通过提高每月使用额度,将节省的成本回馈给你。 对于某些模型,我们还没有机会协商折扣或以更低的成本托管它们,这可能是因为模型较新,或者其公开价格已经是折扣价。 -对于这些模型,你获得的使用额度仍会略高于直接向模型提供商付费;这就是它们在上表中的使用额度乘数较低的原因。 +对于这些模型,你获得的使用额度仍会略高于直接向模型提供商付费;这就是它们包含的每月使用额度较低的原因。 --- diff --git a/packages/web/src/content/docs/zh-tw/go.mdx b/packages/web/src/content/docs/zh-tw/go.mdx index cd5e690af914..349336f8ff3a 100644 --- a/packages/web/src/content/docs/zh-tw/go.mdx +++ b/packages/web/src/content/docs/zh-tw/go.mdx @@ -120,22 +120,67 @@ OpenCode Go 適用於 [OpenCode](https://opencode.ai) 以及其他會產生類 ## 使用限制 -OpenCode Go 包含以下基準限制: +使用限制以每月美元金額定義。下表列出每個模型的每月限制和 token 成本。 -- **5 小時限制** — $12 美元的使用量 -- **每週限制** — $30 美元的使用量 -- **每月限制** — $60 美元的使用量 +每個模型都有以下使用限制:5 小時 — 每月限制的 20%;每週 — 50%;每月 — 100%。 -有效使用額度因模型而異;請參閱下表。 +例如,如果某個模型的每月限制為 $60,您最多可以使用: -限制是以美元價值來定義。這意味著您的實際請求次數取決於您使用的模型。像 MiMo-V2.5 這樣較便宜的模型允許更多的請求次數,而像 GLM-5.2 這樣成本較高的模型則允許較少次數。 +- **5 小時限制** — $12 的使用額度 +- **每週限制** — $30 的使用額度 +- **每月限制** — $60 的使用額度 -下表提供了基於典型 Go 使用模式的預估請求次數: +Token 價格按每 1M tokens 列示。 + +| 模型 | 輸入 | 輸出 | 快取讀取 | 快取寫入 | 每月限制 | +| --------------------------------------- | ------ | ------ | --------- | -------- | ------ | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | + +**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 時段為週一至週五的 01:00-04:00 和 06:00-10:00 UTC;其他所有時段(包括週末)均為 Off-Peak。[了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 + +**DeepSeek V4 Flash Vision Exp:** 圖片會根據尺寸轉換為 token,並與文字 token 一起按輸入 token 計費。 [了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 + +### 預估請求次數 + +下表根據典型的 Go 使用模式提供預估請求次數: | Model | 每 5 小時請求數 | 每週請求數 | 每月請求數 | | ---------------------------- | --------------- | ---------- | ---------- | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| Omen Alpha | 11,600 | 29,000 | 57,900 | | GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | | GLM-5.3 | 220 | 540 | 1,080 | | GLM-5.2 | 880 | 2,150 | 4,300 | @@ -160,7 +205,8 @@ OpenCode Go 包含以下基準限制: | DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | | Hy4 preview | 1,350 | 3,380 | 6,770 | | Hy3 | 4,300 | 10,750 | 21,500 | -| Omen Alpha | 11,600 | 29,000 | 57,900 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | 這些預估值採用以下每次請求的 token 數量;實際使用情況會有所不同。 @@ -189,50 +235,6 @@ OpenCode Go 包含以下基準限制: - MiMo-V2.5-Pro — 每次請求 790 個輸入 token、86,000 個快取 token、305 個輸出 token - Omen Alpha — 每次請求 300 個輸入 token、40,000 個快取 token、100 個輸出 token -這些預估值也基於以下每 1M tokens 的價格,以及每個模型所包含的每月使用量: - -| 模型 | 輸入 | 輸出 | 快取讀取 | 快取寫入 | 使用量 | -| --------------------------------------- | ------ | ------ | --------- | -------- | ------ | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | $15 | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | $15 | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | $15 | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | $15 | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | $60 | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | $15 | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | $60 | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | $60 | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | $15 | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | $60 | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | $60 | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | $60 | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | $60 | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | $15 | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | $60 | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | $60 | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | $60 | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | $15 | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | $30 | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | $30 | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | $60 | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | $60 | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | $60 | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | $60 | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | $15 | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | $15 | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $30 | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | $30 | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | $15 | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | $15 | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | $30 | -| Hy3 | $0.14 | $0.58 | $0.035 | - | $60 | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | $100 | - -**DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 時段為週一至週五的 01:00-04:00 和 06:00-10:00 UTC;其他所有時段(包括週末)均為 Off-Peak。[了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 - -**DeepSeek V4 Flash Vision Exp:** 圖片會根據尺寸轉換為 token,並與文字 token 一起按輸入 token 計費。 [了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 - 您可以在 **console** 中追蹤您目前的使用量。 :::tip @@ -249,15 +251,15 @@ OpenCode Go 包含以下基準限制: --- -### 為什麼部分模型的使用量較低 +### 為什麼部分模型的使用額度較低 -使用 Go 時,您每月支付 $10;對大多數模型而言,我們的目標是提供相當於 6 倍費用的使用量。 +使用 Go 時,您每月支付 $10,包含的每月使用額度因模型而異。 -對大多數模型而言,我們透過大量採購折扣和預留 GPU 容量來達成此目標,再以 6 倍乘數將節省的成本回饋給您。 +對大多數模型而言,我們透過大量採購折扣和預留 GPU 容量來達成此目標,再透過提高每月使用額度,將節省的成本回饋給您。 對於部分模型,我們尚未有機會議定折扣或以較低成本託管,原因可能是模型剛推出,或其公開價格已經過折扣。 -對於這些模型,您獲得的使用量仍會比直接向模型供應商付費多一些;這就是上表中其使用量乘數較低的原因。 +對於這些模型,您獲得的使用額度仍會比直接向模型供應商付費多一些;這就是它們包含的每月使用額度較低的原因。 --- From b6914b39db86e196ebcc95e92a0188cdf58ef67a Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Wed, 9 Sep 2026 22:45:26 +0000 Subject: [PATCH 27/94] chore: generate --- packages/web/src/content/docs/ar/go.mdx | 72 ++++++------ packages/web/src/content/docs/bs/go.mdx | 72 ++++++------ packages/web/src/content/docs/da/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/de/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/es/go.mdx | 72 ++++++------ packages/web/src/content/docs/fr/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/go.mdx | 70 +++++------ packages/web/src/content/docs/it/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/ja/go.mdx | 58 +++++----- packages/web/src/content/docs/ko/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/nb/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/pl/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/pt-br/go.mdx | 72 ++++++------ packages/web/src/content/docs/ru/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/th/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/tr/go.mdx | 128 ++++++++++----------- packages/web/src/content/docs/zh-cn/go.mdx | 68 +++++------ packages/web/src/content/docs/zh-tw/go.mdx | 70 +++++------ 18 files changed, 917 insertions(+), 917 deletions(-) diff --git a/packages/web/src/content/docs/ar/go.mdx b/packages/web/src/content/docs/ar/go.mdx index 1c8354ab3400..6fb053c3701b 100644 --- a/packages/web/src/content/docs/ar/go.mdx +++ b/packages/web/src/content/docs/ar/go.mdx @@ -137,42 +137,42 @@ OpenCode Go هو اشتراك منخفض التكلفة بقيمة **$10/شهر أسعار tokens مُدرجة لكل 1M tokens. | النموذج | الإدخال | الإخراج | القراءة المخزنة | الكتابة المخزنة | الحد الشهري | -| --------------------------------------- | ------- | ------- | --------------- | --------------- | --------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------- | ------- | --------------- | --------------- | ----------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** ساعات Peak هي 01:00-04:00 و06:00-10:00 UTC من الاثنين إلى الجمعة؛ وجميع الساعات الأخرى، بما في ذلك عطلات نهاية الأسبوع، Off-Peak. [اعرف المزيد](https://api-docs.deepseek.com/quick_start/pricing/). diff --git a/packages/web/src/content/docs/bs/go.mdx b/packages/web/src/content/docs/bs/go.mdx index 6ef94f809717..93c8cac498fc 100644 --- a/packages/web/src/content/docs/bs/go.mdx +++ b/packages/web/src/content/docs/bs/go.mdx @@ -147,42 +147,42 @@ Na primjer, ako model ima mjesečno ograničenje od $60, možete potrošiti do: Cijene tokena navedene su za 1M tokena. | Model | Input | Output | Cached Read | Cached Write | Mjesečno ograničenje | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | --------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | -------------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak sati su 01:00-04:00 i 06:00-10:00 UTC od ponedjeljka do petka; svi ostali sati, uključujući vikende, su Off-Peak. [Saznajte više](https://api-docs.deepseek.com/quick_start/pricing/). diff --git a/packages/web/src/content/docs/da/go.mdx b/packages/web/src/content/docs/da/go.mdx index 6266d456653b..058f2f323f9d 100644 --- a/packages/web/src/content/docs/da/go.mdx +++ b/packages/web/src/content/docs/da/go.mdx @@ -147,42 +147,42 @@ Hvis en model for eksempel har en månedlig grænse på $60, kan du bruge op til Tokenpriser er angivet pr. 1M tokens. | Model | Input | Output | Cached Read | Cached Write | Månedlig grænse | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | --------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak-tiderne er 01:00-04:00 og 06:00-10:00 UTC fra mandag til fredag; alle andre tider, herunder weekender, er Off-Peak. [Læs mere](https://api-docs.deepseek.com/quick_start/pricing/). @@ -193,34 +193,34 @@ Tokenpriser er angivet pr. 1M tokens. Tabellen nedenfor viser et estimeret antal anmodninger baseret på typiske Go-forbrugsmønstre: | Model | anmodninger pr. 5 timer | anmodninger pr. uge | anmodninger pr. måned | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ----------------------- | ------------------- | --------------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Estimaterne bruger følgende antal tokens pr. anmodning; det faktiske forbrug varierer. diff --git a/packages/web/src/content/docs/de/go.mdx b/packages/web/src/content/docs/de/go.mdx index 2921f3716db5..8c5080b042f6 100644 --- a/packages/web/src/content/docs/de/go.mdx +++ b/packages/web/src/content/docs/de/go.mdx @@ -139,42 +139,42 @@ Wenn ein Modell beispielsweise ein monatliches Limit von $60 hat, kannst du bis Tokenpreise gelten pro 1M Tokens. | Model | Input | Output | Cached Read | Cached Write | Monatliches Limit | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Die Peak-Zeiten sind montags bis freitags von 01:00-04:00 und 06:00-10:00 UTC; alle anderen Zeiten, einschließlich der Wochenenden, sind Off-Peak. [Mehr erfahren](https://api-docs.deepseek.com/quick_start/pricing/). @@ -185,34 +185,34 @@ Tokenpreise gelten pro 1M Tokens. Die folgende Tabelle enthält eine geschätzte Anzahl von Anfragen basierend auf typischen Go-Nutzungsmustern: | Model | Anfragen pro 5 Stunden | Anfragen pro Woche | Anfragen pro Monat | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ---------------------- | ------------------ | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Die Schätzungen verwenden die folgenden Token-Anzahlen pro Anfrage; die tatsächliche Nutzung variiert. diff --git a/packages/web/src/content/docs/es/go.mdx b/packages/web/src/content/docs/es/go.mdx index 304cbec24086..bddec12d6394 100644 --- a/packages/web/src/content/docs/es/go.mdx +++ b/packages/web/src/content/docs/es/go.mdx @@ -147,42 +147,42 @@ Por ejemplo, si un modelo tiene un límite mensual de $60, puedes gastar hasta: Los precios de tokens se indican por 1M tokens. | Modelo | Entrada | Salida | Lectura en caché | Escritura en caché | Límite mensual | -| --------------------------------------- | ------- | ------ | ---------------- | ------------------ | ---- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------- | ------ | ---------------- | ------------------ | -------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Las horas Peak son 01:00-04:00 y 06:00-10:00 UTC, de lunes a viernes; todas las demás horas, incluidos los fines de semana, son Off-Peak. [Más información](https://api-docs.deepseek.com/quick_start/pricing/). diff --git a/packages/web/src/content/docs/fr/go.mdx b/packages/web/src/content/docs/fr/go.mdx index 05f472ede29e..4dcdbd0d6e67 100644 --- a/packages/web/src/content/docs/fr/go.mdx +++ b/packages/web/src/content/docs/fr/go.mdx @@ -137,42 +137,42 @@ Par exemple, si un modèle a une limite mensuelle de $60, vous pouvez utiliser j Les prix des tokens sont indiqués par million de tokens. | Modèle | Input | Output | Cached Read | Cached Write | Limite mensuelle | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ---------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Les heures Peak sont 01:00-04:00 et 06:00-10:00 UTC, du lundi au vendredi ; toutes les autres heures, y compris le week-end, sont Off-Peak. [En savoir plus](https://api-docs.deepseek.com/quick_start/pricing/). @@ -183,34 +183,34 @@ Les prix des tokens sont indiqués par million de tokens. Le tableau ci-dessous fournit une estimation du nombre de requêtes basée sur les habitudes d’utilisation typiques de Go : | Model | requêtes par 5 heures | requêtes par semaine | requêtes par mois | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | --------------------- | -------------------- | ----------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Les estimations utilisent les nombres de tokens suivants par requête ; l'utilisation réelle varie. diff --git a/packages/web/src/content/docs/go.mdx b/packages/web/src/content/docs/go.mdx index afa597baae52..afc7da0c9cce 100644 --- a/packages/web/src/content/docs/go.mdx +++ b/packages/web/src/content/docs/go.mdx @@ -150,41 +150,41 @@ Token prices are per 1M tokens. | Model | Input | Output | Cached Read | Cached Write | Monthly limit | | --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak hours are 01:00-04:00 and 06:00-10:00 UTC, Monday through Friday; all other hours, including weekends, are Off-Peak. [Learn more](https://api-docs.deepseek.com/quick_start/pricing/). diff --git a/packages/web/src/content/docs/it/go.mdx b/packages/web/src/content/docs/it/go.mdx index 154031e0e1bf..1a9007d73774 100644 --- a/packages/web/src/content/docs/it/go.mdx +++ b/packages/web/src/content/docs/it/go.mdx @@ -145,42 +145,42 @@ Ad esempio, se un modello ha un limite mensile di $60, puoi utilizzare fino a: I prezzi dei token sono indicati per 1M token. | Modello | Input | Output | Cached Read | Cached Write | Limite mensile | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | -------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Gli orari Peak sono 01:00-04:00 e 06:00-10:00 UTC, dal lunedì al venerdì; tutti gli altri orari, inclusi i fine settimana, sono Off-Peak. [Scopri di più](https://api-docs.deepseek.com/quick_start/pricing/). @@ -191,34 +191,34 @@ I prezzi dei token sono indicati per 1M token. La tabella seguente fornisce una stima del numero di richieste basata su pattern di utilizzo tipici di Go: | Model | richieste ogni 5 ore | richieste a settimana | richieste al mese | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | -------------------- | --------------------- | ----------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Le stime utilizzano i seguenti conteggi di token per richiesta; l'utilizzo effettivo varia. diff --git a/packages/web/src/content/docs/ja/go.mdx b/packages/web/src/content/docs/ja/go.mdx index 3dd3c966582a..e5334ab202b9 100644 --- a/packages/web/src/content/docs/ja/go.mdx +++ b/packages/web/src/content/docs/ja/go.mdx @@ -134,7 +134,7 @@ OpenCodeに加えて、以下のクライアントがOpenCode Goで正常に動 トークン単価は100万トークンあたりです。 | Model | Input | Output | Cached Read | Cached Write | 月間上限 | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | -------- | | Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | | GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | | GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | @@ -180,34 +180,34 @@ OpenCodeに加えて、以下のクライアントがOpenCode Goで正常に動 以下の表は、一般的なGoの利用パターンに基づく推定リクエスト数を示しています。 | Model | 5時間あたりのリクエスト数 | 週間リクエスト数 | 月間リクエスト数 | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ------------------------- | ---------------- | ---------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | 推定値には、リクエストあたり以下のトークン数を使用しています。実際の使用量は異なります。 diff --git a/packages/web/src/content/docs/ko/go.mdx b/packages/web/src/content/docs/ko/go.mdx index 8a18c6665d94..64476530b9a9 100644 --- a/packages/web/src/content/docs/ko/go.mdx +++ b/packages/web/src/content/docs/ko/go.mdx @@ -134,42 +134,42 @@ OpenCode 외에도 다음 클라이언트가 OpenCode Go에서 올바르게 작 토큰 가격은 1M tokens 기준입니다. | Model | Input | Output | Cached Read | Cached Write | 월간 한도 | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | --------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 시간은 월요일부터 금요일까지 01:00-04:00 및 06:00-10:00 UTC이며, 주말을 포함한 그 외 모든 시간은 Off-Peak입니다. [자세히 알아보기](https://api-docs.deepseek.com/quick_start/pricing/). @@ -180,34 +180,34 @@ OpenCode 외에도 다음 클라이언트가 OpenCode Go에서 올바르게 작 아래 표는 일반적인 Go 사용 패턴을 기준으로 한 예상 요청 횟수를 보여줍니다. | Model | 5시간당 요청 횟수 | 주간 요청 횟수 | 월간 요청 횟수 | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ----------------- | -------------- | -------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | 예상치에는 요청당 다음 토큰 수를 사용하며, 실제 사용량은 달라질 수 있습니다. diff --git a/packages/web/src/content/docs/nb/go.mdx b/packages/web/src/content/docs/nb/go.mdx index ed4f636257c9..1a77ff0ed78d 100644 --- a/packages/web/src/content/docs/nb/go.mdx +++ b/packages/web/src/content/docs/nb/go.mdx @@ -147,42 +147,42 @@ Hvis en modell for eksempel har en månedlig grense på $60, kan du bruke opptil Tokenpriser er oppgitt per 1M tokens. | Model | Input | Output | Cached Read | Cached Write | Månedlig grense | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | --------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak-tidene er 01:00-04:00 og 06:00-10:00 UTC fra mandag til fredag; alle andre tider, inkludert helger, er Off-Peak. [Les mer](https://api-docs.deepseek.com/quick_start/pricing/). @@ -193,34 +193,34 @@ Tokenpriser er oppgitt per 1M tokens. Tabellen nedenfor viser et estimert antall forespørsler basert på typiske bruksmønstre for Go: | Model | forespørsler per 5 timer | forespørsler per uke | forespørsler per måned | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ------------------------ | -------------------- | ---------------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Estimatene bruker følgende antall tokens per forespørsel; faktisk bruk varierer. diff --git a/packages/web/src/content/docs/pl/go.mdx b/packages/web/src/content/docs/pl/go.mdx index 5c60f7772368..7cb7b539b69d 100644 --- a/packages/web/src/content/docs/pl/go.mdx +++ b/packages/web/src/content/docs/pl/go.mdx @@ -141,42 +141,42 @@ Na przykład, jeśli model ma miesięczny limit $60, możesz wykorzystać do: Ceny tokenów podano za 1M tokenów. | Model | Wejście | Wyjście | Odczyt z cache | Zapis do cache | Limit miesięczny | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------- | ------- | -------------- | -------------- | ---------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Godziny Peak to 01:00-04:00 i 06:00-10:00 UTC od poniedziałku do piątku; wszystkie pozostałe godziny, w tym weekendy, to Off-Peak. [Dowiedz się więcej](https://api-docs.deepseek.com/quick_start/pricing/). @@ -187,34 +187,34 @@ Ceny tokenów podano za 1M tokenów. Poniższa tabela przedstawia szacunkową liczbę żądań na podstawie typowych wzorców korzystania z Go: | Model | żądania na 5 godzin | żądania na tydzień | żądania na miesiąc | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ------------------- | ------------------ | ------------------ | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Szacunki wykorzystują następującą liczbę tokenów na żądanie; rzeczywiste użycie jest zmienne. diff --git a/packages/web/src/content/docs/pt-br/go.mdx b/packages/web/src/content/docs/pt-br/go.mdx index ab40591b53e6..8dd339cc56da 100644 --- a/packages/web/src/content/docs/pt-br/go.mdx +++ b/packages/web/src/content/docs/pt-br/go.mdx @@ -147,42 +147,42 @@ Por exemplo, se um modelo tiver um limite mensal de $60, você poderá gastar at Os preços de tokens são indicados por 1M tokens. | Modelo | Entrada | Saída | Leitura em cache | Escrita em cache | Limite mensal | -| --------------------------------------- | ------- | ------ | ---------------- | ---------------- | ---- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------- | ------ | ---------------- | ---------------- | ------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Os horários Peak são 01:00-04:00 e 06:00-10:00 UTC, de segunda a sexta-feira; todos os demais horários, incluindo os fins de semana, são Off-Peak. [Saiba mais](https://api-docs.deepseek.com/quick_start/pricing/). diff --git a/packages/web/src/content/docs/ru/go.mdx b/packages/web/src/content/docs/ru/go.mdx index f9a4996fc916..7dddac4b949a 100644 --- a/packages/web/src/content/docs/ru/go.mdx +++ b/packages/web/src/content/docs/ru/go.mdx @@ -147,42 +147,42 @@ OpenCode Go предназначен для [OpenCode](https://opencode.ai) и Цены на токены указаны за 1M токенов. | Model | Input | Output | Cached Read | Cached Write | Месячный лимит | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | -------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Часы Peak с понедельника по пятницу: 01:00-04:00 и 06:00-10:00 UTC; все остальные часы, включая выходные, относятся к Off-Peak. [Подробнее](https://api-docs.deepseek.com/quick_start/pricing/). @@ -193,34 +193,34 @@ OpenCode Go предназначен для [OpenCode](https://opencode.ai) и В таблице ниже приведено примерное число запросов на основе типичных сценариев использования Go: | Model | запросов за 5 часов | запросов в неделю | запросов в месяц | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ------------------- | ----------------- | ---------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | В оценках используются следующие количества токенов на запрос; фактическое использование может отличаться. diff --git a/packages/web/src/content/docs/th/go.mdx b/packages/web/src/content/docs/th/go.mdx index 7246269cbc5a..d56836968eef 100644 --- a/packages/web/src/content/docs/th/go.mdx +++ b/packages/web/src/content/docs/th/go.mdx @@ -134,42 +134,42 @@ OpenCode Go ออกแบบมาสำหรับ [OpenCode](https://openco ราคา token แสดงต่อ 1M tokens | Model | Input | Output | Cached Read | Cached Write | ขีดจำกัดรายเดือน | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ---------------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** ช่วงเวลา Peak คือ 01:00-04:00 และ 06:00-10:00 UTC ตั้งแต่วันจันทร์ถึงวันศุกร์ ส่วนเวลาอื่นทั้งหมด รวมถึงวันหยุดสุดสัปดาห์ เป็น Off-Peak [ดูข้อมูลเพิ่มเติม](https://api-docs.deepseek.com/quick_start/pricing/) @@ -180,34 +180,34 @@ OpenCode Go ออกแบบมาสำหรับ [OpenCode](https://openco ตารางด้านล่างแสดงจำนวน request โดยประมาณตามรูปแบบการใช้งานปกติของ Go: | Model | requests ต่อ 5 ชั่วโมง | requests ต่อสัปดาห์ | requests ต่อเดือน | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ---------------------- | ------------------- | ----------------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | การประมาณการใช้จำนวน token ต่อ request ดังต่อไปนี้ การใช้งานจริงอาจแตกต่างกัน diff --git a/packages/web/src/content/docs/tr/go.mdx b/packages/web/src/content/docs/tr/go.mdx index fb21b09fc002..998eaa96b1c8 100644 --- a/packages/web/src/content/docs/tr/go.mdx +++ b/packages/web/src/content/docs/tr/go.mdx @@ -134,42 +134,42 @@ Her model için şu kullanım limitleri geçerlidir: 5 saatlik — aylık limiti Token fiyatları 1M token başına verilmiştir. | Model | Input | Output | Cached Read | Cached Write | Aylık limit | -| --------------------------------------- | ------ | ------ | ----------- | ------------ | ------------- | -| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| --------------------------------------- | ------ | ------ | ----------- | ------------ | ----------- | +| Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak saatleri pazartesiden cumaya 01:00-04:00 ve 06:00-10:00 UTC'dir; hafta sonları dahil diğer tüm saatler Off-Peak'tir. [Daha fazla bilgi](https://api-docs.deepseek.com/quick_start/pricing/). @@ -180,34 +180,34 @@ Token fiyatları 1M token başına verilmiştir. Aşağıdaki tabloda tipik Go kullanım modellerine dayalı tahmini istek sayısı verilmiştir: | Model | 5 saatte bir istek | haftalık istek | aylık istek | -| ---------------------------- | ------------------- | ----------------- | ------------------ | -| Omen Alpha | 11,600 | 29,000 | 57,900 | -| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | -| GLM-5.3 | 220 | 540 | 1,080 | -| GLM-5.2 | 880 | 2,150 | 4,300 | -| GLM-5.1 | 880 | 2,150 | 4,300 | -| Kimi K3 | 110 | 250 | 490 | -| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | -| Kimi K2.6 | 1,150 | 2,880 | 5,750 | -| LongCat-2.0 | 11,400 | 28,600 | 57,200 | -| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | -| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | -| MiniMax M3 | 3,200 | 8,000 | 16,000 | -| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | -| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | -| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | -| Qwen3.8 Max | 160 | 400 | 810 | -| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | -| Qwen3.7 Max | 170 | 420 | 840 | -| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | -| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | -| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | -| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | -| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | -| Hy4 preview | 1,350 | 3,380 | 6,770 | -| Hy3 | 4,300 | 10,750 | 21,500 | -| Grok 4.6 | 169 | 423 | 845 | -| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | +| ---------------------------- | ------------------ | -------------- | ----------- | +| Omen Alpha | 11,600 | 29,000 | 57,900 | +| GLM-5.3-Flash | 6,320 | 15,790 | 31,580 | +| GLM-5.3 | 220 | 540 | 1,080 | +| GLM-5.2 | 880 | 2,150 | 4,300 | +| GLM-5.1 | 880 | 2,150 | 4,300 | +| Kimi K3 | 110 | 250 | 490 | +| Kimi K2.7 Code | 1,350 | 3,380 | 6,750 | +| Kimi K2.6 | 1,150 | 2,880 | 5,750 | +| LongCat-2.0 | 11,400 | 28,600 | 57,200 | +| MiMo-V2.5 | 30,100 | 75,200 | 150,400 | +| MiMo-V2.5-Pro | 3,250 | 8,150 | 16,300 | +| MiniMax M3 | 3,200 | 8,000 | 16,000 | +| MiniMax M2.7 | 3,400 | 8,500 | 17,000 | +| Muse Spark 1.3 Contributor | 45,300 | 113,300 | 226,600 | +| Muse Spark 1.2 Contributor | 45,300 | 113,300 | 226,600 | +| Qwen3.8 Max | 160 | 400 | 810 | +| Qwen3.8 Flash | 5,400 | 13,500 | 27,000 | +| Qwen3.7 Max | 170 | 420 | 840 | +| Qwen3.7 Plus | 4,300 | 10,800 | 21,600 | +| Qwen3.6 Plus | 3,300 | 8,200 | 16,300 | +| DeepSeek V4 Pro | 1,050 | 2,600 | 5,200 | +| DeepSeek V4 Flash | 7,600 | 18,900 | 37,800 | +| DeepSeek V4 Flash Vision Exp | 3,800 | 9,450 | 18,900 | +| Hy4 preview | 1,350 | 3,380 | 6,770 | +| Hy3 | 4,300 | 10,750 | 21,500 | +| Grok 4.6 | 169 | 423 | 845 | +| GPT 5.6 Luna | 2,050 | 5,100 | 10,250 | Tahminler istek başına aşağıdaki token sayılarını kullanır; gerçek kullanım değişir. diff --git a/packages/web/src/content/docs/zh-cn/go.mdx b/packages/web/src/content/docs/zh-cn/go.mdx index ad4ffe237d5c..d308f193d6fa 100644 --- a/packages/web/src/content/docs/zh-cn/go.mdx +++ b/packages/web/src/content/docs/zh-cn/go.mdx @@ -135,40 +135,40 @@ Token 价格按每 1M tokens 列示。 | 模型 | 输入 | 输出 | 缓存读取 | 缓存写入 | 每月限制 | | --------------------------------------- | ------ | ------ | --------- | -------- | -------- | | Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 时段为周一至周五的 01:00-04:00 和 06:00-10:00 UTC;其他所有时段(包括周末)均为 Off-Peak。[了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 diff --git a/packages/web/src/content/docs/zh-tw/go.mdx b/packages/web/src/content/docs/zh-tw/go.mdx index 349336f8ff3a..255650be197b 100644 --- a/packages/web/src/content/docs/zh-tw/go.mdx +++ b/packages/web/src/content/docs/zh-tw/go.mdx @@ -133,42 +133,42 @@ OpenCode Go 適用於 [OpenCode](https://opencode.ai) 以及其他會產生類 Token 價格按每 1M tokens 列示。 | 模型 | 輸入 | 輸出 | 快取讀取 | 快取寫入 | 每月限制 | -| --------------------------------------- | ------ | ------ | --------- | -------- | ------ | +| --------------------------------------- | ------ | ------ | --------- | -------- | -------- | | Omen Alpha | $0.20 | $0.66 | $0.04 | - | **$100** | -| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | -| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | -| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | -| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | -| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | -| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | -| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | -| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | -| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | -| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | -| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | -| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | -| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | -| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | -| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | -| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | -| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | -| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | -| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | -| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | -| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | -| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | -| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | -| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | -| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | -| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | -| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | -| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | -| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | -| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | -| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | -| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | +| GLM-5.3-Flash | $0.15 | $0.50 | $0.03 | - | **$60** | +| GLM-5.3 | $1.40 | $4.40 | $0.26 | - | **$15** | +| GLM-5.2 | $1.40 | $4.40 | $0.26 | - | **$60** | +| GLM-5.1 | $1.40 | $4.40 | $0.26 | - | **$60** | +| Kimi K3 | $3.00 | $15.00 | $0.30 | - | **$15** | +| Kimi K2.7 Code | $0.95 | $4.00 | $0.19 | - | **$60** | +| Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | **$60** | +| LongCat-2.0 | $0.30 | $1.20 | $0.006 | - | **$60** | +| MiMo V2.5 | $0.14 | $0.28 | $0.0028 | - | **$60** | +| MiMo V2.5 Pro | $0.435 | $0.87 | $0.003625 | - | **$15** | +| MiniMax M3 | $0.30 | $1.20 | $0.06 | - | **$60** | +| MiniMax M2.7 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| MiniMax M2.5 | $0.30 | $1.20 | $0.06 | $0.375 | **$60** | +| Muse Spark 1.3 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Muse Spark 1.2 Contributor | $0.10 | $0.20 | $0.002 | - | **$60** | +| Qwen3.8 Max | $2.00 | $6.00 | $0.25 | $2.50 | **$15** | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | **$30** | +| Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | **$30** | +| Qwen3.7 Plus (≤ 256K tokens) | $0.40 | $1.60 | $0.04 | $0.50 | **$60** | +| Qwen3.7 Plus (> 256K tokens) | $1.20 | $4.80 | $0.12 | $1.50 | **$60** | +| Qwen3.6 Plus (≤ 256K tokens) | $0.50 | $3.00 | $0.05 | $0.625 | **$60** | +| Qwen3.6 Plus (> 256K tokens) | $2.00 | $6.00 | $0.20 | $2.50 | **$60** | +| DeepSeek V4 Pro (Off-Peak) | $0.66 | $1.98 | $0.022 | - | **$15** | +| DeepSeek V4 Pro (Peak) | $1.32 | $3.96 | $0.044 | - | **$15** | +| DeepSeek V4 Flash (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$30** | +| DeepSeek V4 Flash (Peak) | $0.44 | $1.32 | $0.014 | - | **$30** | +| DeepSeek V4 Flash Vision Exp (Off-Peak) | $0.22 | $0.66 | $0.007 | - | **$15** | +| DeepSeek V4 Flash Vision Exp (Peak) | $0.44 | $1.32 | $0.014 | - | **$15** | +| Hy4 preview | $0.834 | $2.501 | $0.042 | - | **$30** | +| Hy3 | $0.14 | $0.58 | $0.035 | - | **$60** | +| Grok 4.6 (≤ 200K tokens) | $2.00 | $6.00 | $0.50 | - | **$15** | +| Grok 4.6 (> 200K tokens) | $4.00 | $12.00 | $1.00 | - | **$15** | +| GPT 5.6 Luna (≤ 272K tokens) | $0.20 | $1.20 | $0.02 | $0.25 | **$15** | +| GPT 5.6 Luna (> 272K tokens) | $0.40 | $1.80 | $0.04 | $0.50 | **$15** | **DeepSeek V4 Flash / V4 Flash Vision Exp / V4 Pro:** Peak 時段為週一至週五的 01:00-04:00 和 06:00-10:00 UTC;其他所有時段(包括週末)均為 Off-Peak。[了解更多](https://api-docs.deepseek.com/quick_start/pricing/)。 From a9a6fad0fae42af99b9f4b1d4ff519a979f16c90 Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Wed, 9 Sep 2026 21:51:42 -0500 Subject: [PATCH 28/94] fix(opencode): request summarized adaptive thinking (#48269) Co-authored-by: Aljosha Friemann <1730315+afriemann@users.noreply.github.com> --- packages/opencode/src/plugin/github-copilot/models.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/plugin/github-copilot/models.ts b/packages/opencode/src/plugin/github-copilot/models.ts index 870e3f87a0fd..8cafa567150b 100644 --- a/packages/opencode/src/plugin/github-copilot/models.ts +++ b/packages/opencode/src/plugin/github-copilot/models.ts @@ -176,7 +176,7 @@ function build(key: string, remote: SelectableItem, url: string, prev?: Model): variants[effort] = { thinking: { type: "adaptive", - ...(model.api.id.includes("opus-4.7") ? { display: "summarized" } : {}), + display: "summarized", }, effort, } From 28a62b71489dd952e01369acdd71e9d686440b28 Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 10 Sep 2026 11:05:41 +0800 Subject: [PATCH 29/94] feat(go): add DeepSeek V4.1 Flash (#48270) --- .../console/app/src/component/go-models.ts | 15 ++++++++++-- .../app/src/component/limits-graph.css | 7 ++++++ .../app/src/component/limits-graph.tsx | 9 ++++++++ packages/console/app/src/i18n/ar.ts | 2 ++ packages/console/app/src/i18n/br.ts | 2 ++ packages/console/app/src/i18n/da.ts | 2 ++ packages/console/app/src/i18n/de.ts | 2 ++ packages/console/app/src/i18n/en.ts | 2 ++ packages/console/app/src/i18n/es.ts | 2 ++ packages/console/app/src/i18n/fr.ts | 2 ++ packages/console/app/src/i18n/it.ts | 2 ++ packages/console/app/src/i18n/ja.ts | 2 ++ packages/console/app/src/i18n/ko.ts | 2 ++ packages/console/app/src/i18n/no.ts | 2 ++ packages/console/app/src/i18n/pl.ts | 2 ++ packages/console/app/src/i18n/ru.ts | 2 ++ packages/console/app/src/i18n/th.ts | 2 ++ packages/console/app/src/i18n/tr.ts | 2 ++ packages/console/app/src/i18n/uk.ts | 2 ++ packages/console/app/src/i18n/zh.ts | 2 ++ packages/console/app/src/i18n/zht.ts | 2 ++ packages/console/app/src/routes/go/index.css | 4 ---- packages/console/app/src/routes/go/index.tsx | 8 +++++++ .../routes/workspace/[id]/go/lite-section.tsx | 2 ++ packages/web/src/content/docs/ar/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/bs/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/da/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/de/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/es/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/fr/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/go.mdx | 21 +++++++++++------ packages/web/src/content/docs/it/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/ja/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/ko/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/nb/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/pl/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/pt-br/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/ru/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/th/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/tr/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/zh-cn/go.mdx | 23 ++++++++++++------- packages/web/src/content/docs/zh-tw/go.mdx | 23 ++++++++++++------- 42 files changed, 344 insertions(+), 149 deletions(-) diff --git a/packages/console/app/src/component/go-models.ts b/packages/console/app/src/component/go-models.ts index 0aa2f1704b99..db081edb678b 100644 --- a/packages/console/app/src/component/go-models.ts +++ b/packages/console/app/src/component/go-models.ts @@ -16,12 +16,23 @@ export const goModels = [ { id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", requests: 3250, allowance: 15 }, { id: "qwen3.6-plus", name: "Qwen3.6 Plus", requests: 3300, allowance: 60 }, { id: "minimax-m2.7", name: "MiniMax M2.7", requests: 3400, allowance: 60 }, - { id: "deepseek-v4-flash-vision-exp", name: "DeepSeek V4 Flash Vision Exp", requests: 3800, allowance: 15 }, + { id: "deepseek-v4-flash-vision-exp", name: "DeepSeek V4 Flash Vision Exp", requests: 6500, allowance: 15 }, { id: "qwen3.7-plus", name: "Qwen3.7 Plus", requests: 4300, allowance: 60, featured: true }, { id: "hy3", name: "Hy3", requests: 4300, allowance: 60 }, { id: "qwen3.8-flash", name: "Qwen3.8 Flash", requests: 5400, allowance: 30 }, { id: "glm-5.3-flash", name: "GLM-5.3-Flash", requests: 6320, allowance: 60, featured: true }, - { id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", requests: 7600, allowance: 30, featured: true }, + { id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", requests: 13000, allowance: 30, featured: true }, + { + id: "deepseek-flash", + name: "DeepSeek V4.1 Flash", + requests: 26000, + baseRequests: 6500, + allowance: 60, + baseAllowance: 15, + bonus: 4, + featured: true, + fresh: true, + }, { id: "longcat-2.0", name: "LongCat-2.0", requests: 11400, allowance: 60 }, { id: "omen-alpha", name: "Omen Alpha", requests: 11600, allowance: 100, featured: true, fresh: true }, { id: "mimo-v2.5", name: "MiMo-V2.5", requests: 30100, allowance: 60, featured: true }, diff --git a/packages/console/app/src/component/limits-graph.css b/packages/console/app/src/component/limits-graph.css index c03996c96e6c..ddcf2dfece52 100644 --- a/packages/console/app/src/component/limits-graph.css +++ b/packages/console/app/src/component/limits-graph.css @@ -25,6 +25,13 @@ } } + s { + display: block; + color: var(--color-text-weak); + font-size: 0.6875rem; + font-weight: 400; + } + [data-slot="columns"], [data-slot="model-row"] { display: grid; diff --git a/packages/console/app/src/component/limits-graph.tsx b/packages/console/app/src/component/limits-graph.tsx index b10de2969685..410fd48e4392 100644 --- a/packages/console/app/src/component/limits-graph.tsx +++ b/packages/console/app/src/component/limits-graph.tsx @@ -80,6 +80,9 @@ export function LimitsGraph(props: { href: string }) { {i18n.t("go.graph.new")} + + {i18n.t("go.graph.bonus", { count: model.bonus! })} +
    + + {format().format(model.baseRequests!)}{" "} + {format().format(model.requests)}
    = 60 ? "" : undefined}> + + {currency().format(model.baseAllowance!)}{" "} + {(part) => ( diff --git a/packages/console/app/src/i18n/ar.ts b/packages/console/app/src/i18n/ar.ts index 035794a23bb1..fac1d6475833 100644 --- a/packages/console/app/src/i18n/ar.ts +++ b/packages/console/app/src/i18n/ar.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "يحصل DeepSeek V4.1 Flash على حدود استخدام مضاعفة 4 مرات لفترة محدودة", + "go.graph.bonus": "استخدام مضاعف {{count}} مرات", "nav.github": "GitHub", "nav.docs": "الوثائق", "nav.changelog": "سجل التغييرات", diff --git a/packages/console/app/src/i18n/br.ts b/packages/console/app/src/i18n/br.ts index 9afa3e27d8af..a2e5867a63dc 100644 --- a/packages/console/app/src/i18n/br.ts +++ b/packages/console/app/src/i18n/br.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash tem limites de uso 4x maiores por tempo limitado", + "go.graph.bonus": "{{count}}× mais uso", "nav.github": "GitHub", "nav.docs": "Documentação", "nav.changelog": "Changelog", diff --git a/packages/console/app/src/i18n/da.ts b/packages/console/app/src/i18n/da.ts index b7b39f7b0e8d..d2787bb611eb 100644 --- a/packages/console/app/src/i18n/da.ts +++ b/packages/console/app/src/i18n/da.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash får firedoblet brugsgrænse i en begrænset periode", + "go.graph.bonus": "{{count}}× forbrug", "nav.github": "GitHub", "nav.docs": "Dokumentation", "nav.changelog": "Changelog", diff --git a/packages/console/app/src/i18n/de.ts b/packages/console/app/src/i18n/de.ts index 9f31cd89ec34..8fb78e76e611 100644 --- a/packages/console/app/src/i18n/de.ts +++ b/packages/console/app/src/i18n/de.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash erhält für begrenzte Zeit 4x Nutzungslimits", + "go.graph.bonus": "{{count}}× Nutzung", "nav.github": "GitHub", "nav.docs": "Dokumentation", "nav.changelog": "Changelog", diff --git a/packages/console/app/src/i18n/en.ts b/packages/console/app/src/i18n/en.ts index 44cd2d74eb56..4469c3353c51 100644 --- a/packages/console/app/src/i18n/en.ts +++ b/packages/console/app/src/i18n/en.ts @@ -1,4 +1,6 @@ export const dict = { + "go.promo.deepseek": "DeepSeek V4.1 Flash gets 4× usage limits for a limited time", + "go.graph.bonus": "{{count}}× usage", "nav.github": "GitHub", "nav.docs": "Docs", "nav.data": "Data", diff --git a/packages/console/app/src/i18n/es.ts b/packages/console/app/src/i18n/es.ts index 89634e4f9c84..9750bc584e27 100644 --- a/packages/console/app/src/i18n/es.ts +++ b/packages/console/app/src/i18n/es.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash tiene límites de uso 4x mayores por tiempo limitado", + "go.graph.bonus": "{{count}}× de uso", "nav.github": "GitHub", "nav.docs": "Documentación", "nav.changelog": "Registro de cambios", diff --git a/packages/console/app/src/i18n/fr.ts b/packages/console/app/src/i18n/fr.ts index 5c0c3e95951a..5281b6b3e54f 100644 --- a/packages/console/app/src/i18n/fr.ts +++ b/packages/console/app/src/i18n/fr.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash bénéficie de limites d’utilisation 4x supérieures pour une durée limitée", + "go.graph.bonus": "{{count}}× d’utilisation", "app.meta.description": "OpenCode - L'agent de code open source.", "nav.github": "GitHub", "nav.docs": "Documentation", diff --git a/packages/console/app/src/i18n/it.ts b/packages/console/app/src/i18n/it.ts index 82d32ab25e4f..cb2f3d7d7a83 100644 --- a/packages/console/app/src/i18n/it.ts +++ b/packages/console/app/src/i18n/it.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash offre limiti di utilizzo 4x superiori per un periodo limitato", + "go.graph.bonus": "Utilizzo {{count}}×", "nav.github": "GitHub", "nav.docs": "Documentazione", "nav.changelog": "Changelog", diff --git a/packages/console/app/src/i18n/ja.ts b/packages/console/app/src/i18n/ja.ts index ba0491b97426..2ae754c47d90 100644 --- a/packages/console/app/src/i18n/ja.ts +++ b/packages/console/app/src/i18n/ja.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flashの利用上限が期間限定で4倍に", + "go.graph.bonus": "利用枠{{count}}倍", "nav.github": "GitHub", "nav.docs": "ドキュメント", "nav.changelog": "変更履歴", diff --git a/packages/console/app/src/i18n/ko.ts b/packages/console/app/src/i18n/ko.ts index c0fe7f887379..e9b5c92071c4 100644 --- a/packages/console/app/src/i18n/ko.ts +++ b/packages/console/app/src/i18n/ko.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash 사용 한도가 한시적으로 4배 확대됩니다", + "go.graph.bonus": "사용량 {{count}}배", "nav.github": "GitHub", "nav.docs": "문서", "nav.changelog": "변경 내역", diff --git a/packages/console/app/src/i18n/no.ts b/packages/console/app/src/i18n/no.ts index 801eed55740e..fc2636a30057 100644 --- a/packages/console/app/src/i18n/no.ts +++ b/packages/console/app/src/i18n/no.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash får 4x bruksgrense i en begrenset periode", + "go.graph.bonus": "{{count}}× bruk", "nav.github": "GitHub", "nav.docs": "Dokumentasjon", "nav.changelog": "Endringslogg", diff --git a/packages/console/app/src/i18n/pl.ts b/packages/console/app/src/i18n/pl.ts index 8716919d5c92..4a4e1ba724a6 100644 --- a/packages/console/app/src/i18n/pl.ts +++ b/packages/console/app/src/i18n/pl.ts @@ -2,6 +2,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash oferuje 4x wyższe limity użycia przez ograniczony czas", + "go.graph.bonus": "{{count}}× większy limit", "nav.github": "GitHub", "nav.docs": "Dokumentacja", "nav.changelog": "Dziennik zmian", diff --git a/packages/console/app/src/i18n/ru.ts b/packages/console/app/src/i18n/ru.ts index df3f4fbc99c1..37f6e43b06d6 100644 --- a/packages/console/app/src/i18n/ru.ts +++ b/packages/console/app/src/i18n/ru.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash получает 4x лимиты использования на ограниченное время", + "go.graph.bonus": "Лимит ×{{count}}", "nav.github": "GitHub", "nav.docs": "Документация", "nav.changelog": "Список изменений", diff --git a/packages/console/app/src/i18n/th.ts b/packages/console/app/src/i18n/th.ts index 4c1758d269fb..97a80f039418 100644 --- a/packages/console/app/src/i18n/th.ts +++ b/packages/console/app/src/i18n/th.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash เพิ่มโควตาการใช้งานเป็น 4 เท่าในช่วงเวลาจำกัด", + "go.graph.bonus": "ใช้งาน {{count}} เท่า", "nav.github": "GitHub", "nav.docs": "เอกสาร", "nav.changelog": "บันทึกการเปลี่ยนแปลง", diff --git a/packages/console/app/src/i18n/tr.ts b/packages/console/app/src/i18n/tr.ts index 3748ba8d8ade..4289706cc66e 100644 --- a/packages/console/app/src/i18n/tr.ts +++ b/packages/console/app/src/i18n/tr.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash sınırlı bir süre için 4x kullanım limiti sunuyor", + "go.graph.bonus": "{{count}}× kullanım", "nav.github": "GitHub", "nav.docs": "Dokümantasyon", "nav.changelog": "Değişiklik günlüğü", diff --git a/packages/console/app/src/i18n/uk.ts b/packages/console/app/src/i18n/uk.ts index 0c23398ce9f6..4efac1d76762 100644 --- a/packages/console/app/src/i18n/uk.ts +++ b/packages/console/app/src/i18n/uk.ts @@ -2,6 +2,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash отримує 4x ліміти використання протягом обмеженого часу", + "go.graph.bonus": "Ліміт ×{{count}}", "nav.github": "GitHub", "nav.docs": "Документація", "nav.changelog": "Журнал змін", diff --git a/packages/console/app/src/i18n/zh.ts b/packages/console/app/src/i18n/zh.ts index 887911f04bd6..8c1aff6f6083 100644 --- a/packages/console/app/src/i18n/zh.ts +++ b/packages/console/app/src/i18n/zh.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash 限时享受 4 倍使用额度", + "go.graph.bonus": "{{count}} 倍用量", "nav.github": "GitHub", "nav.docs": "文档", "nav.changelog": "更新日志", diff --git a/packages/console/app/src/i18n/zht.ts b/packages/console/app/src/i18n/zht.ts index 742cd3b1da87..a4a5f4bd4a73 100644 --- a/packages/console/app/src/i18n/zht.ts +++ b/packages/console/app/src/i18n/zht.ts @@ -3,6 +3,8 @@ import { dict as en } from "./en" export const dict = { ...en, + "go.promo.deepseek": "DeepSeek V4.1 Flash 限時享有 4 倍使用額度", + "go.graph.bonus": "{{count}} 倍用量", "nav.github": "GitHub", "nav.docs": "文件", "nav.changelog": "更新日誌", diff --git a/packages/console/app/src/routes/go/index.css b/packages/console/app/src/routes/go/index.css index 8193441c941c..6793b6c32bb1 100644 --- a/packages/console/app/src/routes/go/index.css +++ b/packages/console/app/src/routes/go/index.css @@ -363,10 +363,6 @@ body { [data-slot="text"] { color: var(--color-text-strong); line-height: 1.4; - - @media (max-width: 30.625rem) { - display: none; - } } } diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index f80bde082499..ba8f9302b46f 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -46,8 +46,10 @@ const models = [ { name: "MiniMax M2.7", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, { name: "Muse Spark 1.3 Contributor", training: "go.faq.a5.used", retention: "go.faq.a5.notZdr" }, { name: "Muse Spark 1.2 Contributor", training: "go.faq.a5.used", retention: "go.faq.a5.notZdr" }, + { name: "DeepSeek V4.1 Flash", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, { name: "DeepSeek V4 Pro", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, { name: "DeepSeek V4 Flash", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, + { name: "DeepSeek V4 Flash Vision Exp", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, { name: "Hy4 preview", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, { name: "Hy3", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, { name: "Omen Alpha", training: "go.faq.a5.notUsed", retention: "go.faq.a5.retention0" }, @@ -80,6 +82,12 @@ export default function Home() {
    +
    + {i18n.t("home.banner.badge")} +
    + {i18n.t("go.promo.deepseek")} +
    +
    diff --git a/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx b/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx index 868961777ce5..335a51fa632e 100644 --- a/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/go/lite-section.tsx @@ -659,6 +659,7 @@ export function LiteSection(props: { lite: LiteSubscription | undefined }) {
  • Qwen3.7 Max
  • Qwen3.7 Plus
  • Qwen3.6 Plus
  • +
  • DeepSeek V4.1 Flash — {i18n.t("go.graph.bonus", { count: 4 })}
  • DeepSeek V4 Pro
  • DeepSeek V4 Flash
  • DeepSeek V4 Flash Vision Exp
  • @@ -668,6 +669,7 @@ export function LiteSection(props: { lite: LiteSubscription | undefined }) {
  • Hy3
  • Omen Alpha
  • +

    {i18n.t("go.promo.deepseek")}

    {i18n.t("workspace.lite.promo.footer")}

    + - - - - diff --git a/packages/console/app/src/routes/index.css b/packages/console/app/src/routes/index.css index d06e2659533b..9d063f8e4685 100644 --- a/packages/console/app/src/routes/index.css +++ b/packages/console/app/src/routes/index.css @@ -490,77 +490,6 @@ body { } } - [data-component="desktop-app-banner"] { - display: flex; - align-items: center; - gap: 12px; - margin-bottom: 32px; - - [data-slot="badge"] { - background: var(--color-background-strong); - color: var(--color-text-inverted); - font-weight: 500; - padding: 4px 8px; - line-height: 1; - flex-shrink: 0; - } - - [data-slot="content"] { - display: flex; - align-items: center; - gap: 1ch; - } - - [data-slot="text"] { - color: var(--color-text-strong); - line-height: 1.4; - - @media (max-width: 30.625rem) { - display: none; - } - } - - [data-slot="platforms"] { - @media (max-width: 49.125rem) { - display: none; - } - } - - [data-slot="link"] { - color: var(--color-text-weak); - white-space: nowrap; - text-decoration: none; - - @media (max-width: 30.625rem) { - display: none; - } - } - - [data-slot="link"]:hover { - color: var(--color-text); - text-decoration: underline; - text-underline-offset: 2px; - text-decoration-thickness: 1px; - } - - [data-slot="link-mobile"] { - display: none; - color: var(--color-text-strong); - white-space: nowrap; - text-decoration: none; - - @media (max-width: 30.625rem) { - display: inline; - } - } - - [data-slot="link-mobile"]:hover { - text-decoration: underline; - text-underline-offset: 2px; - text-decoration-thickness: 1px; - } - } - [data-slot="hero-copy"] { [data-slot="releases"] { background: none; diff --git a/packages/console/app/src/routes/index.tsx b/packages/console/app/src/routes/index.tsx index c046a56a2917..99ec06895f98 100644 --- a/packages/console/app/src/routes/index.tsx +++ b/packages/console/app/src/routes/index.tsx @@ -54,22 +54,6 @@ export default function Home() {
    -
    - {i18n.t("home.banner.badge")} -
    - - {i18n.t("home.banner.text")} - {i18n.t("home.banner.platforms")}. - - - {i18n.t("home.banner.downloadNow")} - - - {i18n.t("home.banner.downloadBetaNow")} - -
    -
    -
    {/* paru + + yay +
    @@ -115,7 +102,7 @@ export default function Home() { curl -fsSL https:// - opencode.ai/install + opencode.ai/v2/install | bash @@ -124,8 +111,8 @@ export default function Home() { @@ -133,8 +120,8 @@ export default function Home() { @@ -143,7 +130,7 @@ export default function Home() { @@ -152,7 +139,16 @@ export default function Home() { + + + diff --git a/packages/web/config.mjs b/packages/web/config.mjs index 08ab45bda774..c75181d23f95 100644 --- a/packages/web/config.mjs +++ b/packages/web/config.mjs @@ -9,6 +9,6 @@ export default { discord: "https://opencode.ai/discord", headerLinks: [ { name: "app.header.home", url: "/" }, - { name: "app.header.docs", url: "/docs/" }, + { name: "app.header.docs", url: "/v2/docs" }, ], } From ae2da69004ca000897c59666c8b633b0b82d10c7 Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 19 Sep 2026 11:30:51 +0800 Subject: [PATCH 66/94] docs: add Qwen3.8 Flash to Zen (#49888) --- packages/web/src/content/docs/ar/zen.mdx | 2 ++ packages/web/src/content/docs/bs/zen.mdx | 2 ++ packages/web/src/content/docs/da/zen.mdx | 2 ++ packages/web/src/content/docs/de/zen.mdx | 2 ++ packages/web/src/content/docs/es/zen.mdx | 2 ++ packages/web/src/content/docs/fr/zen.mdx | 2 ++ packages/web/src/content/docs/it/zen.mdx | 2 ++ packages/web/src/content/docs/ja/zen.mdx | 2 ++ packages/web/src/content/docs/ko/zen.mdx | 2 ++ packages/web/src/content/docs/nb/zen.mdx | 2 ++ packages/web/src/content/docs/pl/zen.mdx | 2 ++ packages/web/src/content/docs/pt-br/zen.mdx | 2 ++ packages/web/src/content/docs/ru/zen.mdx | 2 ++ packages/web/src/content/docs/th/zen.mdx | 2 ++ packages/web/src/content/docs/tr/zen.mdx | 2 ++ packages/web/src/content/docs/zen.mdx | 2 ++ packages/web/src/content/docs/zh-cn/zen.mdx | 2 ++ packages/web/src/content/docs/zh-tw/zen.mdx | 2 ++ 18 files changed, 36 insertions(+) diff --git a/packages/web/src/content/docs/ar/zen.mdx b/packages/web/src/content/docs/ar/zen.mdx index adb3ed6c5fa0..f41cc35db7ad 100644 --- a/packages/web/src/content/docs/ar/zen.mdx +++ b/packages/web/src/content/docs/ar/zen.mdx @@ -99,6 +99,7 @@ OpenCode Zen هي بوابة AI تتيح لك الوصول إلى هذه الن | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -163,6 +164,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/bs/zen.mdx b/packages/web/src/content/docs/bs/zen.mdx index fcdd6ef0643a..c066f72e6844 100644 --- a/packages/web/src/content/docs/bs/zen.mdx +++ b/packages/web/src/content/docs/bs/zen.mdx @@ -104,6 +104,7 @@ Našim modelima možete pristupiti i preko sljedećih API endpointa. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ Podržavamo pay-as-you-go model. Ispod su cijene **po 1M tokena**. | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/da/zen.mdx b/packages/web/src/content/docs/da/zen.mdx index 88708c5461ba..766648fc60cf 100644 --- a/packages/web/src/content/docs/da/zen.mdx +++ b/packages/web/src/content/docs/da/zen.mdx @@ -104,6 +104,7 @@ Du kan også få adgang til vores modeller gennem følgende API-endpoints. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ Vi understøtter en pay-as-you-go-model. Nedenfor er priserne **pr. 1M tokens**. | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/de/zen.mdx b/packages/web/src/content/docs/de/zen.mdx index 9cb06fa2ee69..f5f73b89a928 100644 --- a/packages/web/src/content/docs/de/zen.mdx +++ b/packages/web/src/content/docs/de/zen.mdx @@ -95,6 +95,7 @@ Du kannst auch über die folgenden API-Endpunkte auf unsere Modelle zugreifen. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ Wir unterstützen ein Pay-as-you-go-Modell. Unten findest du die Preise **pro 1M | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/es/zen.mdx b/packages/web/src/content/docs/es/zen.mdx index c7e25c620d3d..62e9c4319f17 100644 --- a/packages/web/src/content/docs/es/zen.mdx +++ b/packages/web/src/content/docs/es/zen.mdx @@ -104,6 +104,7 @@ También puedes acceder a nuestros modelos a través de los siguientes endpoints | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ Admitimos un modelo de pago por uso. A continuación se muestran los precios **p | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/fr/zen.mdx b/packages/web/src/content/docs/fr/zen.mdx index e866a2896ca7..382feb55859f 100644 --- a/packages/web/src/content/docs/fr/zen.mdx +++ b/packages/web/src/content/docs/fr/zen.mdx @@ -95,6 +95,7 @@ Vous pouvez également accéder à nos modèles via les points de terminaison AP | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ Nous prenons en charge un modèle de paiement à l'utilisation. Vous trouverez c | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/it/zen.mdx b/packages/web/src/content/docs/it/zen.mdx index d5f5a4f6da0d..32bdf7db86d6 100644 --- a/packages/web/src/content/docs/it/zen.mdx +++ b/packages/web/src/content/docs/it/zen.mdx @@ -104,6 +104,7 @@ Puoi anche accedere ai nostri modelli tramite i seguenti endpoint API. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ Supportiamo un modello pay-as-you-go. Qui sotto trovi i prezzi **per 1M token**. | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/ja/zen.mdx b/packages/web/src/content/docs/ja/zen.mdx index 7074c9d39ca3..d97a80bfc74e 100644 --- a/packages/web/src/content/docs/ja/zen.mdx +++ b/packages/web/src/content/docs/ja/zen.mdx @@ -95,6 +95,7 @@ OpenCode Zen は、OpenCode のほかのプロバイダーと同じように動 | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/ko/zen.mdx b/packages/web/src/content/docs/ko/zen.mdx index 4667f70a39e0..f5975863feaa 100644 --- a/packages/web/src/content/docs/ko/zen.mdx +++ b/packages/web/src/content/docs/ko/zen.mdx @@ -95,6 +95,7 @@ OpenCode Zen은 OpenCode의 다른 provider와 똑같이 작동합니다. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/nb/zen.mdx b/packages/web/src/content/docs/nb/zen.mdx index 21bea7b56f0b..e643a39d06f4 100644 --- a/packages/web/src/content/docs/nb/zen.mdx +++ b/packages/web/src/content/docs/nb/zen.mdx @@ -104,6 +104,7 @@ Du kan også få tilgang til modellene våre gjennom følgende API-endepunkter. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ Vi støtter en pay-as-you-go-modell. Nedenfor er prisene **per 1M tokens**. | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/pl/zen.mdx b/packages/web/src/content/docs/pl/zen.mdx index 330ebcc4c1e1..37f5979741ce 100644 --- a/packages/web/src/content/docs/pl/zen.mdx +++ b/packages/web/src/content/docs/pl/zen.mdx @@ -104,6 +104,7 @@ Możesz też uzyskać dostęp do naszych modeli przez poniższe endpointy API. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ Obsługujemy model pay-as-you-go. Poniżej znajdują się ceny **za 1M tokenów* | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/pt-br/zen.mdx b/packages/web/src/content/docs/pt-br/zen.mdx index 336539d3c82b..74ae94ea7f97 100644 --- a/packages/web/src/content/docs/pt-br/zen.mdx +++ b/packages/web/src/content/docs/pt-br/zen.mdx @@ -95,6 +95,7 @@ Você também pode acessar nossos modelos pelos seguintes endpoints de API. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ Oferecemos um modelo pay-as-you-go. Abaixo estão os preços **por 1M tokens**. | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/ru/zen.mdx b/packages/web/src/content/docs/ru/zen.mdx index 5497bb27d8a3..44c6acca8805 100644 --- a/packages/web/src/content/docs/ru/zen.mdx +++ b/packages/web/src/content/docs/ru/zen.mdx @@ -104,6 +104,7 @@ OpenCode Zen работает как любой другой провайдер | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/th/zen.mdx b/packages/web/src/content/docs/th/zen.mdx index c5d7c45d651a..716600c86b31 100644 --- a/packages/web/src/content/docs/th/zen.mdx +++ b/packages/web/src/content/docs/th/zen.mdx @@ -97,6 +97,7 @@ OpenCode Zen ทำงานเหมือน provider อื่น ๆ ใน | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -161,6 +162,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/tr/zen.mdx b/packages/web/src/content/docs/tr/zen.mdx index fc51004c6858..487670ec0c8f 100644 --- a/packages/web/src/content/docs/tr/zen.mdx +++ b/packages/web/src/content/docs/tr/zen.mdx @@ -95,6 +95,7 @@ Modellerimize aşağıdaki API uç noktaları aracılığıyla da erişebilirsin | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ Kullandıkça öde modelini destekliyoruz. Aşağıda **1M token başına** fiya | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/zen.mdx b/packages/web/src/content/docs/zen.mdx index 0f1f0cd9112a..0fc5110453fe 100644 --- a/packages/web/src/content/docs/zen.mdx +++ b/packages/web/src/content/docs/zen.mdx @@ -104,6 +104,7 @@ You can also access our models through the following API endpoints. | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -170,6 +171,7 @@ We support a pay-as-you-go model. Below are the prices **per 1M tokens**. | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/zh-cn/zen.mdx b/packages/web/src/content/docs/zh-cn/zen.mdx index 20633889fb9f..a9529ed09ffc 100644 --- a/packages/web/src/content/docs/zh-cn/zen.mdx +++ b/packages/web/src/content/docs/zh-cn/zen.mdx @@ -95,6 +95,7 @@ OpenCode Zen 的工作方式与 OpenCode 中的任何其他提供商相同。 | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -159,6 +160,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | diff --git a/packages/web/src/content/docs/zh-tw/zen.mdx b/packages/web/src/content/docs/zh-tw/zen.mdx index 6077ae07d55c..ae2c802beabd 100644 --- a/packages/web/src/content/docs/zh-tw/zen.mdx +++ b/packages/web/src/content/docs/zh-tw/zen.mdx @@ -99,6 +99,7 @@ OpenCode Zen 的運作方式和 OpenCode 中的其他供應商一樣。 | Grok Build 0.1 | grok-build-0.1 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.3 | muse-spark-1.3 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | | Muse Spark 1.2 | muse-spark-1.2 | `https://opencode.ai/zen/v1/responses` | `@ai-sdk/openai` | +| Qwen3.8 Flash | qwen3.8-flash | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Max | qwen3.7-max | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | @@ -164,6 +165,7 @@ https://opencode.ai/zen/v1/models | Kimi K3 | $3.00 | $15.00 | $0.30 | - | | Kimi K2.6 | $0.95 | $4.00 | $0.16 | - | | Kimi K2.5 | $0.60 | $3.00 | $0.10 | - | +| Qwen3.8 Flash | $0.15 | $0.47 | $0.016 | $0.20 | | Qwen3.7 Max | $2.50 | $7.50 | $0.50 | $3.125 | | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | From a6cad7743f8eceee5e10828d78f6db79a5fed2d5 Mon Sep 17 00:00:00 2001 From: Daniel Chen Date: Fri, 18 Sep 2026 21:15:46 -0700 Subject: [PATCH 67/94] docs: add DeepSeek V4.1 Flash to Zen (#49897) --- packages/web/src/content/docs/ar/zen.mdx | 2 ++ packages/web/src/content/docs/bs/zen.mdx | 2 ++ packages/web/src/content/docs/da/zen.mdx | 2 ++ packages/web/src/content/docs/de/zen.mdx | 2 ++ packages/web/src/content/docs/es/zen.mdx | 2 ++ packages/web/src/content/docs/fr/zen.mdx | 2 ++ packages/web/src/content/docs/it/zen.mdx | 2 ++ packages/web/src/content/docs/ja/zen.mdx | 2 ++ packages/web/src/content/docs/ko/zen.mdx | 2 ++ packages/web/src/content/docs/nb/zen.mdx | 2 ++ packages/web/src/content/docs/pl/zen.mdx | 2 ++ packages/web/src/content/docs/pt-br/zen.mdx | 2 ++ packages/web/src/content/docs/ru/zen.mdx | 2 ++ packages/web/src/content/docs/th/zen.mdx | 2 ++ packages/web/src/content/docs/tr/zen.mdx | 2 ++ packages/web/src/content/docs/zen.mdx | 2 ++ packages/web/src/content/docs/zh-cn/zen.mdx | 2 ++ packages/web/src/content/docs/zh-tw/zen.mdx | 2 ++ 18 files changed, 36 insertions(+) diff --git a/packages/web/src/content/docs/ar/zen.mdx b/packages/web/src/content/docs/ar/zen.mdx index f41cc35db7ad..dd1f90ddf900 100644 --- a/packages/web/src/content/docs/ar/zen.mdx +++ b/packages/web/src/content/docs/ar/zen.mdx @@ -104,6 +104,7 @@ OpenCode Zen هي بوابة AI تتيح لك الوصول إلى هذه الن | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -169,6 +170,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/bs/zen.mdx b/packages/web/src/content/docs/bs/zen.mdx index c066f72e6844..08b41f4fe9eb 100644 --- a/packages/web/src/content/docs/bs/zen.mdx +++ b/packages/web/src/content/docs/bs/zen.mdx @@ -109,6 +109,7 @@ Našim modelima možete pristupiti i preko sljedećih API endpointa. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ Podržavamo pay-as-you-go model. Ispod su cijene **po 1M tokena**. | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/da/zen.mdx b/packages/web/src/content/docs/da/zen.mdx index 766648fc60cf..05ea77160391 100644 --- a/packages/web/src/content/docs/da/zen.mdx +++ b/packages/web/src/content/docs/da/zen.mdx @@ -109,6 +109,7 @@ Du kan også få adgang til vores modeller gennem følgende API-endpoints. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ Vi understøtter en pay-as-you-go-model. Nedenfor er priserne **pr. 1M tokens**. | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/de/zen.mdx b/packages/web/src/content/docs/de/zen.mdx index f5f73b89a928..a2f3ee4e46b2 100644 --- a/packages/web/src/content/docs/de/zen.mdx +++ b/packages/web/src/content/docs/de/zen.mdx @@ -100,6 +100,7 @@ Du kannst auch über die folgenden API-Endpunkte auf unsere Modelle zugreifen. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ Wir unterstützen ein Pay-as-you-go-Modell. Unten findest du die Preise **pro 1M | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/es/zen.mdx b/packages/web/src/content/docs/es/zen.mdx index 62e9c4319f17..35d92911ce31 100644 --- a/packages/web/src/content/docs/es/zen.mdx +++ b/packages/web/src/content/docs/es/zen.mdx @@ -109,6 +109,7 @@ También puedes acceder a nuestros modelos a través de los siguientes endpoints | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ Admitimos un modelo de pago por uso. A continuación se muestran los precios **p | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/fr/zen.mdx b/packages/web/src/content/docs/fr/zen.mdx index 382feb55859f..9d9d097768b7 100644 --- a/packages/web/src/content/docs/fr/zen.mdx +++ b/packages/web/src/content/docs/fr/zen.mdx @@ -100,6 +100,7 @@ Vous pouvez également accéder à nos modèles via les points de terminaison AP | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ Nous prenons en charge un modèle de paiement à l'utilisation. Vous trouverez c | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/it/zen.mdx b/packages/web/src/content/docs/it/zen.mdx index 32bdf7db86d6..9c915f9582ac 100644 --- a/packages/web/src/content/docs/it/zen.mdx +++ b/packages/web/src/content/docs/it/zen.mdx @@ -109,6 +109,7 @@ Puoi anche accedere ai nostri modelli tramite i seguenti endpoint API. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ Supportiamo un modello pay-as-you-go. Qui sotto trovi i prezzi **per 1M token**. | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/ja/zen.mdx b/packages/web/src/content/docs/ja/zen.mdx index d97a80bfc74e..dec388a58889 100644 --- a/packages/web/src/content/docs/ja/zen.mdx +++ b/packages/web/src/content/docs/ja/zen.mdx @@ -100,6 +100,7 @@ OpenCode Zen は、OpenCode のほかのプロバイダーと同じように動 | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/ko/zen.mdx b/packages/web/src/content/docs/ko/zen.mdx index f5975863feaa..363665cb2e8a 100644 --- a/packages/web/src/content/docs/ko/zen.mdx +++ b/packages/web/src/content/docs/ko/zen.mdx @@ -100,6 +100,7 @@ OpenCode Zen은 OpenCode의 다른 provider와 똑같이 작동합니다. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/nb/zen.mdx b/packages/web/src/content/docs/nb/zen.mdx index e643a39d06f4..1322f15b8004 100644 --- a/packages/web/src/content/docs/nb/zen.mdx +++ b/packages/web/src/content/docs/nb/zen.mdx @@ -109,6 +109,7 @@ Du kan også få tilgang til modellene våre gjennom følgende API-endepunkter. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ Vi støtter en pay-as-you-go-modell. Nedenfor er prisene **per 1M tokens**. | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/pl/zen.mdx b/packages/web/src/content/docs/pl/zen.mdx index 37f5979741ce..cc8b57187eaa 100644 --- a/packages/web/src/content/docs/pl/zen.mdx +++ b/packages/web/src/content/docs/pl/zen.mdx @@ -109,6 +109,7 @@ Możesz też uzyskać dostęp do naszych modeli przez poniższe endpointy API. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ Obsługujemy model pay-as-you-go. Poniżej znajdują się ceny **za 1M tokenów* | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/pt-br/zen.mdx b/packages/web/src/content/docs/pt-br/zen.mdx index 74ae94ea7f97..1fa23a5b2a10 100644 --- a/packages/web/src/content/docs/pt-br/zen.mdx +++ b/packages/web/src/content/docs/pt-br/zen.mdx @@ -100,6 +100,7 @@ Você também pode acessar nossos modelos pelos seguintes endpoints de API. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ Oferecemos um modelo pay-as-you-go. Abaixo estão os preços **por 1M tokens**. | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/ru/zen.mdx b/packages/web/src/content/docs/ru/zen.mdx index 44c6acca8805..2d7a02c74725 100644 --- a/packages/web/src/content/docs/ru/zen.mdx +++ b/packages/web/src/content/docs/ru/zen.mdx @@ -109,6 +109,7 @@ OpenCode Zen работает как любой другой провайдер | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/th/zen.mdx b/packages/web/src/content/docs/th/zen.mdx index 716600c86b31..e380d5e5ed81 100644 --- a/packages/web/src/content/docs/th/zen.mdx +++ b/packages/web/src/content/docs/th/zen.mdx @@ -102,6 +102,7 @@ OpenCode Zen ทำงานเหมือน provider อื่น ๆ ใน | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -167,6 +168,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/tr/zen.mdx b/packages/web/src/content/docs/tr/zen.mdx index 487670ec0c8f..d7ea730097dc 100644 --- a/packages/web/src/content/docs/tr/zen.mdx +++ b/packages/web/src/content/docs/tr/zen.mdx @@ -100,6 +100,7 @@ Modellerimize aşağıdaki API uç noktaları aracılığıyla da erişebilirsin | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ Kullandıkça öde modelini destekliyoruz. Aşağıda **1M token başına** fiya | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/zen.mdx b/packages/web/src/content/docs/zen.mdx index 0fc5110453fe..4c0c5a9f1b30 100644 --- a/packages/web/src/content/docs/zen.mdx +++ b/packages/web/src/content/docs/zen.mdx @@ -109,6 +109,7 @@ You can also access our models through the following API endpoints. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -176,6 +177,7 @@ We support a pay-as-you-go model. Below are the prices **per 1M tokens**. | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/zh-cn/zen.mdx b/packages/web/src/content/docs/zh-cn/zen.mdx index a9529ed09ffc..6b3357387040 100644 --- a/packages/web/src/content/docs/zh-cn/zen.mdx +++ b/packages/web/src/content/docs/zh-cn/zen.mdx @@ -100,6 +100,7 @@ OpenCode Zen 的工作方式与 OpenCode 中的任何其他提供商相同。 | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -165,6 +166,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | diff --git a/packages/web/src/content/docs/zh-tw/zen.mdx b/packages/web/src/content/docs/zh-tw/zen.mdx index ae2c802beabd..f93a553df7a4 100644 --- a/packages/web/src/content/docs/zh-tw/zen.mdx +++ b/packages/web/src/content/docs/zh-tw/zen.mdx @@ -104,6 +104,7 @@ OpenCode Zen 的運作方式和 OpenCode 中的其他供應商一樣。 | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | @@ -170,6 +171,7 @@ https://opencode.ai/zen/v1/models | Qwen3.7 Plus | $0.40 | $1.60 | $0.04 | $0.50 | | Qwen3.6 Plus | $0.50 | $3.00 | $0.05 | $0.625 | | Qwen3.5 Plus | $0.20 | $1.20 | $0.02 | $0.25 | +| DeepSeek V4.1 Flash | $0.30 | $1.20 | $0.006 | - | | DeepSeek V4 Pro | $1.74 | $3.48 | $0.145 | - | | DeepSeek V4 Flash | $0.14 | $0.28 | $0.028 | - | | DeepSeek V4 Flash Vision Exp | $0.14 | $0.28 | $0.028 | - | From 4e1c49630a5604686273913cafadae081a43c054 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Sat, 19 Sep 2026 04:17:02 +0000 Subject: [PATCH 68/94] chore: generate --- packages/web/src/content/docs/ar/zen.mdx | 2 +- packages/web/src/content/docs/bs/zen.mdx | 2 +- packages/web/src/content/docs/da/zen.mdx | 2 +- packages/web/src/content/docs/de/zen.mdx | 2 +- packages/web/src/content/docs/es/zen.mdx | 2 +- packages/web/src/content/docs/fr/zen.mdx | 2 +- packages/web/src/content/docs/it/zen.mdx | 2 +- packages/web/src/content/docs/ja/zen.mdx | 2 +- packages/web/src/content/docs/ko/zen.mdx | 2 +- packages/web/src/content/docs/nb/zen.mdx | 2 +- packages/web/src/content/docs/pl/zen.mdx | 2 +- packages/web/src/content/docs/pt-br/zen.mdx | 2 +- packages/web/src/content/docs/ru/zen.mdx | 2 +- packages/web/src/content/docs/th/zen.mdx | 2 +- packages/web/src/content/docs/tr/zen.mdx | 2 +- packages/web/src/content/docs/zen.mdx | 2 +- packages/web/src/content/docs/zh-cn/zen.mdx | 2 +- packages/web/src/content/docs/zh-tw/zen.mdx | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/packages/web/src/content/docs/ar/zen.mdx b/packages/web/src/content/docs/ar/zen.mdx index dd1f90ddf900..6c9e250f83d5 100644 --- a/packages/web/src/content/docs/ar/zen.mdx +++ b/packages/web/src/content/docs/ar/zen.mdx @@ -104,7 +104,7 @@ OpenCode Zen هي بوابة AI تتيح لك الوصول إلى هذه الن | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/bs/zen.mdx b/packages/web/src/content/docs/bs/zen.mdx index 08b41f4fe9eb..b3f5293e75ca 100644 --- a/packages/web/src/content/docs/bs/zen.mdx +++ b/packages/web/src/content/docs/bs/zen.mdx @@ -109,7 +109,7 @@ Našim modelima možete pristupiti i preko sljedećih API endpointa. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/da/zen.mdx b/packages/web/src/content/docs/da/zen.mdx index 05ea77160391..41648561c607 100644 --- a/packages/web/src/content/docs/da/zen.mdx +++ b/packages/web/src/content/docs/da/zen.mdx @@ -109,7 +109,7 @@ Du kan også få adgang til vores modeller gennem følgende API-endpoints. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/de/zen.mdx b/packages/web/src/content/docs/de/zen.mdx index a2f3ee4e46b2..97e09eb5df9f 100644 --- a/packages/web/src/content/docs/de/zen.mdx +++ b/packages/web/src/content/docs/de/zen.mdx @@ -100,7 +100,7 @@ Du kannst auch über die folgenden API-Endpunkte auf unsere Modelle zugreifen. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/es/zen.mdx b/packages/web/src/content/docs/es/zen.mdx index 35d92911ce31..f2bc93b184ae 100644 --- a/packages/web/src/content/docs/es/zen.mdx +++ b/packages/web/src/content/docs/es/zen.mdx @@ -109,7 +109,7 @@ También puedes acceder a nuestros modelos a través de los siguientes endpoints | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/fr/zen.mdx b/packages/web/src/content/docs/fr/zen.mdx index 9d9d097768b7..f5df82a0db84 100644 --- a/packages/web/src/content/docs/fr/zen.mdx +++ b/packages/web/src/content/docs/fr/zen.mdx @@ -100,7 +100,7 @@ Vous pouvez également accéder à nos modèles via les points de terminaison AP | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/it/zen.mdx b/packages/web/src/content/docs/it/zen.mdx index 9c915f9582ac..fba40e550029 100644 --- a/packages/web/src/content/docs/it/zen.mdx +++ b/packages/web/src/content/docs/it/zen.mdx @@ -109,7 +109,7 @@ Puoi anche accedere ai nostri modelli tramite i seguenti endpoint API. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/ja/zen.mdx b/packages/web/src/content/docs/ja/zen.mdx index dec388a58889..d36e3819920b 100644 --- a/packages/web/src/content/docs/ja/zen.mdx +++ b/packages/web/src/content/docs/ja/zen.mdx @@ -100,7 +100,7 @@ OpenCode Zen は、OpenCode のほかのプロバイダーと同じように動 | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/ko/zen.mdx b/packages/web/src/content/docs/ko/zen.mdx index 363665cb2e8a..fb74d67c7720 100644 --- a/packages/web/src/content/docs/ko/zen.mdx +++ b/packages/web/src/content/docs/ko/zen.mdx @@ -100,7 +100,7 @@ OpenCode Zen은 OpenCode의 다른 provider와 똑같이 작동합니다. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/nb/zen.mdx b/packages/web/src/content/docs/nb/zen.mdx index 1322f15b8004..abee25ed3e61 100644 --- a/packages/web/src/content/docs/nb/zen.mdx +++ b/packages/web/src/content/docs/nb/zen.mdx @@ -109,7 +109,7 @@ Du kan også få tilgang til modellene våre gjennom følgende API-endepunkter. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/pl/zen.mdx b/packages/web/src/content/docs/pl/zen.mdx index cc8b57187eaa..1115e8675951 100644 --- a/packages/web/src/content/docs/pl/zen.mdx +++ b/packages/web/src/content/docs/pl/zen.mdx @@ -109,7 +109,7 @@ Możesz też uzyskać dostęp do naszych modeli przez poniższe endpointy API. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/pt-br/zen.mdx b/packages/web/src/content/docs/pt-br/zen.mdx index 1fa23a5b2a10..7e5bd69bc041 100644 --- a/packages/web/src/content/docs/pt-br/zen.mdx +++ b/packages/web/src/content/docs/pt-br/zen.mdx @@ -100,7 +100,7 @@ Você também pode acessar nossos modelos pelos seguintes endpoints de API. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/ru/zen.mdx b/packages/web/src/content/docs/ru/zen.mdx index 2d7a02c74725..0c94972196d1 100644 --- a/packages/web/src/content/docs/ru/zen.mdx +++ b/packages/web/src/content/docs/ru/zen.mdx @@ -109,7 +109,7 @@ OpenCode Zen работает как любой другой провайдер | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/th/zen.mdx b/packages/web/src/content/docs/th/zen.mdx index e380d5e5ed81..523bd50c62e7 100644 --- a/packages/web/src/content/docs/th/zen.mdx +++ b/packages/web/src/content/docs/th/zen.mdx @@ -102,7 +102,7 @@ OpenCode Zen ทำงานเหมือน provider อื่น ๆ ใน | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/tr/zen.mdx b/packages/web/src/content/docs/tr/zen.mdx index d7ea730097dc..3565259b713b 100644 --- a/packages/web/src/content/docs/tr/zen.mdx +++ b/packages/web/src/content/docs/tr/zen.mdx @@ -100,7 +100,7 @@ Modellerimize aşağıdaki API uç noktaları aracılığıyla da erişebilirsin | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/zen.mdx b/packages/web/src/content/docs/zen.mdx index 4c0c5a9f1b30..9aa2ac101991 100644 --- a/packages/web/src/content/docs/zen.mdx +++ b/packages/web/src/content/docs/zen.mdx @@ -109,7 +109,7 @@ You can also access our models through the following API endpoints. | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/zh-cn/zen.mdx b/packages/web/src/content/docs/zh-cn/zen.mdx index 6b3357387040..8700749a9175 100644 --- a/packages/web/src/content/docs/zh-cn/zen.mdx +++ b/packages/web/src/content/docs/zh-cn/zen.mdx @@ -100,7 +100,7 @@ OpenCode Zen 的工作方式与 OpenCode 中的任何其他提供商相同。 | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | diff --git a/packages/web/src/content/docs/zh-tw/zen.mdx b/packages/web/src/content/docs/zh-tw/zen.mdx index f93a553df7a4..d849c5e7c8e9 100644 --- a/packages/web/src/content/docs/zh-tw/zen.mdx +++ b/packages/web/src/content/docs/zh-tw/zen.mdx @@ -104,7 +104,7 @@ OpenCode Zen 的運作方式和 OpenCode 中的其他供應商一樣。 | Qwen3.7 Plus | qwen3.7-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.6 Plus | qwen3.6-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | | Qwen3.5 Plus | qwen3.5-plus | `https://opencode.ai/zen/v1/messages` | `@ai-sdk/anthropic` | -| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | +| DeepSeek V4.1 Flash | deepseek-v4.1-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Pro | deepseek-v4-pro | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash | deepseek-v4-flash | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | | DeepSeek V4 Flash Vision Exp | deepseek-v4-flash-vision-exp | `https://opencode.ai/zen/v1/chat/completions` | `@ai-sdk/openai-compatible` | From f1aacaba22af56394f9bb8334e12e9653096236d Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Fri, 18 Sep 2026 21:35:13 -0400 Subject: [PATCH 69/94] feat(web): add v2 announcement banner to legacy docs --- packages/web/astro.config.mjs | 1 + packages/web/src/components/Banner.astro | 61 ++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 packages/web/src/components/Banner.astro diff --git a/packages/web/astro.config.mjs b/packages/web/astro.config.mjs index 2b39c60d6b8d..a6144fd17330 100644 --- a/packages/web/astro.config.mjs +++ b/packages/web/astro.config.mjs @@ -296,6 +296,7 @@ export default defineConfig({ ], components: { Hero: "./src/components/Hero.astro", + Banner: "./src/components/Banner.astro", Head: "./src/components/Head.astro", Header: "./src/components/Header.astro", Footer: "./src/components/Footer.astro", diff --git a/packages/web/src/components/Banner.astro b/packages/web/src/components/Banner.astro new file mode 100644 index 000000000000..05857bd850ef --- /dev/null +++ b/packages/web/src/components/Banner.astro @@ -0,0 +1,61 @@ + + New + OpenCode v2 is now available + + + + From 6da6d47aab3d1a92f3aaab439922f7cd725c25f0 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 19 Sep 2026 03:29:17 -0400 Subject: [PATCH 70/94] fix(web): render v2 banner full width below header --- packages/web/astro.config.mjs | 2 +- packages/web/src/components/Banner.astro | 61 ------------- packages/web/src/components/PageFrame.astro | 97 +++++++++++++++++++++ packages/web/src/components/V2Banner.astro | 85 ++++++++++++++++++ packages/web/src/styles/custom.css | 26 ++++++ 5 files changed, 209 insertions(+), 62 deletions(-) delete mode 100644 packages/web/src/components/Banner.astro create mode 100644 packages/web/src/components/PageFrame.astro create mode 100644 packages/web/src/components/V2Banner.astro diff --git a/packages/web/astro.config.mjs b/packages/web/astro.config.mjs index a6144fd17330..21eaa6e65116 100644 --- a/packages/web/astro.config.mjs +++ b/packages/web/astro.config.mjs @@ -296,7 +296,7 @@ export default defineConfig({ ], components: { Hero: "./src/components/Hero.astro", - Banner: "./src/components/Banner.astro", + PageFrame: "./src/components/PageFrame.astro", Head: "./src/components/Head.astro", Header: "./src/components/Header.astro", Footer: "./src/components/Footer.astro", diff --git a/packages/web/src/components/Banner.astro b/packages/web/src/components/Banner.astro deleted file mode 100644 index 05857bd850ef..000000000000 --- a/packages/web/src/components/Banner.astro +++ /dev/null @@ -1,61 +0,0 @@ - - New - OpenCode v2 is now available - - - - diff --git a/packages/web/src/components/PageFrame.astro b/packages/web/src/components/PageFrame.astro new file mode 100644 index 000000000000..49dc4195f028 --- /dev/null +++ b/packages/web/src/components/PageFrame.astro @@ -0,0 +1,97 @@ +--- +import MobileMenuToggle from "virtual:starlight/components/MobileMenuToggle" +import V2Banner from "./V2Banner.astro" + +const { hasSidebar } = Astro.locals.starlightRoute +--- + +
    +
    + + { + hasSidebar && ( + + ) + } +
    +
    + + diff --git a/packages/web/src/components/V2Banner.astro b/packages/web/src/components/V2Banner.astro new file mode 100644 index 000000000000..11ce915b6680 --- /dev/null +++ b/packages/web/src/components/V2Banner.astro @@ -0,0 +1,85 @@ + + New + OpenCode v2 is now available + + + + diff --git a/packages/web/src/styles/custom.css b/packages/web/src/styles/custom.css index 04331dd6ae0b..744934ae74e6 100644 --- a/packages/web/src/styles/custom.css +++ b/packages/web/src/styles/custom.css @@ -28,6 +28,32 @@ /* For the share component */ --sl-color-bg-surface: var(--sl-color-bg-nav); --sl-color-divider: var(--sl-color-gray-5); + + /* Fixed v2 announcement bar rendered below the header by PageFrame */ + --v2-banner-height: 2.75rem; +} + +:root[data-has-hero] { + --v2-banner-height: 0rem; +} + +/* Shift fixed chrome below the v2 banner */ +mobile-starlight-toc nav { + top: calc(var(--sl-nav-height) + var(--v2-banner-height) - 1px); +} + +html { + scroll-padding-top: calc(1.5rem + var(--sl-nav-height) + var(--sl-mobile-toc-height) + var(--v2-banner-height)); +} + +@media (min-width: 72rem) { + .right-sidebar { + padding-top: calc(var(--sl-nav-height) + var(--v2-banner-height)); + } + + html { + scroll-padding-top: calc(1.5rem + var(--sl-nav-height) + var(--v2-banner-height)); + } } body { From 7c22dbbaf9b8a056cd91f9186c895548c4ddfdee Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 19 Sep 2026 03:29:50 -0400 Subject: [PATCH 71/94] fix(web): use neutral colors for v2 banner --- packages/web/src/components/V2Banner.astro | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/packages/web/src/components/V2Banner.astro b/packages/web/src/components/V2Banner.astro index 11ce915b6680..fa72e2a41292 100644 --- a/packages/web/src/components/V2Banner.astro +++ b/packages/web/src/components/V2Banner.astro @@ -6,11 +6,11 @@