Fix model casing
This commit is contained in:
parent
7b69a40d47
commit
6236093ccd
@ -49,9 +49,9 @@ OpenClaw dynamically discovers available DeepInfra models at startup. Use
|
||||
Any model available on [DeepInfra.com](https://deepinfra.com/) can be used with the `deepinfra/` prefix:
|
||||
|
||||
```
|
||||
deepinfra/minimaxai/minimax-m2.5
|
||||
deepinfra/zai-org/glm-5
|
||||
deepinfra/moonshotai/kimi-k2.5
|
||||
deepinfra/MiniMaxAI/MiniMax-M2.5
|
||||
deepinfra/zai-org/GLM-5
|
||||
deepinfra/moonshotai/Kimi-K2.5
|
||||
...and many more
|
||||
```
|
||||
|
||||
|
||||
@ -8,9 +8,9 @@ import { buildDeepInfraStaticProvider } from "./models-config.providers.ts";
|
||||
|
||||
const DEEPINFRA_MODEL_IDS = [
|
||||
"openai/gpt-oss-120b",
|
||||
"minimaxai/minimax-m2.5",
|
||||
"zai-org/glm-5",
|
||||
"moonshotai/kimi-k2.5",
|
||||
"MiniMaxAI/MiniMax-M2.5",
|
||||
"zai-org/GLM-5",
|
||||
"moonshotai/Kimi-K2.5",
|
||||
];
|
||||
|
||||
describe("DeepInfra implicit provider", () => {
|
||||
|
||||
@ -27,7 +27,7 @@ export const DEEPINFRA_MODEL_CATALOG: DeepInfraModelCatalogEntry[] = [
|
||||
maxTokens: 131072,
|
||||
},
|
||||
{
|
||||
id: "minimaxai/minimax-m2.5",
|
||||
id: "MiniMaxAI/MiniMax-M2.5",
|
||||
name: "MiniMax M2.5",
|
||||
reasoning: false,
|
||||
input: ["text"],
|
||||
@ -35,7 +35,7 @@ export const DEEPINFRA_MODEL_CATALOG: DeepInfraModelCatalogEntry[] = [
|
||||
maxTokens: 196608,
|
||||
},
|
||||
{
|
||||
id: "zai-org/glm-5",
|
||||
id: "zai-org/GLM-5",
|
||||
name: "GLM 5",
|
||||
reasoning: false,
|
||||
input: ["text"],
|
||||
@ -43,7 +43,7 @@ export const DEEPINFRA_MODEL_CATALOG: DeepInfraModelCatalogEntry[] = [
|
||||
maxTokens: 202752,
|
||||
},
|
||||
{
|
||||
id: "moonshotai/kimi-k2.5",
|
||||
id: "moonshotai/Kimi-K2.5",
|
||||
name: "Kimi K2.5",
|
||||
reasoning: false,
|
||||
input: ["text", "image"],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user