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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
腾讯CDC
T
Tailwind CSS Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
The Cloudflare Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
B
Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research

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
fix: declare groq manifest model catalog · openclaw/openc...
shakkernerd · 2026-05-01 · via Recent Commits to openclaw:main

@@ -27,6 +27,271 @@

2727

}

2828

]

2929

},

30+

"modelCatalog": {

31+

"providers": {

32+

"groq": {

33+

"baseUrl": "https://api.groq.com/openai/v1",

34+

"api": "openai-completions",

35+

"models": [

36+

{

37+

"id": "deepseek-r1-distill-llama-70b",

38+

"name": "DeepSeek R1 Distill Llama 70B",

39+

"reasoning": true,

40+

"input": ["text"],

41+

"contextWindow": 131072,

42+

"maxTokens": 8192,

43+

"cost": {

44+

"input": 0.75,

45+

"output": 0.99,

46+

"cacheRead": 0,

47+

"cacheWrite": 0

48+

}

49+

},

50+

{

51+

"id": "gemma2-9b-it",

52+

"name": "Gemma 2 9B",

53+

"reasoning": false,

54+

"input": ["text"],

55+

"contextWindow": 8192,

56+

"maxTokens": 8192,

57+

"cost": {

58+

"input": 0.2,

59+

"output": 0.2,

60+

"cacheRead": 0,

61+

"cacheWrite": 0

62+

}

63+

},

64+

{

65+

"id": "groq/compound",

66+

"name": "Compound",

67+

"reasoning": true,

68+

"input": ["text"],

69+

"contextWindow": 131072,

70+

"maxTokens": 8192,

71+

"cost": {

72+

"input": 0,

73+

"output": 0,

74+

"cacheRead": 0,

75+

"cacheWrite": 0

76+

}

77+

},

78+

{

79+

"id": "groq/compound-mini",

80+

"name": "Compound Mini",

81+

"reasoning": true,

82+

"input": ["text"],

83+

"contextWindow": 131072,

84+

"maxTokens": 8192,

85+

"cost": {

86+

"input": 0,

87+

"output": 0,

88+

"cacheRead": 0,

89+

"cacheWrite": 0

90+

}

91+

},

92+

{

93+

"id": "llama-3.1-8b-instant",

94+

"name": "Llama 3.1 8B Instant",

95+

"reasoning": false,

96+

"input": ["text"],

97+

"contextWindow": 131072,

98+

"maxTokens": 131072,

99+

"cost": {

100+

"input": 0.05,

101+

"output": 0.08,

102+

"cacheRead": 0,

103+

"cacheWrite": 0

104+

}

105+

},

106+

{

107+

"id": "llama-3.3-70b-versatile",

108+

"name": "Llama 3.3 70B Versatile",

109+

"reasoning": false,

110+

"input": ["text"],

111+

"contextWindow": 131072,

112+

"maxTokens": 32768,

113+

"cost": {

114+

"input": 0.59,

115+

"output": 0.79,

116+

"cacheRead": 0,

117+

"cacheWrite": 0

118+

}

119+

},

120+

{

121+

"id": "llama3-70b-8192",

122+

"name": "Llama 3 70B",

123+

"reasoning": false,

124+

"input": ["text"],

125+

"contextWindow": 8192,

126+

"maxTokens": 8192,

127+

"cost": {

128+

"input": 0.59,

129+

"output": 0.79,

130+

"cacheRead": 0,

131+

"cacheWrite": 0

132+

}

133+

},

134+

{

135+

"id": "llama3-8b-8192",

136+

"name": "Llama 3 8B",

137+

"reasoning": false,

138+

"input": ["text"],

139+

"contextWindow": 8192,

140+

"maxTokens": 8192,

141+

"cost": {

142+

"input": 0.05,

143+

"output": 0.08,

144+

"cacheRead": 0,

145+

"cacheWrite": 0

146+

}

147+

},

148+

{

149+

"id": "meta-llama/llama-4-maverick-17b-128e-instruct",

150+

"name": "Llama 4 Maverick 17B",

151+

"reasoning": false,

152+

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

153+

"contextWindow": 131072,

154+

"maxTokens": 8192,

155+

"cost": {

156+

"input": 0.2,

157+

"output": 0.6,

158+

"cacheRead": 0,

159+

"cacheWrite": 0

160+

}

161+

},

162+

{

163+

"id": "meta-llama/llama-4-scout-17b-16e-instruct",

164+

"name": "Llama 4 Scout 17B",

165+

"reasoning": false,

166+

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

167+

"contextWindow": 131072,

168+

"maxTokens": 8192,

169+

"cost": {

170+

"input": 0.11,

171+

"output": 0.34,

172+

"cacheRead": 0,

173+

"cacheWrite": 0

174+

}

175+

},

176+

{

177+

"id": "mistral-saba-24b",

178+

"name": "Mistral Saba 24B",

179+

"reasoning": false,

180+

"input": ["text"],

181+

"contextWindow": 32768,

182+

"maxTokens": 32768,

183+

"cost": {

184+

"input": 0.79,

185+

"output": 0.79,

186+

"cacheRead": 0,

187+

"cacheWrite": 0

188+

}

189+

},

190+

{

191+

"id": "moonshotai/kimi-k2-instruct",

192+

"name": "Kimi K2 Instruct",

193+

"reasoning": false,

194+

"input": ["text"],

195+

"contextWindow": 131072,

196+

"maxTokens": 16384,

197+

"cost": {

198+

"input": 1,

199+

"output": 3,

200+

"cacheRead": 0,

201+

"cacheWrite": 0

202+

}

203+

},

204+

{

205+

"id": "moonshotai/kimi-k2-instruct-0905",

206+

"name": "Kimi K2 Instruct 0905",

207+

"reasoning": false,

208+

"input": ["text"],

209+

"contextWindow": 262144,

210+

"maxTokens": 16384,

211+

"cost": {

212+

"input": 1,

213+

"output": 3,

214+

"cacheRead": 0,

215+

"cacheWrite": 0

216+

}

217+

},

218+

{

219+

"id": "openai/gpt-oss-120b",

220+

"name": "GPT OSS 120B",

221+

"reasoning": true,

222+

"input": ["text"],

223+

"contextWindow": 131072,

224+

"maxTokens": 65536,

225+

"cost": {

226+

"input": 0.15,

227+

"output": 0.6,

228+

"cacheRead": 0,

229+

"cacheWrite": 0

230+

}

231+

},

232+

{

233+

"id": "openai/gpt-oss-20b",

234+

"name": "GPT OSS 20B",

235+

"reasoning": true,

236+

"input": ["text"],

237+

"contextWindow": 131072,

238+

"maxTokens": 65536,

239+

"cost": {

240+

"input": 0.075,

241+

"output": 0.3,

242+

"cacheRead": 0,

243+

"cacheWrite": 0

244+

}

245+

},

246+

{

247+

"id": "openai/gpt-oss-safeguard-20b",

248+

"name": "Safety GPT OSS 20B",

249+

"reasoning": true,

250+

"input": ["text"],

251+

"contextWindow": 131072,

252+

"maxTokens": 65536,

253+

"cost": {

254+

"input": 0.075,

255+

"output": 0.3,

256+

"cacheRead": 0.037,

257+

"cacheWrite": 0

258+

}

259+

},

260+

{

261+

"id": "qwen-qwq-32b",

262+

"name": "Qwen QwQ 32B",

263+

"reasoning": true,

264+

"input": ["text"],

265+

"contextWindow": 131072,

266+

"maxTokens": 16384,

267+

"cost": {

268+

"input": 0.29,

269+

"output": 0.39,

270+

"cacheRead": 0,

271+

"cacheWrite": 0

272+

}

273+

},

274+

{

275+

"id": "qwen/qwen3-32b",

276+

"name": "Qwen3 32B",

277+

"reasoning": true,

278+

"input": ["text"],

279+

"contextWindow": 131072,

280+

"maxTokens": 40960,

281+

"cost": {

282+

"input": 0.29,

283+

"output": 0.59,

284+

"cacheRead": 0,

285+

"cacheWrite": 0

286+

}

287+

}

288+

]

289+

}

290+

},

291+

"discovery": {

292+

"groq": "static"

293+

}

294+

},

30295

"contracts": {

31296

"mediaUnderstandingProviders": ["groq"]

32297

},