* feat(anthropic): add Claude Opus 5 model support Wire claude-opus-5 through the Claude 5 contract seams: adaptive-by-default thinking with the full low..max effort range, default-sampling and prefill stripping, streaming refusal contract, model-bound thinking replay, and 1M/128k catalog metadata across anthropic, claude-cli, Vertex, Bedrock, and Mantle. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(anthropic-vertex): normalize explicit Vertex Opus 5 model rows Extend normalizeAnthropicVertexResolvedModel so user-configured Vertex Opus 5 rows regain reasoning, image input, 1M/128k limits, and the native thinking map; update the live-model priority expectation and regenerate docs_map. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
@openclaw/ai
Reusable model API contracts, provider adapters, and streaming primitives from OpenClaw. The package supports isolated runtime instances; importing it does not register providers globally.
import { createLlmRuntime } from "@openclaw/ai";
import { registerBuiltInApiProviders } from "@openclaw/ai/providers";
const runtime = createLlmRuntime();
registerBuiltInApiProviders(runtime.registry);
Provider-neutral contracts, validation, diagnostics, and event streams are
available from the package root and focused subpaths such as
@openclaw/ai/event-stream, @openclaw/ai/transports, and
@openclaw/ai/validation. No second OpenClaw runtime package is required.
Provider ids, credentials, model catalogs, retries, and failover remain
application concerns. OpenClaw supplies those policies around this package.
Host policy (request fetch guarding, secret redaction, strict-tool defaults,
provider plugin hooks, and diagnostics logging) can be injected with
configureAiTransportHost; the defaults are inert.
The explicit @openclaw/ai/internal/anthropic, openai, retry-after,
runtime, and shared subpaths exist for the OpenClaw application itself.
They carry no semver guarantee and can change or disappear in any release; do
not depend on them outside OpenClaw.