ART Framework API Docs
    Preparing search index...

    Interface AnthropicAdapterOptions

    Configuration options required for the AnthropicAdapter.

    interface AnthropicAdapterOptions {
        apiBaseUrl?: string;
        apiKey: string;
        defaultMaxTokens?: number;
        defaultTemperature?: number;
        model?: string;
    }
    Index

    Properties

    apiBaseUrl?: string

    Optional: Override the base URL for the Anthropic API.

    apiKey: string

    Your Anthropic API key. Handle securely.

    defaultMaxTokens?: number

    Optional: Default maximum tokens for responses.

    defaultTemperature?: number

    Optional: Default temperature for responses.

    model?: string

    The default Anthropic model ID to use (e.g., 'claude-3-opus-20240229', 'claude-3-5-sonnet-20240620').