惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: build cerebras and mistral catalogs from manife...
shakkernerd · 2026-04-28 · via Recent Commits to openclaw:main

@@ -1,99 +1,38 @@

1+

import { buildManifestModelProviderConfig } from "openclaw/plugin-sdk/provider-catalog-shared";

12

import type { ModelDefinitionConfig } from "openclaw/plugin-sdk/provider-model-shared";

3+

import manifest from "./openclaw.plugin.json" with { type: "json" };

243-

export const MISTRAL_BASE_URL = "https://api.mistral.ai/v1";

5+

const MISTRAL_MANIFEST_CATALOG = manifest.modelCatalog.providers.mistral;

6+7+

export const MISTRAL_BASE_URL = MISTRAL_MANIFEST_CATALOG.baseUrl;

48

export const MISTRAL_DEFAULT_MODEL_ID = "mistral-large-latest";

59

export const MISTRAL_DEFAULT_MODEL_REF = `mistral/${MISTRAL_DEFAULT_MODEL_ID}`;

6-

export const MISTRAL_DEFAULT_CONTEXT_WINDOW = 262144;

7-

export const MISTRAL_DEFAULT_MAX_TOKENS = 16384;

8-

export const MISTRAL_DEFAULT_COST = {

9-

input: 0.5,

10-

output: 1.5,

11-

cacheRead: 0,

12-

cacheWrite: 0,

13-

};

141015-

const MISTRAL_MODEL_CATALOG = [

16-

{

17-

id: "codestral-latest",

18-

name: "Codestral (latest)",

19-

reasoning: false,

20-

input: ["text"],

21-

cost: { input: 0.3, output: 0.9, cacheRead: 0, cacheWrite: 0 },

22-

contextWindow: 256000,

23-

maxTokens: 4096,

24-

},

25-

{

26-

id: "devstral-medium-latest",

27-

name: "Devstral 2 (latest)",

28-

reasoning: false,

29-

input: ["text"],

30-

cost: { input: 0.4, output: 2, cacheRead: 0, cacheWrite: 0 },

31-

contextWindow: 262144,

32-

maxTokens: 32768,

33-

},

34-

{

35-

id: "magistral-small",

36-

name: "Magistral Small",

37-

reasoning: true,

38-

input: ["text"],

39-

cost: { input: 0.5, output: 1.5, cacheRead: 0, cacheWrite: 0 },

40-

contextWindow: 128000,

41-

maxTokens: 40000,

42-

},

43-

{

44-

id: "mistral-large-latest",

45-

name: "Mistral Large (latest)",

46-

reasoning: false,

47-

input: ["text", "image"],

48-

cost: MISTRAL_DEFAULT_COST,

49-

contextWindow: MISTRAL_DEFAULT_CONTEXT_WINDOW,

50-

maxTokens: MISTRAL_DEFAULT_MAX_TOKENS,

51-

},

52-

{

53-

id: "mistral-medium-2508",

54-

name: "Mistral Medium 3.1",

55-

reasoning: false,

56-

input: ["text", "image"],

57-

cost: { input: 0.4, output: 2, cacheRead: 0, cacheWrite: 0 },

58-

contextWindow: 262144,

59-

maxTokens: 8192,

60-

},

61-

{

62-

id: "mistral-small-latest",

63-

name: "Mistral Small (latest)",

64-

reasoning: true,

65-

input: ["text", "image"],

66-

cost: { input: 0.1, output: 0.3, cacheRead: 0, cacheWrite: 0 },

67-

contextWindow: 128000,

68-

maxTokens: 16384,

69-

},

70-

{

71-

id: "pixtral-large-latest",

72-

name: "Pixtral Large (latest)",

73-

reasoning: false,

74-

input: ["text", "image"],

75-

cost: { input: 2, output: 6, cacheRead: 0, cacheWrite: 0 },

76-

contextWindow: 128000,

77-

maxTokens: 32768,

78-

},

79-

] as const satisfies readonly ModelDefinitionConfig[];

11+

function requireMistralManifestModel(id: string): (typeof MISTRAL_MANIFEST_CATALOG.models)[number] {

12+

const model = MISTRAL_MANIFEST_CATALOG.models.find((entry) => entry.id === id);

13+

if (!model) {

14+

throw new Error(`Missing Mistral modelCatalog row ${id}`);

15+

}

16+

return model;

17+

}

18+19+

const MISTRAL_DEFAULT_MANIFEST_MODEL = requireMistralManifestModel(MISTRAL_DEFAULT_MODEL_ID);

20+21+

export const MISTRAL_DEFAULT_CONTEXT_WINDOW = MISTRAL_DEFAULT_MANIFEST_MODEL.contextWindow;

22+

export const MISTRAL_DEFAULT_MAX_TOKENS = MISTRAL_DEFAULT_MANIFEST_MODEL.maxTokens;

23+

export const MISTRAL_DEFAULT_COST = MISTRAL_DEFAULT_MANIFEST_MODEL.cost;

80248125

export function buildMistralModelDefinition(): ModelDefinitionConfig {

82-

return (

83-

MISTRAL_MODEL_CATALOG.find((model) => model.id === MISTRAL_DEFAULT_MODEL_ID) ?? {

84-

id: MISTRAL_DEFAULT_MODEL_ID,

85-

name: "Mistral Large",

86-

reasoning: false,

87-

input: ["text", "image"],

88-

cost: MISTRAL_DEFAULT_COST,

89-

contextWindow: MISTRAL_DEFAULT_CONTEXT_WINDOW,

90-

maxTokens: MISTRAL_DEFAULT_MAX_TOKENS,

91-

}

92-

);

26+

const model = buildMistralCatalogModels().find((entry) => entry.id === MISTRAL_DEFAULT_MODEL_ID);

27+

if (!model) {

28+

throw new Error(`Missing Mistral provider model ${MISTRAL_DEFAULT_MODEL_ID}`);

29+

}

30+

return model;

9331

}

94329533

export function buildMistralCatalogModels(): ModelDefinitionConfig[] {

96-

return MISTRAL_MODEL_CATALOG.map((model) =>

97-

Object.assign({}, model, { input: [...model.input] }),

98-

);

34+

return buildManifestModelProviderConfig({

35+

providerId: "mistral",

36+

catalog: MISTRAL_MANIFEST_CATALOG,

37+

}).models;

9938

}