mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
16 lines
561 B
TypeScript
16 lines
561 B
TypeScript
/**
|
|
* Public Anthropic provider API barrel. It exposes provider construction,
|
|
* Claude CLI helpers, and stream wrappers for config/runtime consumers.
|
|
*/
|
|
export { CLAUDE_CLI_BACKEND_ID, isClaudeCliProvider } from "./cli-shared.js";
|
|
export { buildAnthropicProvider } from "./register.runtime.js";
|
|
export {
|
|
createAnthropicBetaHeadersWrapper,
|
|
createAnthropicFastModeWrapper,
|
|
createAnthropicServiceTierWrapper,
|
|
resolveAnthropicBetas,
|
|
resolveAnthropicFastMode,
|
|
resolveAnthropicServiceTier,
|
|
wrapAnthropicProviderStream,
|
|
} from "./stream-wrappers.js";
|