Skip to content

Commit bc720c6

Browse files
authored
Merge branch 'dev' into litellm-overflow-pattern
2 parents 55e6a9f + 193de13 commit bc720c6

99 files changed

Lines changed: 3437 additions & 1705 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bun.lock

Lines changed: 61 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/console.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,9 @@ const zenLitePrice = new stripe.Price("ZenLitePrice", {
150150
})
151151
const ZEN_LITE_PRICE = new sst.Linkable("ZEN_LITE_PRICE", {
152152
properties: {
153-
product: zenLiteProduct.id,
154-
price: zenLitePrice.id,
153+
// Use existing Go resources in dev's checkout Stripe account.
154+
product: $app.stage === "dev" ? "prod_U1tUscpmwtV2bG" : zenLiteProduct.id,
155+
price: $app.stage === "dev" ? "price_1T3phhE7fOCwHSD4zS6w2NPy" : zenLitePrice.id,
155156
priceInr: 92900,
156157
firstMonth50Coupon: zenLiteCouponFirstMonth50.id,
157158
firstMonth100Coupon: zenLiteCouponFirstMonth100.id,

nix/hashes.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"nodeModules": {
3-
"x86_64-linux": "sha256-2kzFIn42mD7ZDu/+6lWctqjZ/lIVZZfjZhmF/ymhF54=",
4-
"aarch64-linux": "sha256-4HlReGD3gYfyyfnY/FQ46Ov+g3ZGV3sBYQ9p1bS9YAY=",
5-
"aarch64-darwin": "sha256-dkfCoH/sW9XBPZ7XhnUoE54TY1lcfNvZ5wQQLr7gKiQ=",
6-
"x86_64-darwin": "sha256-32t1JEcibZ4OrornIgfWOGQA87FOXjrxrxlDrflh7Ss="
3+
"x86_64-linux": "sha256-tHl+UGkUbalkh+C5RDkRpZ3Q87tgvqnoF4xdih6QeOw=",
4+
"aarch64-linux": "sha256-rdnbvlOOr/88SQ9zd+PfilJ4pQZdKplFyQGfdHBuBKQ=",
5+
"aarch64-darwin": "sha256-28GpwYLMo2cN4Y9cY6/xn9R5EggFj/m1guuSxsbqisM=",
6+
"x86_64-darwin": "sha256-eO0fs/0gwWwqPA8WElg8s7EZsxKd9J4Hws15P4xqHlc="
77
}
88
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@
162162
"@ai-sdk/openai-compatible@2.0.41": "patches/@ai-sdk%2Fopenai-compatible@2.0.41.patch",
163163
"@ai-sdk/groq@3.0.31": "patches/@ai-sdk%2Fgroq@3.0.31.patch",
164164
"@ai-sdk/anthropic@3.0.111": "patches/@ai-sdk%2Fanthropic@3.0.111.patch",
165-
"@ai-sdk/amazon-bedrock@4.0.166": "patches/@ai-sdk%2Famazon-bedrock@4.0.166.patch"
165+
"@ai-sdk/amazon-bedrock@4.0.166": "patches/@ai-sdk%2Famazon-bedrock@4.0.166.patch",
166+
"@ai-sdk/openai@3.0.88": "patches/@ai-sdk%2Fopenai@3.0.88.patch"
166167
}
167168
}

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/app",
3-
"version": "1.18.29",
3+
"version": "1.18.30",
44
"description": "",
55
"type": "module",
66
"exports": {

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@opencode-ai/cli",
4-
"version": "1.18.29",
4+
"version": "1.18.30",
55
"type": "module",
66
"license": "MIT",
77
"bin": {

packages/codemode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@opencode-ai/codemode",
4-
"version": "1.18.29",
4+
"version": "1.18.30",
55
"description": "Effect-native confined code execution over schema-described tools",
66
"private": true,
77
"type": "module",

packages/console/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-app",
3-
"version": "1.18.29",
3+
"version": "1.18.30",
44
"type": "module",
55
"license": "MIT",
66
"scripts": {
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Requests are per 5 hours; allowances are monthly usage at official API prices.
2+
export const goModels = [
3+
{ id: "kimi-k3", name: "Kimi K3", requests: 110, allowance: 15, featured: true },
4+
{ id: "qwen3.8-max", name: "Qwen3.8 Max", requests: 160, allowance: 15 },
5+
{ id: "grok-4.6", name: "Grok 4.6", requests: 169, allowance: 15 },
6+
{ id: "qwen3.7-max", name: "Qwen3.7 Max", requests: 170, allowance: 30 },
7+
{ id: "glm-5.3", name: "GLM-5.3", requests: 220, allowance: 15 },
8+
{ id: "glm-5.2", name: "GLM-5.2", requests: 880, allowance: 60 },
9+
{ id: "glm-5.1", name: "GLM-5.1", requests: 880, allowance: 60 },
10+
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", requests: 1050, allowance: 15 },
11+
{ id: "kimi-k2.6", name: "Kimi K2.6", requests: 1150, allowance: 60 },
12+
{ id: "kimi-k2.7-code", name: "Kimi K2.7 Code", requests: 1350, allowance: 60, featured: true },
13+
{ id: "hy4-preview", name: "Hy4 preview", requests: 1350, allowance: 30 },
14+
{ id: "gpt-5.6-luna", name: "GPT 5.6 Luna", requests: 2050, allowance: 15, featured: true },
15+
{ id: "minimax-m3", name: "MiniMax M3", requests: 3200, allowance: 60, featured: true },
16+
{ id: "mimo-v2.5-pro", name: "MiMo-V2.5-Pro", requests: 3250, allowance: 15 },
17+
{ id: "qwen3.6-plus", name: "Qwen3.6 Plus", requests: 3300, allowance: 60 },
18+
{ id: "minimax-m2.7", name: "MiniMax M2.7", requests: 3400, allowance: 60 },
19+
{ id: "deepseek-v4-flash-vision-exp", name: "DeepSeek V4 Flash Vision Exp", requests: 6500, allowance: 15 },
20+
{ id: "qwen3.7-plus", name: "Qwen3.7 Plus", requests: 4300, allowance: 60, featured: true },
21+
{ id: "hy3", name: "Hy3", requests: 4300, allowance: 60 },
22+
{ id: "qwen3.8-flash", name: "Qwen3.8 Flash", requests: 5400, allowance: 30 },
23+
{ id: "glm-5.3-flash", name: "GLM-5.3-Flash", requests: 6320, allowance: 60, featured: true },
24+
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", requests: 13000, allowance: 30, featured: true },
25+
{
26+
id: "deepseek-flash",
27+
name: "DeepSeek V4.1 Flash",
28+
requests: 26000,
29+
baseRequests: 6500,
30+
allowance: 60,
31+
baseAllowance: 15,
32+
bonus: 4,
33+
featured: true,
34+
fresh: true,
35+
},
36+
{ id: "longcat-2.0", name: "LongCat-2.0", requests: 11400, allowance: 60 },
37+
{ id: "mimo-v2.5", name: "MiMo-V2.5", requests: 30100, allowance: 60, featured: true },
38+
{
39+
id: "muse-spark-1.3-contributor",
40+
name: "Muse Spark 1.3 Contributor",
41+
requests: 45300,
42+
allowance: 60,
43+
featured: true,
44+
regions: true,
45+
},
46+
{
47+
id: "muse-spark-1.2-contributor",
48+
name: "Muse Spark 1.2 Contributor",
49+
requests: 45300,
50+
allowance: 60,
51+
regions: true,
52+
},
53+
].sort((a, b) => a.requests - b.requests)

0 commit comments

Comments
 (0)