mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-28 17:43:05 +00:00
22 lines
679 B
TypeScript
22 lines
679 B
TypeScript
import { loadBundledPluginContractApiSync } from "../../../src/test-utils/bundled-plugin-public-surface.js";
|
|
|
|
type AnthropicContractSurface = typeof import("@openclaw/anthropic/contract-api.js");
|
|
|
|
const {
|
|
createAnthropicBetaHeadersWrapper,
|
|
createAnthropicFastModeWrapper,
|
|
createAnthropicServiceTierWrapper,
|
|
resolveAnthropicBetas,
|
|
resolveAnthropicFastMode,
|
|
resolveAnthropicServiceTier,
|
|
} = loadBundledPluginContractApiSync<AnthropicContractSurface>("anthropic");
|
|
|
|
export {
|
|
createAnthropicBetaHeadersWrapper,
|
|
createAnthropicFastModeWrapper,
|
|
createAnthropicServiceTierWrapper,
|
|
resolveAnthropicBetas,
|
|
resolveAnthropicFastMode,
|
|
resolveAnthropicServiceTier,
|
|
};
|