@hyperspaceng/neural-ai 0.65.3 → 0.66.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/models.generated.d.ts +138 -67
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +198 -129
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/google-gemini-cli.d.ts.map +1 -1
- package/dist/providers/google-gemini-cli.js +1 -1
- package/dist/providers/google-gemini-cli.js.map +1 -1
- package/dist/providers/google.d.ts.map +1 -1
- package/dist/providers/google.js +28 -3
- package/dist/providers/google.js.map +1 -1
- package/dist/types.d.ts +61 -4
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"","sourcesContent":["#!/usr/bin/env node\n\nimport {
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"","sourcesContent":["#!/usr/bin/env node\n\nimport { createInterface } from \"node:readline\";\nimport { existsSync, readFileSync, writeFileSync } from \"fs\";\nimport { getOAuthProvider, getOAuthProviders } from \"./utils/oauth/index.js\";\nimport type { OAuthCredentials, OAuthProviderId } from \"./utils/oauth/types.js\";\n\nconst AUTH_FILE = \"auth.json\";\nconst PROVIDERS = getOAuthProviders();\n\nfunction prompt(rl: ReturnType<typeof createInterface>, question: string): Promise<string> {\n\treturn new Promise((resolve) => rl.question(question, resolve));\n}\n\nfunction loadAuth(): Record<string, { type: \"oauth\" } & OAuthCredentials> {\n\tif (!existsSync(AUTH_FILE)) return {};\n\ttry {\n\t\treturn JSON.parse(readFileSync(AUTH_FILE, \"utf-8\"));\n\t} catch {\n\t\treturn {};\n\t}\n}\n\nfunction saveAuth(auth: Record<string, { type: \"oauth\" } & OAuthCredentials>): void {\n\twriteFileSync(AUTH_FILE, JSON.stringify(auth, null, 2), \"utf-8\");\n}\n\nasync function login(providerId: OAuthProviderId): Promise<void> {\n\tconst provider = getOAuthProvider(providerId);\n\tif (!provider) {\n\t\tconsole.error(`Unknown provider: ${providerId}`);\n\t\tprocess.exit(1);\n\t}\n\n\tconst rl = createInterface({ input: process.stdin, output: process.stdout });\n\tconst promptFn = (msg: string) => prompt(rl, `${msg} `);\n\n\ttry {\n\t\tconst credentials = await provider.login({\n\t\t\tonAuth: (info) => {\n\t\t\t\tconsole.log(`\\nOpen this URL in your browser:\\n${info.url}`);\n\t\t\t\tif (info.instructions) console.log(info.instructions);\n\t\t\t\tconsole.log();\n\t\t\t},\n\t\t\tonPrompt: async (p) => {\n\t\t\t\treturn await promptFn(`${p.message}${p.placeholder ? ` (${p.placeholder})` : \"\"}:`);\n\t\t\t},\n\t\t\tonProgress: (msg) => console.log(msg),\n\t\t});\n\n\t\tconst auth = loadAuth();\n\t\tauth[providerId] = { type: \"oauth\", ...credentials };\n\t\tsaveAuth(auth);\n\n\t\tconsole.log(`\\nCredentials saved to ${AUTH_FILE}`);\n\t} finally {\n\t\trl.close();\n\t}\n}\n\nasync function main(): Promise<void> {\n\tconst args = process.argv.slice(2);\n\tconst command = args[0];\n\n\tif (!command || command === \"help\" || command === \"--help\" || command === \"-h\") {\n\t\tconst providerList = PROVIDERS.map((p) => ` ${p.id.padEnd(20)} ${p.name}`).join(\"\\n\");\n\t\tconsole.log(`Usage: npx @hyperspaceng/neural-ai <command> [provider]\n\nCommands:\n login [provider] Login to an OAuth provider\n list List available providers\n\nProviders:\n${providerList}\n\nExamples:\n npx @hyperspaceng/neural-ai login # interactive provider selection\n npx @hyperspaceng/neural-ai login anthropic # login to specific provider\n npx @hyperspaceng/neural-ai list # list providers\n`);\n\t\treturn;\n\t}\n\n\tif (command === \"list\") {\n\t\tconsole.log(\"Available OAuth providers:\\n\");\n\t\tfor (const p of PROVIDERS) {\n\t\t\tconsole.log(` ${p.id.padEnd(20)} ${p.name}`);\n\t\t}\n\t\treturn;\n\t}\n\n\tif (command === \"login\") {\n\t\tlet provider = args[1] as OAuthProviderId | undefined;\n\n\t\tif (!provider) {\n\t\t\tconst rl = createInterface({ input: process.stdin, output: process.stdout });\n\t\t\tconsole.log(\"Select a provider:\\n\");\n\t\t\tfor (let i = 0; i < PROVIDERS.length; i++) {\n\t\t\t\tconsole.log(` ${i + 1}. ${PROVIDERS[i].name}`);\n\t\t\t}\n\t\t\tconsole.log();\n\n\t\t\tconst choice = await prompt(rl, `Enter number (1-${PROVIDERS.length}): `);\n\t\t\trl.close();\n\n\t\t\tconst index = parseInt(choice, 10) - 1;\n\t\t\tif (index < 0 || index >= PROVIDERS.length) {\n\t\t\t\tconsole.error(\"Invalid selection\");\n\t\t\t\tprocess.exit(1);\n\t\t\t}\n\t\t\tprovider = PROVIDERS[index].id;\n\t\t}\n\n\t\tif (!PROVIDERS.some((p) => p.id === provider)) {\n\t\t\tconsole.error(`Unknown provider: ${provider}`);\n\t\t\tconsole.error(`Use 'npx @hyperspaceng/neural-ai list' to see available providers`);\n\t\t\tprocess.exit(1);\n\t\t}\n\n\t\tconsole.log(`Logging in to ${provider}...`);\n\t\tawait login(provider);\n\t\treturn;\n\t}\n\n\tconsole.error(`Unknown command: ${command}`);\n\tconsole.error(`Use 'npx @hyperspaceng/neural-ai --help' for usage`);\n\tprocess.exit(1);\n}\n\nmain().catch((err) => {\n\tconsole.error(\"Error:\", err.message);\n\tprocess.exit(1);\n});\n"]}
|
package/dist/cli.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import { createInterface } from "node:readline";
|
|
2
3
|
import { existsSync, readFileSync, writeFileSync } from "fs";
|
|
3
|
-
import { createInterface } from "readline";
|
|
4
4
|
import { getOAuthProvider, getOAuthProviders } from "./utils/oauth/index.js";
|
|
5
5
|
const AUTH_FILE = "auth.json";
|
|
6
6
|
const PROVIDERS = getOAuthProviders();
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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","sourcesContent":["#!/usr/bin/env node\n\nimport { createInterface } from \"node:readline\";\nimport { existsSync, readFileSync, writeFileSync } from \"fs\";\nimport { getOAuthProvider, getOAuthProviders } from \"./utils/oauth/index.js\";\nimport type { OAuthCredentials, OAuthProviderId } from \"./utils/oauth/types.js\";\n\nconst AUTH_FILE = \"auth.json\";\nconst PROVIDERS = getOAuthProviders();\n\nfunction prompt(rl: ReturnType<typeof createInterface>, question: string): Promise<string> {\n\treturn new Promise((resolve) => rl.question(question, resolve));\n}\n\nfunction loadAuth(): Record<string, { type: \"oauth\" } & OAuthCredentials> {\n\tif (!existsSync(AUTH_FILE)) return {};\n\ttry {\n\t\treturn JSON.parse(readFileSync(AUTH_FILE, \"utf-8\"));\n\t} catch {\n\t\treturn {};\n\t}\n}\n\nfunction saveAuth(auth: Record<string, { type: \"oauth\" } & OAuthCredentials>): void {\n\twriteFileSync(AUTH_FILE, JSON.stringify(auth, null, 2), \"utf-8\");\n}\n\nasync function login(providerId: OAuthProviderId): Promise<void> {\n\tconst provider = getOAuthProvider(providerId);\n\tif (!provider) {\n\t\tconsole.error(`Unknown provider: ${providerId}`);\n\t\tprocess.exit(1);\n\t}\n\n\tconst rl = createInterface({ input: process.stdin, output: process.stdout });\n\tconst promptFn = (msg: string) => prompt(rl, `${msg} `);\n\n\ttry {\n\t\tconst credentials = await provider.login({\n\t\t\tonAuth: (info) => {\n\t\t\t\tconsole.log(`\\nOpen this URL in your browser:\\n${info.url}`);\n\t\t\t\tif (info.instructions) console.log(info.instructions);\n\t\t\t\tconsole.log();\n\t\t\t},\n\t\t\tonPrompt: async (p) => {\n\t\t\t\treturn await promptFn(`${p.message}${p.placeholder ? ` (${p.placeholder})` : \"\"}:`);\n\t\t\t},\n\t\t\tonProgress: (msg) => console.log(msg),\n\t\t});\n\n\t\tconst auth = loadAuth();\n\t\tauth[providerId] = { type: \"oauth\", ...credentials };\n\t\tsaveAuth(auth);\n\n\t\tconsole.log(`\\nCredentials saved to ${AUTH_FILE}`);\n\t} finally {\n\t\trl.close();\n\t}\n}\n\nasync function main(): Promise<void> {\n\tconst args = process.argv.slice(2);\n\tconst command = args[0];\n\n\tif (!command || command === \"help\" || command === \"--help\" || command === \"-h\") {\n\t\tconst providerList = PROVIDERS.map((p) => ` ${p.id.padEnd(20)} ${p.name}`).join(\"\\n\");\n\t\tconsole.log(`Usage: npx @hyperspaceng/neural-ai <command> [provider]\n\nCommands:\n login [provider] Login to an OAuth provider\n list List available providers\n\nProviders:\n${providerList}\n\nExamples:\n npx @hyperspaceng/neural-ai login # interactive provider selection\n npx @hyperspaceng/neural-ai login anthropic # login to specific provider\n npx @hyperspaceng/neural-ai list # list providers\n`);\n\t\treturn;\n\t}\n\n\tif (command === \"list\") {\n\t\tconsole.log(\"Available OAuth providers:\\n\");\n\t\tfor (const p of PROVIDERS) {\n\t\t\tconsole.log(` ${p.id.padEnd(20)} ${p.name}`);\n\t\t}\n\t\treturn;\n\t}\n\n\tif (command === \"login\") {\n\t\tlet provider = args[1] as OAuthProviderId | undefined;\n\n\t\tif (!provider) {\n\t\t\tconst rl = createInterface({ input: process.stdin, output: process.stdout });\n\t\t\tconsole.log(\"Select a provider:\\n\");\n\t\t\tfor (let i = 0; i < PROVIDERS.length; i++) {\n\t\t\t\tconsole.log(` ${i + 1}. ${PROVIDERS[i].name}`);\n\t\t\t}\n\t\t\tconsole.log();\n\n\t\t\tconst choice = await prompt(rl, `Enter number (1-${PROVIDERS.length}): `);\n\t\t\trl.close();\n\n\t\t\tconst index = parseInt(choice, 10) - 1;\n\t\t\tif (index < 0 || index >= PROVIDERS.length) {\n\t\t\t\tconsole.error(\"Invalid selection\");\n\t\t\t\tprocess.exit(1);\n\t\t\t}\n\t\t\tprovider = PROVIDERS[index].id;\n\t\t}\n\n\t\tif (!PROVIDERS.some((p) => p.id === provider)) {\n\t\t\tconsole.error(`Unknown provider: ${provider}`);\n\t\t\tconsole.error(`Use 'npx @hyperspaceng/neural-ai list' to see available providers`);\n\t\t\tprocess.exit(1);\n\t\t}\n\n\t\tconsole.log(`Logging in to ${provider}...`);\n\t\tawait login(provider);\n\t\treturn;\n\t}\n\n\tconsole.error(`Unknown command: ${command}`);\n\tconsole.error(`Use 'npx @hyperspaceng/neural-ai --help' for usage`);\n\tprocess.exit(1);\n}\n\nmain().catch((err) => {\n\tconsole.error(\"Error:\", err.message);\n\tprocess.exit(1);\n});\n"]}
|
|
@@ -1207,6 +1207,23 @@ export declare const MODELS: {
|
|
|
1207
1207
|
contextWindow: number;
|
|
1208
1208
|
maxTokens: number;
|
|
1209
1209
|
};
|
|
1210
|
+
readonly "qwen.qwen3-coder-next": {
|
|
1211
|
+
id: string;
|
|
1212
|
+
name: string;
|
|
1213
|
+
api: "bedrock-converse-stream";
|
|
1214
|
+
provider: string;
|
|
1215
|
+
baseUrl: string;
|
|
1216
|
+
reasoning: true;
|
|
1217
|
+
input: "text"[];
|
|
1218
|
+
cost: {
|
|
1219
|
+
input: number;
|
|
1220
|
+
output: number;
|
|
1221
|
+
cacheRead: number;
|
|
1222
|
+
cacheWrite: number;
|
|
1223
|
+
};
|
|
1224
|
+
contextWindow: number;
|
|
1225
|
+
maxTokens: number;
|
|
1226
|
+
};
|
|
1210
1227
|
readonly "qwen.qwen3-next-80b-a3b": {
|
|
1211
1228
|
id: string;
|
|
1212
1229
|
name: string;
|
|
@@ -4809,6 +4826,26 @@ export declare const MODELS: {
|
|
|
4809
4826
|
contextWindow: number;
|
|
4810
4827
|
maxTokens: number;
|
|
4811
4828
|
};
|
|
4829
|
+
readonly "zai-org/GLM-5.1": {
|
|
4830
|
+
id: string;
|
|
4831
|
+
name: string;
|
|
4832
|
+
api: "openai-completions";
|
|
4833
|
+
provider: string;
|
|
4834
|
+
baseUrl: string;
|
|
4835
|
+
compat: {
|
|
4836
|
+
supportsDeveloperRole: false;
|
|
4837
|
+
};
|
|
4838
|
+
reasoning: true;
|
|
4839
|
+
input: "text"[];
|
|
4840
|
+
cost: {
|
|
4841
|
+
input: number;
|
|
4842
|
+
output: number;
|
|
4843
|
+
cacheRead: number;
|
|
4844
|
+
cacheWrite: number;
|
|
4845
|
+
};
|
|
4846
|
+
contextWindow: number;
|
|
4847
|
+
maxTokens: number;
|
|
4848
|
+
};
|
|
4812
4849
|
};
|
|
4813
4850
|
readonly "kimi-coding": {
|
|
4814
4851
|
readonly k2p5: {
|
|
@@ -6421,6 +6458,23 @@ export declare const MODELS: {
|
|
|
6421
6458
|
contextWindow: number;
|
|
6422
6459
|
maxTokens: number;
|
|
6423
6460
|
};
|
|
6461
|
+
readonly "glm-5.1": {
|
|
6462
|
+
id: string;
|
|
6463
|
+
name: string;
|
|
6464
|
+
api: "openai-completions";
|
|
6465
|
+
provider: string;
|
|
6466
|
+
baseUrl: string;
|
|
6467
|
+
reasoning: true;
|
|
6468
|
+
input: "text"[];
|
|
6469
|
+
cost: {
|
|
6470
|
+
input: number;
|
|
6471
|
+
output: number;
|
|
6472
|
+
cacheRead: number;
|
|
6473
|
+
cacheWrite: number;
|
|
6474
|
+
};
|
|
6475
|
+
contextWindow: number;
|
|
6476
|
+
maxTokens: number;
|
|
6477
|
+
};
|
|
6424
6478
|
readonly "gpt-5": {
|
|
6425
6479
|
id: string;
|
|
6426
6480
|
name: string;
|
|
@@ -6727,7 +6781,9 @@ export declare const MODELS: {
|
|
|
6727
6781
|
contextWindow: number;
|
|
6728
6782
|
maxTokens: number;
|
|
6729
6783
|
};
|
|
6730
|
-
|
|
6784
|
+
};
|
|
6785
|
+
readonly "opencode-go": {
|
|
6786
|
+
readonly "glm-5": {
|
|
6731
6787
|
id: string;
|
|
6732
6788
|
name: string;
|
|
6733
6789
|
api: "openai-completions";
|
|
@@ -6744,9 +6800,7 @@ export declare const MODELS: {
|
|
|
6744
6800
|
contextWindow: number;
|
|
6745
6801
|
maxTokens: number;
|
|
6746
6802
|
};
|
|
6747
|
-
|
|
6748
|
-
readonly "opencode-go": {
|
|
6749
|
-
readonly "glm-5": {
|
|
6803
|
+
readonly "glm-5.1": {
|
|
6750
6804
|
id: string;
|
|
6751
6805
|
name: string;
|
|
6752
6806
|
api: "openai-completions";
|
|
@@ -6817,7 +6871,7 @@ export declare const MODELS: {
|
|
|
6817
6871
|
readonly "minimax-m2.5": {
|
|
6818
6872
|
id: string;
|
|
6819
6873
|
name: string;
|
|
6820
|
-
api: "
|
|
6874
|
+
api: "anthropic-messages";
|
|
6821
6875
|
provider: string;
|
|
6822
6876
|
baseUrl: string;
|
|
6823
6877
|
reasoning: true;
|
|
@@ -7139,7 +7193,7 @@ export declare const MODELS: {
|
|
|
7139
7193
|
contextWindow: number;
|
|
7140
7194
|
maxTokens: number;
|
|
7141
7195
|
};
|
|
7142
|
-
readonly "anthropic/claude-
|
|
7196
|
+
readonly "anthropic/claude-opus-4.6-fast": {
|
|
7143
7197
|
id: string;
|
|
7144
7198
|
name: string;
|
|
7145
7199
|
api: "openai-completions";
|
|
@@ -7156,7 +7210,7 @@ export declare const MODELS: {
|
|
|
7156
7210
|
contextWindow: number;
|
|
7157
7211
|
maxTokens: number;
|
|
7158
7212
|
};
|
|
7159
|
-
readonly "anthropic/claude-sonnet-4
|
|
7213
|
+
readonly "anthropic/claude-sonnet-4": {
|
|
7160
7214
|
id: string;
|
|
7161
7215
|
name: string;
|
|
7162
7216
|
api: "openai-completions";
|
|
@@ -7173,7 +7227,7 @@ export declare const MODELS: {
|
|
|
7173
7227
|
contextWindow: number;
|
|
7174
7228
|
maxTokens: number;
|
|
7175
7229
|
};
|
|
7176
|
-
readonly "anthropic/claude-sonnet-4.
|
|
7230
|
+
readonly "anthropic/claude-sonnet-4.5": {
|
|
7177
7231
|
id: string;
|
|
7178
7232
|
name: string;
|
|
7179
7233
|
api: "openai-completions";
|
|
@@ -7190,14 +7244,14 @@ export declare const MODELS: {
|
|
|
7190
7244
|
contextWindow: number;
|
|
7191
7245
|
maxTokens: number;
|
|
7192
7246
|
};
|
|
7193
|
-
readonly "
|
|
7247
|
+
readonly "anthropic/claude-sonnet-4.6": {
|
|
7194
7248
|
id: string;
|
|
7195
7249
|
name: string;
|
|
7196
7250
|
api: "openai-completions";
|
|
7197
7251
|
provider: string;
|
|
7198
7252
|
baseUrl: string;
|
|
7199
|
-
reasoning:
|
|
7200
|
-
input: "text"[];
|
|
7253
|
+
reasoning: true;
|
|
7254
|
+
input: ("image" | "text")[];
|
|
7201
7255
|
cost: {
|
|
7202
7256
|
input: number;
|
|
7203
7257
|
output: number;
|
|
@@ -7207,13 +7261,13 @@ export declare const MODELS: {
|
|
|
7207
7261
|
contextWindow: number;
|
|
7208
7262
|
maxTokens: number;
|
|
7209
7263
|
};
|
|
7210
|
-
readonly "arcee-ai/trinity-large-
|
|
7264
|
+
readonly "arcee-ai/trinity-large-preview:free": {
|
|
7211
7265
|
id: string;
|
|
7212
7266
|
name: string;
|
|
7213
7267
|
api: "openai-completions";
|
|
7214
7268
|
provider: string;
|
|
7215
7269
|
baseUrl: string;
|
|
7216
|
-
reasoning:
|
|
7270
|
+
reasoning: false;
|
|
7217
7271
|
input: "text"[];
|
|
7218
7272
|
cost: {
|
|
7219
7273
|
input: number;
|
|
@@ -7224,7 +7278,7 @@ export declare const MODELS: {
|
|
|
7224
7278
|
contextWindow: number;
|
|
7225
7279
|
maxTokens: number;
|
|
7226
7280
|
};
|
|
7227
|
-
readonly "arcee-ai/trinity-
|
|
7281
|
+
readonly "arcee-ai/trinity-large-thinking": {
|
|
7228
7282
|
id: string;
|
|
7229
7283
|
name: string;
|
|
7230
7284
|
api: "openai-completions";
|
|
@@ -7241,7 +7295,7 @@ export declare const MODELS: {
|
|
|
7241
7295
|
contextWindow: number;
|
|
7242
7296
|
maxTokens: number;
|
|
7243
7297
|
};
|
|
7244
|
-
readonly "arcee-ai/trinity-mini
|
|
7298
|
+
readonly "arcee-ai/trinity-mini": {
|
|
7245
7299
|
id: string;
|
|
7246
7300
|
name: string;
|
|
7247
7301
|
api: "openai-completions";
|
|
@@ -7802,6 +7856,23 @@ export declare const MODELS: {
|
|
|
7802
7856
|
contextWindow: number;
|
|
7803
7857
|
maxTokens: number;
|
|
7804
7858
|
};
|
|
7859
|
+
readonly "google/gemma-4-26b-a4b-it:free": {
|
|
7860
|
+
id: string;
|
|
7861
|
+
name: string;
|
|
7862
|
+
api: "openai-completions";
|
|
7863
|
+
provider: string;
|
|
7864
|
+
baseUrl: string;
|
|
7865
|
+
reasoning: true;
|
|
7866
|
+
input: ("image" | "text")[];
|
|
7867
|
+
cost: {
|
|
7868
|
+
input: number;
|
|
7869
|
+
output: number;
|
|
7870
|
+
cacheRead: number;
|
|
7871
|
+
cacheWrite: number;
|
|
7872
|
+
};
|
|
7873
|
+
contextWindow: number;
|
|
7874
|
+
maxTokens: number;
|
|
7875
|
+
};
|
|
7805
7876
|
readonly "google/gemma-4-31b-it": {
|
|
7806
7877
|
id: string;
|
|
7807
7878
|
name: string;
|
|
@@ -7819,6 +7890,23 @@ export declare const MODELS: {
|
|
|
7819
7890
|
contextWindow: number;
|
|
7820
7891
|
maxTokens: number;
|
|
7821
7892
|
};
|
|
7893
|
+
readonly "google/gemma-4-31b-it:free": {
|
|
7894
|
+
id: string;
|
|
7895
|
+
name: string;
|
|
7896
|
+
api: "openai-completions";
|
|
7897
|
+
provider: string;
|
|
7898
|
+
baseUrl: string;
|
|
7899
|
+
reasoning: true;
|
|
7900
|
+
input: ("image" | "text")[];
|
|
7901
|
+
cost: {
|
|
7902
|
+
input: number;
|
|
7903
|
+
output: number;
|
|
7904
|
+
cacheRead: number;
|
|
7905
|
+
cacheWrite: number;
|
|
7906
|
+
};
|
|
7907
|
+
contextWindow: number;
|
|
7908
|
+
maxTokens: number;
|
|
7909
|
+
};
|
|
7822
7910
|
readonly "inception/mercury": {
|
|
7823
7911
|
id: string;
|
|
7824
7912
|
name: string;
|
|
@@ -10471,7 +10559,7 @@ export declare const MODELS: {
|
|
|
10471
10559
|
contextWindow: number;
|
|
10472
10560
|
maxTokens: number;
|
|
10473
10561
|
};
|
|
10474
|
-
readonly "qwen/qwen3.6-plus
|
|
10562
|
+
readonly "qwen/qwen3.6-plus": {
|
|
10475
10563
|
id: string;
|
|
10476
10564
|
name: string;
|
|
10477
10565
|
api: "openai-completions";
|
|
@@ -10590,23 +10678,6 @@ export declare const MODELS: {
|
|
|
10590
10678
|
contextWindow: number;
|
|
10591
10679
|
maxTokens: number;
|
|
10592
10680
|
};
|
|
10593
|
-
readonly "stepfun/step-3.5-flash:free": {
|
|
10594
|
-
id: string;
|
|
10595
|
-
name: string;
|
|
10596
|
-
api: "openai-completions";
|
|
10597
|
-
provider: string;
|
|
10598
|
-
baseUrl: string;
|
|
10599
|
-
reasoning: true;
|
|
10600
|
-
input: "text"[];
|
|
10601
|
-
cost: {
|
|
10602
|
-
input: number;
|
|
10603
|
-
output: number;
|
|
10604
|
-
cacheRead: number;
|
|
10605
|
-
cacheWrite: number;
|
|
10606
|
-
};
|
|
10607
|
-
contextWindow: number;
|
|
10608
|
-
maxTokens: number;
|
|
10609
|
-
};
|
|
10610
10681
|
readonly "thedrummer/rocinante-12b": {
|
|
10611
10682
|
id: string;
|
|
10612
10683
|
name: string;
|
|
@@ -11066,6 +11137,23 @@ export declare const MODELS: {
|
|
|
11066
11137
|
contextWindow: number;
|
|
11067
11138
|
maxTokens: number;
|
|
11068
11139
|
};
|
|
11140
|
+
readonly "z-ai/glm-5.1": {
|
|
11141
|
+
id: string;
|
|
11142
|
+
name: string;
|
|
11143
|
+
api: "openai-completions";
|
|
11144
|
+
provider: string;
|
|
11145
|
+
baseUrl: string;
|
|
11146
|
+
reasoning: true;
|
|
11147
|
+
input: "text"[];
|
|
11148
|
+
cost: {
|
|
11149
|
+
input: number;
|
|
11150
|
+
output: number;
|
|
11151
|
+
cacheRead: number;
|
|
11152
|
+
cacheWrite: number;
|
|
11153
|
+
};
|
|
11154
|
+
contextWindow: number;
|
|
11155
|
+
maxTokens: number;
|
|
11156
|
+
};
|
|
11069
11157
|
readonly "z-ai/glm-5v-turbo": {
|
|
11070
11158
|
id: string;
|
|
11071
11159
|
name: string;
|
|
@@ -12972,23 +13060,6 @@ export declare const MODELS: {
|
|
|
12972
13060
|
contextWindow: number;
|
|
12973
13061
|
maxTokens: number;
|
|
12974
13062
|
};
|
|
12975
|
-
readonly "openai/gpt-oss-120b": {
|
|
12976
|
-
id: string;
|
|
12977
|
-
name: string;
|
|
12978
|
-
api: "anthropic-messages";
|
|
12979
|
-
provider: string;
|
|
12980
|
-
baseUrl: string;
|
|
12981
|
-
reasoning: true;
|
|
12982
|
-
input: "text"[];
|
|
12983
|
-
cost: {
|
|
12984
|
-
input: number;
|
|
12985
|
-
output: number;
|
|
12986
|
-
cacheRead: number;
|
|
12987
|
-
cacheWrite: number;
|
|
12988
|
-
};
|
|
12989
|
-
contextWindow: number;
|
|
12990
|
-
maxTokens: number;
|
|
12991
|
-
};
|
|
12992
13063
|
readonly "openai/gpt-oss-20b": {
|
|
12993
13064
|
id: string;
|
|
12994
13065
|
name: string;
|
|
@@ -13176,23 +13247,6 @@ export declare const MODELS: {
|
|
|
13176
13247
|
contextWindow: number;
|
|
13177
13248
|
maxTokens: number;
|
|
13178
13249
|
};
|
|
13179
|
-
readonly "xai/grok-2-vision": {
|
|
13180
|
-
id: string;
|
|
13181
|
-
name: string;
|
|
13182
|
-
api: "anthropic-messages";
|
|
13183
|
-
provider: string;
|
|
13184
|
-
baseUrl: string;
|
|
13185
|
-
reasoning: false;
|
|
13186
|
-
input: ("image" | "text")[];
|
|
13187
|
-
cost: {
|
|
13188
|
-
input: number;
|
|
13189
|
-
output: number;
|
|
13190
|
-
cacheRead: number;
|
|
13191
|
-
cacheWrite: number;
|
|
13192
|
-
};
|
|
13193
|
-
contextWindow: number;
|
|
13194
|
-
maxTokens: number;
|
|
13195
|
-
};
|
|
13196
13250
|
readonly "xai/grok-3": {
|
|
13197
13251
|
id: string;
|
|
13198
13252
|
name: string;
|
|
@@ -13686,6 +13740,23 @@ export declare const MODELS: {
|
|
|
13686
13740
|
contextWindow: number;
|
|
13687
13741
|
maxTokens: number;
|
|
13688
13742
|
};
|
|
13743
|
+
readonly "zai/glm-5.1": {
|
|
13744
|
+
id: string;
|
|
13745
|
+
name: string;
|
|
13746
|
+
api: "anthropic-messages";
|
|
13747
|
+
provider: string;
|
|
13748
|
+
baseUrl: string;
|
|
13749
|
+
reasoning: true;
|
|
13750
|
+
input: "text"[];
|
|
13751
|
+
cost: {
|
|
13752
|
+
input: number;
|
|
13753
|
+
output: number;
|
|
13754
|
+
cacheRead: number;
|
|
13755
|
+
cacheWrite: number;
|
|
13756
|
+
};
|
|
13757
|
+
contextWindow: number;
|
|
13758
|
+
maxTokens: number;
|
|
13759
|
+
};
|
|
13689
13760
|
readonly "zai/glm-5v-turbo": {
|
|
13690
13761
|
id: string;
|
|
13691
13762
|
name: string;
|