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

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium

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
docs(providers): cover Opus 4.7 1M, Mantle Anthropic Mess...
vincentkoc · 2026-04-23 · via Recent Commits to openclaw:main

@@ -13,12 +13,12 @@ the Mantle OpenAI-compatible endpoint. Mantle hosts open-source and

1313

third-party models (GPT-OSS, Qwen, Kimi, GLM, and similar) through a standard

1414

`/v1/chat/completions` surface backed by Bedrock infrastructure.

151516-

| Property | Value |

17-

| -------------- | ----------------------------------------------------------------------------------- |

18-

| Provider ID | `amazon-bedrock-mantle` |

19-

| API | `openai-completions` (OpenAI-compatible) |

20-

| Auth | Explicit `AWS_BEARER_TOKEN_BEDROCK` or IAM credential-chain bearer-token generation |

21-

| Default region | `us-east-1` (override with `AWS_REGION` or `AWS_DEFAULT_REGION`) |

16+

| Property | Value |

17+

| -------------- | ------------------------------------------------------------------------------------------- |

18+

| Provider ID | `amazon-bedrock-mantle` |

19+

| API | `openai-completions` (OpenAI-compatible) or `anthropic-messages` (Anthropic Messages route) |

20+

| Auth | Explicit `AWS_BEARER_TOKEN_BEDROCK` or IAM credential-chain bearer-token generation |

21+

| Default region | `us-east-1` (override with `AWS_REGION` or `AWS_DEFAULT_REGION`) |

22222323

## Getting started

2424

@@ -147,6 +147,37 @@ If you prefer explicit config instead of auto-discovery:

147147

continue to work normally.

148148

</Accordion>

149149150+

<Accordion title="Claude Opus 4.7 via the Anthropic Messages route">

151+

Mantle also exposes an Anthropic Messages route that carries Claude models through the same bearer-authenticated streaming path. Claude Opus 4.7 (`amazon-bedrock-mantle/claude-opus-4.7`) is callable through this route with provider-owned streaming, so AWS bearer tokens are not treated like Anthropic API keys.

152+153+

When you pin an Anthropic Messages model on the Mantle provider, OpenClaw uses the `anthropic-messages` API surface instead of `openai-completions` for that model. Auth still comes from `AWS_BEARER_TOKEN_BEDROCK` (or the minted IAM bearer token).

154+155+

```json5

156+

{

157+

models: {

158+

providers: {

159+

"amazon-bedrock-mantle": {

160+

models: [

161+

{

162+

id: "claude-opus-4.7",

163+

name: "Claude Opus 4.7",

164+

api: "anthropic-messages",

165+

reasoning: true,

166+

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

167+

contextWindow: 1000000,

168+

maxTokens: 32000,

169+

},

170+

],

171+

},

172+

},

173+

},

174+

}

175+

```

176+177+

Context-window metadata for discovered Mantle models uses known published limits when available and falls back conservatively for unlisted models, so compaction and overflow handling behave correctly for newer entries without overstating unknown models.

178+179+

</Accordion>

180+150181

<Accordion title="Relationship to Amazon Bedrock provider">

151182

Bedrock Mantle is a separate provider from the standard

152183

[Amazon Bedrock](/providers/bedrock) provider. Mantle uses an