Skip to content

Documentation / @agentick/core / LibraryClientOptions

Interface: LibraryClientOptions ​

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

Base interface for library client initialization options. Used when creating library adapter instances. Each adapter package extends this interface using module augmentation.

Example:

typescript
declare module 'agentick' {
  interface LibraryClientOptions {
    'ai-sdk'?: {
      telemetry?: { isEnabled?: boolean };
    };
  }
}

Indexable ​

[library: string]: unknown

Released under the ISC License.