Skip to content

Documentation / @agentick/core / ProviderClientOptions

Interface: ProviderClientOptions ​

Defined in: core/src/types.ts:231

Base interface for provider-specific client initialization options. Used when creating the underlying provider client (OpenAI, GoogleGenAI, Anthropic, etc.). Each adapter can extend this interface using module augmentation to add their provider key.

Example:

typescript
declare module 'agentick' {
  interface ProviderClientOptions {
    openai?: OpenAI.ClientOptions;
  }
}

Indexable ​

[provider: string]: any

Released under the ISC License.