Skip to content

Documentation / @agentick/core / LibraryGenerationOptions

Interface: LibraryGenerationOptions ​

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

Base interface for library generation options. Used for per-request library-specific configuration. Passed via ModelInput.libraryOptions. Each adapter package extends this interface using module augmentation.

Example:

typescript
declare module 'agentick' {
  interface LibraryGenerationOptions {
    'ai-sdk'?: {
      maxSteps?: number;
      experimental?: { toolCallStreaming?: boolean };
      providerOptions?: Record<string, unknown>;
    };
  }
}

Indexable ​

[library: string]: unknown

Released under the ISC License.