@ai-sdk/provider
Version:
25 lines (23 loc) • 735 B
text/typescript
import type { JSONValue } from '../../json-value/json-value';
/**
* Additional provider-specific options.
* Options are additional input to the provider.
* They are passed through to the provider from the AI SDK
* and enable provider-specific functionality
* that can be fully encapsulated in the provider.
*
* This enables us to quickly ship provider-specific functionality
* without affecting the core AI SDK.
*
* The outer record is keyed by the provider name, and the inner
* record is keyed by the provider-specific metadata key.
*
* ```ts
* {
* "anthropic": {
* "cacheControl": { "type": "ephemeral" }
* }
* }
* ```
*/
export type SharedV2ProviderOptions = Record<string, Record<string, JSONValue>>;