omk-ai 0.96.2 → 0.97.0

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.
@@ -1 +1 @@
1
- {"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../src/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAE/C,OAAO,KAAK,EAAE,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,kBAAkB,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAcvF,KAAK,QAAQ,CACZ,SAAS,SAAS,aAAa,EAC/B,QAAQ,SAAS,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,IAC9C,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,SAAS;IAAE,GAAG,EAAE,MAAM,IAAI,CAAA;CAAE,GAAG,CAAC,IAAI,SAAS,GAAG,GAAG,IAAI,GAAG,KAAK,CAAC,GAAG,KAAK,CAAC;AAEjH,wBAAgB,QAAQ,CAAC,SAAS,SAAS,aAAa,EAAE,QAAQ,SAAS,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,EAC1G,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,QAAQ,GACf,KAAK,CAAC,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC,CAGtC;AAED,wBAAgB,YAAY,IAAI,aAAa,EAAE,CAE9C;AAED,wBAAgB,SAAS,CAAC,SAAS,SAAS,aAAa,EACxD,QAAQ,EAAE,SAAS,GACjB,KAAK,CAAC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAGhE;AAED,wBAAgB,aAAa,CAAC,IAAI,SAAS,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,CAO/F;AAaD,wBAAgB,0BAA0B,CAAC,IAAI,SAAS,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,kBAAkB,EAAE,CAUrG;AAED,wBAAgB,kBAAkB,CAAC,IAAI,SAAS,GAAG,EAClD,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,EAClB,KAAK,EAAE,kBAAkB,GACvB,kBAAkB,CAgBpB;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,IAAI,SAAS,GAAG,EAC9C,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,GAAG,SAAS,EACjC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,GAAG,SAAS,GAC/B,OAAO,CAGT","sourcesContent":["import { MODELS } from \"./models.generated.ts\";\nimport { applyGrokThinking } from \"./providers/grok-thinking.ts\";\nimport type { Api, KnownProvider, Model, ModelThinkingLevel, Usage } from \"./types.ts\";\n\nconst modelRegistry: Map<string, Map<string, Model<Api>>> = new Map();\n\n// Initialize registry from MODELS on module load\nfor (const [provider, models] of Object.entries(MODELS)) {\n\tconst providerModels = new Map<string, Model<Api>>();\n\tfor (const [id, model] of Object.entries(models)) {\n\t\tconst registered = model as Model<Api>;\n\t\tproviderModels.set(id, provider === \"xai\" ? applyGrokThinking(registered) : registered);\n\t}\n\tmodelRegistry.set(provider, providerModels);\n}\n\ntype ModelApi<\n\tTProvider extends KnownProvider,\n\tTModelId extends keyof (typeof MODELS)[TProvider],\n> = (typeof MODELS)[TProvider][TModelId] extends { api: infer TApi } ? (TApi extends Api ? TApi : never) : never;\n\nexport function getModel<TProvider extends KnownProvider, TModelId extends keyof (typeof MODELS)[TProvider]>(\n\tprovider: TProvider,\n\tmodelId: TModelId,\n): Model<ModelApi<TProvider, TModelId>> {\n\tconst providerModels = modelRegistry.get(provider);\n\treturn providerModels?.get(modelId as string) as Model<ModelApi<TProvider, TModelId>>;\n}\n\nexport function getProviders(): KnownProvider[] {\n\treturn Array.from(modelRegistry.keys()) as KnownProvider[];\n}\n\nexport function getModels<TProvider extends KnownProvider>(\n\tprovider: TProvider,\n): Model<ModelApi<TProvider, keyof (typeof MODELS)[TProvider]>>[] {\n\tconst models = modelRegistry.get(provider);\n\treturn models ? (Array.from(models.values()) as Model<ModelApi<TProvider, keyof (typeof MODELS)[TProvider]>>[]) : [];\n}\n\nexport function calculateCost<TApi extends Api>(model: Model<TApi>, usage: Usage): Usage[\"cost\"] {\n\tusage.cost.input = (model.cost.input / 1000000) * usage.input;\n\tusage.cost.output = (model.cost.output / 1000000) * usage.output;\n\tusage.cost.cacheRead = (model.cost.cacheRead / 1000000) * usage.cacheRead;\n\tusage.cost.cacheWrite = (model.cost.cacheWrite / 1000000) * usage.cacheWrite;\n\tusage.cost.total = usage.cost.input + usage.cost.output + usage.cost.cacheRead + usage.cost.cacheWrite;\n\treturn usage.cost;\n}\n\nconst EXTENDED_THINKING_LEVELS: ModelThinkingLevel[] = [\n\t\"off\",\n\t\"minimal\",\n\t\"low\",\n\t\"medium\",\n\t\"high\",\n\t\"xhigh\",\n\t\"max\",\n\t\"ultra\",\n];\n\nexport function getSupportedThinkingLevels<TApi extends Api>(model: Model<TApi>): ModelThinkingLevel[] {\n\tif (!model.reasoning) return [\"off\"];\n\n\treturn EXTENDED_THINKING_LEVELS.filter((level) => {\n\t\tconst mapped = model.thinkingLevelMap?.[level];\n\t\tif (mapped === null) return false;\n\t\t// xhigh, max, and ultra are top-tier levels only exposed when a model explicitly maps them.\n\t\tif (level === \"xhigh\" || level === \"max\" || level === \"ultra\") return mapped !== undefined;\n\t\treturn true;\n\t});\n}\n\nexport function clampThinkingLevel<TApi extends Api>(\n\tmodel: Model<TApi>,\n\tlevel: ModelThinkingLevel,\n): ModelThinkingLevel {\n\tconst availableLevels = getSupportedThinkingLevels(model);\n\tif (availableLevels.includes(level)) return level;\n\n\tconst requestedIndex = EXTENDED_THINKING_LEVELS.indexOf(level);\n\tif (requestedIndex === -1) return availableLevels[0] ?? \"off\";\n\n\tfor (let i = requestedIndex; i < EXTENDED_THINKING_LEVELS.length; i++) {\n\t\tconst candidate = EXTENDED_THINKING_LEVELS[i];\n\t\tif (availableLevels.includes(candidate)) return candidate;\n\t}\n\tfor (let i = requestedIndex - 1; i >= 0; i--) {\n\t\tconst candidate = EXTENDED_THINKING_LEVELS[i];\n\t\tif (availableLevels.includes(candidate)) return candidate;\n\t}\n\treturn availableLevels[0] ?? \"off\";\n}\n\n/**\n * Check if two models are equal by comparing both their id and provider.\n * Returns false if either model is null or undefined.\n */\nexport function modelsAreEqual<TApi extends Api>(\n\ta: Model<TApi> | null | undefined,\n\tb: Model<TApi> | null | undefined,\n): boolean {\n\tif (!a || !b) return false;\n\treturn a.id === b.id && a.provider === b.provider;\n}\n"]}
1
+ {"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../src/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAE/C,OAAO,KAAK,EAAE,GAAG,EAAE,aAAa,EAAE,KAAK,EAAE,kBAAkB,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAiBvF,KAAK,QAAQ,CACZ,SAAS,SAAS,aAAa,EAC/B,QAAQ,SAAS,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,IAC9C,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,QAAQ,CAAC,SAAS;IAAE,GAAG,EAAE,MAAM,IAAI,CAAA;CAAE,GAAG,CAAC,IAAI,SAAS,GAAG,GAAG,IAAI,GAAG,KAAK,CAAC,GAAG,KAAK,CAAC;AAEjH,wBAAgB,QAAQ,CAAC,SAAS,SAAS,aAAa,EAAE,QAAQ,SAAS,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,EAC1G,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,QAAQ,GACf,KAAK,CAAC,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC,CAGtC;AAED,wBAAgB,YAAY,IAAI,aAAa,EAAE,CAE9C;AAED,wBAAgB,SAAS,CAAC,SAAS,SAAS,aAAa,EACxD,QAAQ,EAAE,SAAS,GACjB,KAAK,CAAC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAGhE;AAED,wBAAgB,aAAa,CAAC,IAAI,SAAS,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,CAO/F;AAaD,wBAAgB,0BAA0B,CAAC,IAAI,SAAS,GAAG,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,kBAAkB,EAAE,CAUrG;AAED,wBAAgB,kBAAkB,CAAC,IAAI,SAAS,GAAG,EAClD,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,EAClB,KAAK,EAAE,kBAAkB,GACvB,kBAAkB,CAgBpB;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,IAAI,SAAS,GAAG,EAC9C,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,GAAG,SAAS,EACjC,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,GAAG,SAAS,GAC/B,OAAO,CAGT","sourcesContent":["import { MODELS } from \"./models.generated.ts\";\nimport { applyGrokThinking } from \"./providers/grok-thinking.ts\";\nimport type { Api, KnownProvider, Model, ModelThinkingLevel, Usage } from \"./types.ts\";\n\nconst modelRegistry: Map<string, Map<string, Model<Api>>> = new Map();\n\n// Initialize registry from MODELS on module load\nfor (const [provider, models] of Object.entries(MODELS)) {\n\tconst providerModels = new Map<string, Model<Api>>();\n\tfor (const [id, model] of Object.entries(models)) {\n\t\tconst generated = model as Model<Api>;\n\t\tconst registered = generated.id.toLowerCase().includes(\"gpt-5.6\")\n\t\t\t? { ...generated, contextWindow: 1_000_000 }\n\t\t\t: generated;\n\t\tproviderModels.set(id, provider === \"xai\" ? applyGrokThinking(registered) : registered);\n\t}\n\tmodelRegistry.set(provider, providerModels);\n}\n\ntype ModelApi<\n\tTProvider extends KnownProvider,\n\tTModelId extends keyof (typeof MODELS)[TProvider],\n> = (typeof MODELS)[TProvider][TModelId] extends { api: infer TApi } ? (TApi extends Api ? TApi : never) : never;\n\nexport function getModel<TProvider extends KnownProvider, TModelId extends keyof (typeof MODELS)[TProvider]>(\n\tprovider: TProvider,\n\tmodelId: TModelId,\n): Model<ModelApi<TProvider, TModelId>> {\n\tconst providerModels = modelRegistry.get(provider);\n\treturn providerModels?.get(modelId as string) as Model<ModelApi<TProvider, TModelId>>;\n}\n\nexport function getProviders(): KnownProvider[] {\n\treturn Array.from(modelRegistry.keys()) as KnownProvider[];\n}\n\nexport function getModels<TProvider extends KnownProvider>(\n\tprovider: TProvider,\n): Model<ModelApi<TProvider, keyof (typeof MODELS)[TProvider]>>[] {\n\tconst models = modelRegistry.get(provider);\n\treturn models ? (Array.from(models.values()) as Model<ModelApi<TProvider, keyof (typeof MODELS)[TProvider]>>[]) : [];\n}\n\nexport function calculateCost<TApi extends Api>(model: Model<TApi>, usage: Usage): Usage[\"cost\"] {\n\tusage.cost.input = (model.cost.input / 1000000) * usage.input;\n\tusage.cost.output = (model.cost.output / 1000000) * usage.output;\n\tusage.cost.cacheRead = (model.cost.cacheRead / 1000000) * usage.cacheRead;\n\tusage.cost.cacheWrite = (model.cost.cacheWrite / 1000000) * usage.cacheWrite;\n\tusage.cost.total = usage.cost.input + usage.cost.output + usage.cost.cacheRead + usage.cost.cacheWrite;\n\treturn usage.cost;\n}\n\nconst EXTENDED_THINKING_LEVELS: ModelThinkingLevel[] = [\n\t\"off\",\n\t\"minimal\",\n\t\"low\",\n\t\"medium\",\n\t\"high\",\n\t\"xhigh\",\n\t\"max\",\n\t\"ultra\",\n];\n\nexport function getSupportedThinkingLevels<TApi extends Api>(model: Model<TApi>): ModelThinkingLevel[] {\n\tif (!model.reasoning) return [\"off\"];\n\n\treturn EXTENDED_THINKING_LEVELS.filter((level) => {\n\t\tconst mapped = model.thinkingLevelMap?.[level];\n\t\tif (mapped === null) return false;\n\t\t// xhigh, max, and ultra are top-tier levels only exposed when a model explicitly maps them.\n\t\tif (level === \"xhigh\" || level === \"max\" || level === \"ultra\") return mapped !== undefined;\n\t\treturn true;\n\t});\n}\n\nexport function clampThinkingLevel<TApi extends Api>(\n\tmodel: Model<TApi>,\n\tlevel: ModelThinkingLevel,\n): ModelThinkingLevel {\n\tconst availableLevels = getSupportedThinkingLevels(model);\n\tif (availableLevels.includes(level)) return level;\n\n\tconst requestedIndex = EXTENDED_THINKING_LEVELS.indexOf(level);\n\tif (requestedIndex === -1) return availableLevels[0] ?? \"off\";\n\n\tfor (let i = requestedIndex; i < EXTENDED_THINKING_LEVELS.length; i++) {\n\t\tconst candidate = EXTENDED_THINKING_LEVELS[i];\n\t\tif (availableLevels.includes(candidate)) return candidate;\n\t}\n\tfor (let i = requestedIndex - 1; i >= 0; i--) {\n\t\tconst candidate = EXTENDED_THINKING_LEVELS[i];\n\t\tif (availableLevels.includes(candidate)) return candidate;\n\t}\n\treturn availableLevels[0] ?? \"off\";\n}\n\n/**\n * Check if two models are equal by comparing both their id and provider.\n * Returns false if either model is null or undefined.\n */\nexport function modelsAreEqual<TApi extends Api>(\n\ta: Model<TApi> | null | undefined,\n\tb: Model<TApi> | null | undefined,\n): boolean {\n\tif (!a || !b) return false;\n\treturn a.id === b.id && a.provider === b.provider;\n}\n"]}
@@ -9796,6 +9796,43 @@ export declare const MODELS: {
9796
9796
  };
