diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 00000000..97ca3425 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,25 @@ +/** + * Bedrock AgentCore SDK + */ + +export { BedrockAgentCoreApp, RuntimeClient } from './runtime/index.js' +export { withAccessToken, withApiKey } from './identity/index.js' +export { Browser } from './tools/browser/index.js' +export { CodeInterpreter } from './tools/code-interpreter/index.js' + +export type { + BedrockAgentCoreAppConfig, + ContentTypeParserConfig, + Handler, + RequestContext, + HealthStatus, + HealthCheckResponse, + AsyncTaskInfo, + AsyncTaskStatus, + RuntimeClientConfig, + GenerateWsConnectionParams, + GeneratePresignedUrlParams, + GenerateWsConnectionOAuthParams, + WebSocketConnection, + ParsedRuntimeArn, +} from './runtime/index.js'