Files
boc/landvex/node_modules/openai/providers/bedrock.d.mts
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

7 lines
460 B
TypeScript

import type { Provider } from "../internal/provider.mjs";
import { type BedrockBearerOptions, type BedrockEndpointOptions } from "../internal/bedrock.mjs";
export interface BedrockProviderOptions extends BedrockEndpointOptions, BedrockBearerOptions {
}
/** Configure the standard OpenAI client for Amazon Bedrock using bearer authentication. */
export declare function bedrock(options?: BedrockProviderOptions): Provider;
//# sourceMappingURL=bedrock.d.mts.map