Skip to content

Commit 8a0e10b

Browse files
author
nitinprajwal
committed
Fixed missing declaration
1 parent d9f5dad commit 8a0e10b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/types/src/provider-settings.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
mistralModels,
1919
moonshotModels,
2020
openAiNativeModels,
21+
qwenCodeModels,
2122
rooModels,
2223
sambaNovaModels,
2324
vertexModels,
@@ -63,8 +64,8 @@ export const providerNames = [
6364
"fireworks",
6465
"featherless",
6566
"io-intelligence",
66-
"roo",
6767
"qwen-code",
68+
"roo",
6869
] as const
6970

7071
export const providerNamesSchema = z.enum(providerNames)
@@ -511,6 +512,11 @@ export const MODELS_BY_PROVIDER: Record<
511512
label: "OpenAI",
512513
models: Object.keys(openAiNativeModels),
513514
},
515+
"qwen-code": {
516+
id: "qwen-code",
517+
label: "Qwen Code",
518+
models: Object.keys(qwenCodeModels),
519+
},
514520
roo: { id: "roo", label: "Roo", models: Object.keys(rooModels) },
515521
sambanova: {
516522
id: "sambanova",

0 commit comments

Comments
 (0)