@conciergus/chat - v0.3.1
    Preparing search index...

    Interface AIGatewayConfig

    Configuration for AI Gateway integration

    interface AIGatewayConfig {
        models?: string[];
        fallbackChain?: string;
        costOptimization?: boolean;
        endpoint?: string;
        auth?: { token?: string; headers?: Record<string, string> };
    }
    Index

    Properties

    models?: string[]

    Available models for selection

    fallbackChain?: string

    Fallback chain for model failures (named chain or single model)

    costOptimization?: boolean

    Enable cost optimization

    endpoint?: string

    API endpoint for AI Gateway

    auth?: { token?: string; headers?: Record<string, string> }

    Authentication configuration

    Type declaration

    • Optionaltoken?: string

      OIDC token for authentication

    • Optionalheaders?: Record<string, string>

      Custom headers for authentication