diff options
| author | David Hill <[email protected]> | 2026-03-04 16:18:11 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-03-04 16:19:06 +0000 |
| commit | 744c38cc7cfd4741227b9a1951ccba57668e2184 (patch) | |
| tree | b38f7f83d5b3fc886861ae4bf34605797dbfef84 | |
| parent | e9de2505f65b65a581a90dbd3b29f21dac6568de (diff) | |
| download | opencode-744c38cc7cfd4741227b9a1951ccba57668e2184.tar.gz opencode-744c38cc7cfd4741227b9a1951ccba57668e2184.zip | |
tui: clarify which models are available in Go subscription
Adds list of included AI models (GLM-5, Kimi K2.5, and MiniMax M2.5) to the Go page so users know exactly what model access their subscription provides
| -rw-r--r-- | packages/console/app/src/i18n/en.ts | 1 | ||||
| -rw-r--r-- | packages/console/app/src/routes/go/index.tsx | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/packages/console/app/src/i18n/en.ts b/packages/console/app/src/i18n/en.ts index 9cd896fe2..01e5742dd 100644 --- a/packages/console/app/src/i18n/en.ts +++ b/packages/console/app/src/i18n/en.ts @@ -290,6 +290,7 @@ export const dict = { "go.problem.item1": "Low cost subscription pricing", "go.problem.item2": "Generous limits and reliable access", "go.problem.item3": "Built for as many programmers as possible", + "go.problem.item4": "Includes GLM-5, Kimi K2.5, and MiniMax M2.5", "go.how.title": "How Go works", "go.how.body": "Go is a $10/month subscription you can use with OpenCode or any agent.", "go.how.step1.title": "Create an account", diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index 83dfc31ee..3c1033074 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -308,6 +308,9 @@ export default function Home() { <li> <span>[*]</span> {i18n.t("go.problem.item3")} </li> + <li> + <span>[*]</span> {i18n.t("go.problem.item4")} + </li> </ul> </section> |