9797
9797
  };
9798
9798
  readonly nvidia: {
9799
+ readonly "deepseek-ai/deepseek-v4-flash-0731": {
9800
+ id: string;
9801
+ name: string;
9802
+ api: "openai-completions";
9803
+ provider: string;
9804
+ baseUrl: string;
9805
+ headers: {
9806
+ "NVCF-POLL-SECONDS": string;
9807
+ };
9808
+ compat: {
9809
+ supportsStore: false;
9810
+ supportsDeveloperRole: false;
9811
+ supportsReasoningEffort: false;
9812
+ maxTokensField: "max_tokens";
9813
+ supportsStrictMode: false;
9814
+ supportsLongCacheRetention: false;
9815
+ requiresReasoningContentOnAssistantMessages: true;
9816
+ thinkingFormat: "deepseek";
9817
+ };
9818
+ reasoning: true;
9819
+ thinkingLevelMap: {
9820
+ minimal: null;
9821
+ low: null;
9822
+ medium: null;
9823
+ high: string;
9824
+ xhigh: string;
9825
+ };
9826
+ input: "text"[];
9827
+ cost: {
9828
+ input: number;
9829
+ output: number;
9830
+ cacheRead: number;
9831
+ cacheWrite: number;
9832
+ };
9833
+ contextWindow: number;
9834
+ maxTokens: number;
9835
+ };
9799
9836
  readonly "google/gemma-3-12b-it": {
9800
9837
  id: string;
9801
9838
  name: string;
@@ -10104,6 +10141,34 @@ export declare const MODELS: {
10104
10141
  contextWindow: number;
10105
10142
  maxTokens: number;
10106
10143
  };
10144
+ readonly "moonshotai/kimi-k3": {
10145
+ id: string;
10146
+ name: string;
10147
+ api: "openai-completions";
10148
+ provider: string;
10149
+ baseUrl: string;
10150
+ headers: {
10151
+ "NVCF-POLL-SECONDS": string;
10152
+ };
10153
+ compat: {
10154
+ supportsStore: false;
10155
+ supportsDeveloperRole: false;
10156
+ supportsReasoningEffort: false;
10157
+ maxTokensField: "max_tokens";
10158
+ supportsStrictMode: false;
10159
+ supportsLongCacheRetention: false;
10160
+ };
10161
+ reasoning: true;
10162
+ input: ("image" | "text")[];
10163
+ cost: {
10164
+ input: number;
10165
+ output: number;
10166
+ cacheRead: number;
10167
+ cacheWrite: number;
10168
+ };
10169
+ contextWindow: number;
10170
+ maxTokens: number;
10171
+ };
10107
10172
  readonly "nvidia/cosmos-reason2-8b": {
10108
10173
  id: string;
10109
10174
  name: string;
@@ -12860,6 +12925,34 @@ export declare const MODELS: {
12860
12925
  contextWindow: number;
12861
12926
  maxTokens: number;
12862
12927
  };
12928
+ readonly "deepseek-v4-flash-vision-exp": {
12929
+ id: string;
12930
+ name: string;
12931
+ api: "openai-completions";
12932
+ provider: string;
12933
+ baseUrl: string;
12934
+ compat: {
12935
+ requiresReasoningContentOnAssistantMessages: true;
12936
+ thinkingFormat: "deepseek";
12937
+ };
12938
+ reasoning: true;
12939
+ thinkingLevelMap: {
12940
+ minimal: null;
12941
+ low: null;
12942
+ medium: null;
12943
+ high: string;
12944
+ xhigh: string;
12945
+ };
12946
+ input: ("image" | "text")[];
12947
+ cost: {
12948
+ input: number;
12949
+ output: number;
12950
+ cacheRead: number;
12951
+ cacheWrite: number;
12952
+ };
12953
+ contextWindow: number;
12954
+ maxTokens: number;
12955
+ };
12863
12956
  readonly "deepseek-v4-pro": {
12864
12957
  id: string;
12865
12958
  name: string;
@@ -13073,6 +13166,23 @@ export declare const MODELS: {
13073
13166
  contextWindow: number;
13074
13167
  maxTokens: number;
13075
13168
  };
13169
+ readonly "longcat-2.0": {
13170
+ id: string;
13171
+ name: string;
13172
+ api: "openai-completions";
13173
+ provider: string;
13174
+ baseUrl: string;
13175
+ reasoning: true;
13176
+ input: "text"[];
13177
+ cost: {
13178
+ input: number;
13179
+ output: number;
13180
+ cacheRead: number;
13181
+ cacheWrite: number;
13182
+ };
13183
+ contextWindow: number;
13184
+ maxTokens: number;
13185
+ };
13076
13186
  readonly "mimo-v2.5": {
13077
13187
  id: string;
13078
13188
  name: string;
@@ -14306,6 +14416,33 @@ export declare const MODELS: {
14306
14416
  contextWindow: number;
14307
14417
  maxTokens: number;
14308
14418
  };
14419
+ readonly "deepseek/deepseek-v4-flash-vision-exp": {
14420
+ id: string;
14421
+ name: string;
14422
+ api: "openai-completions";
14423
+ provider: string;
14424
+ baseUrl: string;
14425
+ compat: {
14426
+ requiresReasoningContentOnAssistantMessages: true;
14427
+ };
14428
+ reasoning: true;
14429
+ thinkingLevelMap: {
14430
+ minimal: null;
14431
+ low: null;
14432
+ medium: null;
14433
+ high: string;
14434
+ xhigh: string;
14435
+ };
14436
+ input: ("image" | "text")[];
14437
+ cost: {
14438
+ input: number;
14439
+ output: number;
14440
+ cacheRead: number;
14441
+ cacheWrite: number;
14442
+ };
14443
+ contextWindow: number;
14444
+ maxTokens: number;
14445
+ };
14309
14446
  readonly "deepseek/deepseek-v4-pro": {
14310
14447
  id: string;
14311
14448
  name: string;
@@ -14941,40 +15078,6 @@ export declare const MODELS: {
14941
15078
  contextWindow: number;
14942
15079
  maxTokens: number;
14943
15080
  };
14944
- readonly "inclusionai/ling-2.6-1t": {
14945
- id: string;
14946
- name: string;
14947
- api: "openai-completions";
14948
- provider: string;
14949
- baseUrl: string;
14950
- reasoning: false;
14951
- input: "text"[];
14952
- cost: {
14953
- input: number;
14954
- output: number;
14955
- cacheRead: number;
14956
- cacheWrite: number;
14957
- };
14958
- contextWindow: number;
14959
- maxTokens: number;
14960
- };
14961
- readonly "inclusionai/ling-2.6-flash": {
14962
- id: string;
14963
- name: string;
14964
- api: "openai-completions";
14965
- provider: string;
14966
- baseUrl: string;
14967
- reasoning: false;
14968
- input: "text"[];
14969
- cost: {
14970
- input: number;
14971
- output: number;
14972
- cacheRead: number;
14973
- cacheWrite: number;
14974
- };
14975
- contextWindow: number;
14976
- maxTokens: number;
14977
- };
14978
15081
  readonly "inclusionai/ling-3.0-flash": {
14979
15082
  id: string;
14980
15083
  name: string;
@@ -14992,23 +15095,6 @@ export declare const MODELS: {
14992
15095
  contextWindow: number;
14993
15096
  maxTokens: number;
14994
15097
  };
14995
- readonly "inclusionai/ring-2.6-1t": {
14996
- id: string;
14997
- name: string;
14998
- api: "openai-completions";
14999
- provider: string;
15000
- baseUrl: string;
15001
- reasoning: true;
15002
- input: "text"[];
15003
- cost: {
15004
- input: number;
15005
- output: number;
15006
- cacheRead: number;
15007
- cacheWrite: number;
15008
- };
15009
- contextWindow: number;
15010
- maxTokens: number;
15011
- };
15012
15098
  readonly "kwaipilot/kat-coder-air-v2.5": {
15013
15099
  id: string;
15014
15100
  name: string;
@@ -15230,6 +15316,23 @@ export declare const MODELS: {
15230
15316
  contextWindow: number;
15231
15317
  maxTokens: number;
15232
15318
  };
15319
+ readonly "meta/muse-spark-1.2-contributor": {
15320
+ id: string;
15321
+ name: string;
15322
+ api: "openai-completions";
15323
+ provider: string;
15324
+ baseUrl: string;
15325
+ reasoning: true;
15326
+ input: ("image" | "text")[];
15327
+ cost: {
15328
+ input: number;
15329
+ output: number;
15330
+ cacheRead: number;
15331
+ cacheWrite: number;
15332
+ };
15333
+ contextWindow: number;
15334
+ maxTokens: number;
15335
+ };
15233
15336
  readonly "minimax/minimax-m1": {
15234
15337
  id: string;
15235
15338
  name: string;
@@ -15366,6 +15469,23 @@ export declare const MODELS: {
15366
15469
  contextWindow: number;
15367
15470
  maxTokens: number;
15368
15471
  };
15472
+ readonly "mistralai/devstral-2512": {
15473
+ id: string;
15474
+ name: string;
15475
+ api: "openai-completions";
15476
+ provider: string;
15477
+ baseUrl: string;
15478
+ reasoning: false;
15479
+ input: "text"[];
15480
+ cost: {
15481
+ input: number;
15482
+ output: number;
15483
+ cacheRead: number;
15484
+ cacheWrite: number;
15485
+ };
15486
+ contextWindow: number;
15487
+ maxTokens: number;
15488
+ };
15369
15489
  readonly "mistralai/ministral-14b-2512": {
15370
15490
  id: string;
15371
15491
  name: string;
@@ -15812,23 +15932,6 @@ export declare const MODELS: {
15812
15932
  contextWindow: number;
15813
15933
  maxTokens: number;
15814
15934
  };
15815
- readonly "nvidia/nemotron-3-nano-30b-a3b:free": {
15816
- id: string;
15817
- name: string;
15818
- api: "openai-completions";
15819
- provider: string;
15820
- baseUrl: string;
15821
- reasoning: true;
15822
- input: "text"[];
15823
- cost: {
15824
- input: number;
15825
- output: number;
15826
- cacheRead: number;
15827
- cacheWrite: number;
15828
- };
15829
- contextWindow: number;
15830
- maxTokens: number;
15831
- };
15832
15935
  readonly "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free": {
15833
15936
  id: string;
15834
15937
  name: string;
@@ -15965,40 +16068,6 @@ export declare const MODELS: {
15965
16068
  contextWindow: number;
15966
16069
  maxTokens: number;
15967
16070
  };
15968
- readonly "nvidia/nemotron-nano-12b-v2-vl:free": {
15969
- id: string;
15970
- name: string;
15971
- api: "openai-completions";
15972
- provider: string;
15973
- baseUrl: string;
15974
- reasoning: true;
15975
- input: ("image" | "text")[];
15976
- cost: {
15977
- input: number;
15978
- output: number;
15979
- cacheRead: number;
15980
- cacheWrite: number;
15981
- };
15982
- contextWindow: number;
15983
- maxTokens: number;
15984
- };
15985
- readonly "nvidia/nemotron-nano-9b-v2:free": {
15986
- id: string;
15987
- name: string;
15988
- api: "openai-completions";
15989
- provider: string;
15990
- baseUrl: string;
15991
- reasoning: true;
15992
- input: "text"[];
15993
- cost: {
15994
- input: number;
15995
- output: number;
15996
- cacheRead: number;
15997
- cacheWrite: number;
15998
- };
15999
- contextWindow: number;
16000
- maxTokens: number;
16001
- };
16002
16071
  readonly "openai/gpt-3.5-turbo": {
16003
16072
  id: string;
16004
16073
  name: string;
@@ -17331,23 +17400,6 @@ export declare const MODELS: {
17331
17400
  contextWindow: number;
17332
17401
  maxTokens: number;
17333
17402
  };
17334
- readonly "openai/gpt-oss-20b:free": {
17335
- id: string;
17336
- name: string;
17337
- api: "openai-completions";
17338
- provider: string;
17339
- baseUrl: string;
17340
- reasoning: true;
17341
- input: "text"[];
17342
- cost: {
17343
- input: number;
17344
- output: number;
17345
- cacheRead: number;
17346
- cacheWrite: number;
17347
- };
17348
- contextWindow: number;
17349
- maxTokens: number;
17350
- };
17351
17403
  readonly "openai/gpt-oss-safeguard-20b": {
17352
17404
  id: string;
17353
17405
  name: string;
@@ -18909,6 +18961,23 @@ export declare const MODELS: {
18909
18961
  contextWindow: number;
18910
18962
  maxTokens: number;
18911
18963
  };
18964
+ readonly "thinkingmachines/inkling-small:free": {
18965
+ id: string;
18966
+ name: string;
18967
+ api: "openai-completions";
18968
+ provider: string;
18969
+ baseUrl: string;
18970
+ reasoning: true;
18971
+ input: ("image" | "text")[];
18972
+ cost: {
18973
+ input: number;
18974
+ output: number;
18975
+ cacheRead: number;
18976
+ cacheWrite: number;
18977
+ };
18978
+ contextWindow: number;
18979
+ maxTokens: number;
18980
+ };
18912
18981
  readonly "thinkingmachines/inkling:batch": {
18913
18982
  id: string;
18914
18983
  name: string;
@@ -18926,6 +18995,23 @@ export declare const MODELS: {
18926
18995
  contextWindow: number;
18927
18996
  maxTokens: number;
18928
18997
  };
18998
+ readonly "thinkingmachines/inkling:free": {
18999
+ id: string;
19000
+ name: string;
19001
+ api: "openai-completions";
19002
+ provider: string;
19003
+ baseUrl: string;
19004
+ reasoning: true;
19005
+ input: ("image" | "text")[];
19006
+ cost: {
19007
+ input: number;
19008
+ output: number;
19009
+ cacheRead: number;
19010
+ cacheWrite: number;
19011
+ };
19012
+ contextWindow: number;
19013
+ maxTokens: number;
19014
+ };
18929
19015
  readonly "upstage/solar-pro-3": {
18930
19016
  id: string;
18931
19017
  name: string;
@@ -21309,6 +21395,23 @@ export declare const MODELS: {
21309
21395
  contextWindow: number;
21310
21396
  maxTokens: number;
21311
21397
  };
21398
+ readonly "deepseek/deepseek-v4-flash-vision-exp": {
21399
+ id: string;
21400
+ name: string;
21401
+ api: "anthropic-messages";
21402
+ provider: string;
21403
+ baseUrl: string;
21404
+ reasoning: true;
21405
+ input: ("image" | "text")[];
21406
+ cost: {
21407
+ input: number;
21408
+ output: number;
21409
+ cacheRead: number;
21410
+ cacheWrite: number;
21411
+ };
21412
+ contextWindow: number;
21413
+ maxTokens: number;
21414
+ };
21312
21415
  readonly "deepseek/deepseek-v4-pro": {
21313
21416
  id: string;
21314
21417
  name: string;
@@ -22414,6 +22517,23 @@ export declare const MODELS: {
22414
22517
  contextWindow: number;
22415
22518
  maxTokens: number;
22416
22519
  };
22520
+ readonly "nvidia/nemotron-3.5-lightning-free": {
22521
+ id: string;
22522
+ name: string;
22523
+ api: "anthropic-messages";
22524
+ provider: string;
22525
+ baseUrl: string;
22526
+ reasoning: true;
22527
+ input: "text"[];
22528
+ cost: {
22529
+ input: number;
22530
+ output: number;
22531
+ cacheRead: number;
22532
+ cacheWrite: number;
22533
+ };
22534
+ contextWindow: number;
22535
+ maxTokens: number;
22536
+ };
22417
22537
  readonly "nvidia/nemotron-nano-12b-v2-vl": {
22418
22538
  id: string;
22419
22539
  name: string;