mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-29 19:43:37 +00:00
17 lines
459 B
TypeScript
17 lines
459 B
TypeScript
/**
|
|
* Public Amazon Bedrock Mantle API barrel for discovery and bearer-token
|
|
* helpers shared by config, runtime, and tests.
|
|
*/
|
|
export {
|
|
discoverMantleModels,
|
|
generateBearerTokenFromIam,
|
|
getCachedIamToken,
|
|
MANTLE_IAM_TOKEN_MARKER,
|
|
mergeImplicitMantleProvider,
|
|
resetIamTokenCacheForTest,
|
|
resetMantleDiscoveryCacheForTest,
|
|
resolveImplicitMantleProvider,
|
|
resolveMantleBearerToken,
|
|
resolveMantleRuntimeBearerToken,
|
|
} from "./discovery.js";
|