/**
 * NeuroLink Configuration Types
 * Centralized configuration type definitions following the established architecture pattern
 */
import type { MCPToolRegistry } from "../mcp/toolRegistry.js";
import type { TaskManagerConfig } from "./task.js";
import type { HITLConfig } from "../types/hitl.js";
import type { ConversationMemoryConfig } from "./conversation.js";
import type { ObservabilityConfig } from "./observability.js";
import type { AuthProvider, AuthProviderType, AuthProviderConfig, Auth0Config, ClerkConfig, FirebaseConfig, SupabaseConfig, WorkOSConfig, BetterAuthConfig, JWTConfig, OAuth2Config, CognitoConfig, KeycloakConfig, AuthenticatedContext } from "./auth.js";
import type { NeurolinkCredentials } from "./providers.js";
/**
 * Main NeuroLink configuration type
 */
export type NeuroLinkConfig = {
    providers?: Record<string, ProviderRuntimeConfig>;
    performance?: PerformanceConfig;
    analytics?: AnalyticsConfig;
    tools?: ToolConfig;
    lastUpdated?: number;
    configVersion?: string;
    [key: string]: unknown;
};
/**
 * Curator P2-3: callback signature for centralized fallback policy. Invoked
 * when a generate/stream call fails with what looks like a model-access-denied
 * error. Return `{ provider, model }` (either / both optional) to drive a
 * retry; return `null` to bubble the original error untouched.
 */
export type ProviderFallbackCallback = (error: unknown) => Promise<{
    provider?: string;
    model?: string;
} | null>;
/**
 * Configuration object for NeuroLink constructor.
 */
export type NeurolinkConstructorConfig = {
    conversationMemory?: Partial<ConversationMemoryConfig>;
    enableOrchestration?: boolean;
    hitl?: HITLConfig;
    toolRegistry?: MCPToolRegistry;
    observability?: ObservabilityConfig;
    modelAliasConfig?: ModelAliasConfig;
    /** MCP enhancement modules configuration (cache, router, batcher, annotations, middleware) */
    mcp?: MCPEnhancementsConfig;
    /** Authentication provider configuration */
    auth?: NeuroLinkAuthConfig;
    /** TaskManager configuration (scheduled and self-running tasks) */
    tasks?: TaskManagerConfig;
    /**
     * Per-provider credential overrides.
     * When set here, applies as the default for all generate()/stream() calls
     * from this NeuroLink instance. Per-call credentials override these.
     */
    credentials?: NeurolinkCredentials;
    /**
     * Curator P2-3: callback invoked on model-access-denied. Lets a host (e.g.
     * Curator) centrally drive fallback policy. The callback receives the
     * original error and returns the next `{ provider, model }` to try, or
     * `null` to bubble the error.
     */
    providerFallback?: ProviderFallbackCallback;
    /**
     * Curator P2-3: ordered list of model names to try in sequence on
     * model-access-denied. Sugar over `providerFallback`. The current
     * provider is preserved across the chain; only the model name changes.
     */
    modelChain?: string[];
};
/**
 * Configuration for MCP enhancement modules wired into generate()/stream() paths.
 *
 * These modules are automatically applied during tool execution when configured:
 * - cache: Tool result caching (enabled by default, opt out with enabled: false)
 * - annotations: Auto-infer tool safety metadata (enabled by default)
 * - router: Multi-server tool routing (auto-activates with 2+ servers)
 * - batcher: Batch programmatic tool calls (disabled by default)
 * - discovery: Enhanced tool search and filtering (enabled by default)
 * - middleware: Global tool execution middleware chain (empty by default)
 */
export type MCPEnhancementsConfig = {
    /** Tool result caching. Default: enabled. Set enabled: false to opt out. */
    cache?: {
        enabled?: boolean;
        /** Cache TTL in milliseconds. Default: 300000 (5 min) */
        ttl?: number;
        /** Maximum cache entries. Default: 500 */
        maxSize?: number;
        /** Eviction strategy. Default: 'lru' */
        strategy?: CacheStrategy;
    };
    /** Tool annotation auto-inference. Default: enabled. */
    annotations?: {
        enabled?: boolean;
        /** Auto-infer annotations from tool name/description. Default: true */
        autoInfer?: boolean;
    };
    /** Tool routing for multi-server environments. Auto-activates when 2+ external servers exist. */
    router?: {
        enabled?: boolean;
        /** Routing strategy. Default: 'least-loaded' */
        strategy?: RoutingStrategy;
        /** Enable session affinity. Default: false */
        enableAffinity?: boolean;
    };
    /** Request batching for programmatic executeTool() calls. Default: disabled. */
    batcher?: {
        enabled?: boolean;
        /** Max requests per batch. Default: 10 */
        maxBatchSize?: number;
        /** Max wait before flushing batch in ms. Default: 100 */
        maxWaitMs?: number;
    };
    /** Enhanced tool discovery. Default: enabled. */
    discovery?: {
        enabled?: boolean;
    };
    /** Global tool middleware applied to every tool execution. Default: empty. */
    middleware?: ToolMiddleware[];
    /**
     * Large MCP tool output handling.
     *
     * MCP servers can return arbitrarily large payloads. Without limits these
     * are loaded entirely into memory, cached in full, stored whole in Redis, and
     * injected into the LLM context window — all of which silently fail at scale.
     *
     * When configured, NeuroLink intercepts oversized outputs at the tool boundary
     * (before caching and before memory persistence) and applies the chosen
     * strategy so the model receives a compact surrogate instead of a firehose.
     *
     * Two strategies:
     *  - "inline"      Keep sending the full payload to the model regardless of
     *                  size. A warning is emitted above warnBytes.
     *  - "externalize" Store the full payload on disk as an artifact and return a
     *                  compact surrogate with a head/tail preview and an artifact
     *                  ID. The model uses `retrieve_context` with that ID to read
     *                  the full output on demand, with offset/limit pagination.
     *
     * Defaults (when `outputLimits` is set):
     *  strategy  = "externalize"
     *  maxBytes  = 100 KB (100 * 1024)
     *  warnBytes =  50 KB  (50 * 1024)
     */
    outputLimits?: {
        /** What to do when output exceeds maxBytes. Default: "externalize". */
        strategy?: "inline" | "externalize";
        /** Byte ceiling above which the strategy fires. Default: 102400 (100 KB). */
        maxBytes?: number;
        /** Bytes at which a warning is emitted even when still inline. Default: 51200 (50 KB). */
        warnBytes?: number;
    };
};
/**
 * Authentication configuration for NeuroLink SDK
 */
export type NeuroLinkAuthConfig = AuthProvider | {
    provider: AuthProvider;
} | {
    type: "auth0";
    config: Auth0Config;
} | {
    type: "clerk";
    config: ClerkConfig;
} | {
    type: "firebase";
    config: FirebaseConfig;
} | {
    type: "supabase";
    config: SupabaseConfig;
} | {
    type: "workos";
    config: WorkOSConfig;
} | {
    type: "better-auth";
    config: BetterAuthConfig;
} | {
    type: "jwt";
    config: JWTConfig;
} | {
    type: "oauth2";
    config: OAuth2Config;
} | {
    type: "cognito";
    config: CognitoConfig;
} | {
    type: "keycloak";
    config: KeycloakConfig;
} | {
    type: AuthProviderType;
    config: AuthProviderConfig;
};
/**
 * Re-export auth types for convenience
 */
export type { AuthProvider, AuthProviderType, AuthProviderConfig, AuthenticatedContext, };
/**
 * Provider-specific configuration
 */
export type ProviderRuntimeConfig = {
    model?: string;
    available?: boolean;
    lastCheck?: number;
    reason?: string;
    apiKey?: string;
    endpoint?: string;
    maxTokens?: number;
    temperature?: number;
    timeout?: number;
    costPerToken?: number;
    features?: string[];
    [key: string]: unknown;
};
/**
 * Performance and caching configuration
 */
export type PerformanceConfig = {
    cache?: CacheConfig;
    fallback?: FallbackConfig;
    timeoutMs?: number;
    maxConcurrency?: number;
    retryConfig?: RetryConfig;
};
/**
 * Cache configuration
 */
export type CacheConfig = {
    enabled?: boolean;
    ttlMs?: number;
    strategy?: "memory" | "writeThrough" | "cacheAside";
    maxSize?: number;
    persistToDisk?: boolean;
    diskPath?: string;
};
/**
 * Fallback configuration
 */
export type FallbackConfig = {
    enabled?: boolean;
    maxAttempts?: number;
    delayMs?: number;
    circuitBreaker?: boolean;
    commonResponses?: Record<string, string>;
    localFallbackPath?: string;
    degradedMode?: boolean;
};
/**
 * Retry configuration
 */
export type RetryConfig = {
    enabled?: boolean;
    maxAttempts?: number;
    baseDelayMs?: number;
    maxDelayMs?: number;
    exponentialBackoff?: boolean;
    retryConditions?: string[];
};
/**
 * Analytics configuration
 */
export type AnalyticsConfig = {
    enabled?: boolean;
    trackTokens?: boolean;
    trackCosts?: boolean;
    trackPerformance?: boolean;
    trackErrors?: boolean;
    exportFormat?: "json" | "csv" | "prometheus";
    exportPath?: string;
    retention?: {
        days?: number;
        maxEntries?: number;
    };
};
/**
 * Tool configuration
 */
export type ToolConfig = {
    /** Whether built-in tools should be disabled */
    disableBuiltinTools?: boolean;
    /** Whether custom tools are allowed */
    allowCustomTools?: boolean;
    /** Maximum number of tools per provider */
    maxToolsPerProvider?: number;
    /** Whether MCP tools should be enabled */
    enableMCPTools?: boolean;
    /** Whether the bash command execution tool should be enabled (opt-in, defaults to false) */
    enableBashTool?: boolean;
};
/**
 * Backup metadata information
 */
export type BackupInfo = {
    filename: string;
    path: string;
    metadata: BackupMetadata;
    config: NeuroLinkConfig;
};
/**
 * Backup metadata
 */
export type BackupMetadata = {
    reason: string;
    timestamp: number;
    version: string;
    originalPath: string;
    hash?: string;
    size?: number;
    createdBy?: string;
};
/**
 * Configuration validation result
 */
export type ConfigValidationResult = {
    valid: boolean;
    errors: string[];
    warnings: string[];
    suggestions: string[];
};
/**
 * Configuration update options
 */
export type ConfigUpdateOptions = {
    createBackup?: boolean;
    validate?: boolean;
    merge?: boolean;
    reason?: string;
    silent?: boolean;
};
/**
 * Default configuration values
 */
export declare const DEFAULT_CONFIG: NeuroLinkConfig;
import { TOOL_TIMEOUTS, BACKOFF_CONFIG, PERFORMANCE_PROFILES, PROVIDER_OPERATION_CONFIGS, MCP_OPERATION_CONFIGS } from "../constants/index.js";
import type { ToolMiddleware, CacheStrategy, RoutingStrategy } from "./index.js";
import type { ModelAliasConfig } from "./generate.js";
/** Timeout category keys from TOOL_TIMEOUTS. */
export type TimeoutCategory = keyof typeof TOOL_TIMEOUTS;
/** Retry strategy keys from BACKOFF_CONFIG. */
export type RetryStrategy = keyof typeof BACKOFF_CONFIG;
/** Performance profile keys from PERFORMANCE_PROFILES. */
export type PerformanceProfile = keyof typeof PERFORMANCE_PROFILES;
/** Provider-specific operation config. */
export type ProviderOperationConfig = (typeof PROVIDER_OPERATION_CONFIGS)[keyof typeof PROVIDER_OPERATION_CONFIGS];
/** MCP-specific operation config. */
export type McpOperationConfig = (typeof MCP_OPERATION_CONFIGS)[keyof typeof MCP_OPERATION_CONFIGS];
/** Configuration options for the token bucket rate limiter. */
export type RateLimiterConfig = {
    /** Maximum tokens (downloads) allowed per interval */
    maxTokens: number;
    /** Refill interval in milliseconds */
    refillIntervalMs: number;
    /** Number of tokens to add per refill interval */
    tokensPerRefill: number;
    /** Maximum queue size for pending requests */
    maxQueueSize: number;
    /** Timeout for queued requests in milliseconds */
    queueTimeoutMs: number;
};
/** ThinkingLevel type for Gemini 3 models. */
export type ThinkingLevel = "minimal" | "low" | "medium" | "high";
/** ThinkingConfig matching the SDK's expected structure. */
export type ThinkingConfig = {
    enabled?: boolean;
    type?: "enabled" | "disabled";
    /** Token budget for thinking (Anthropic models: 5000-100000) */
    budgetTokens?: number;
    /** Thinking level for Gemini 3 models */
    thinkingLevel?: ThinkingLevel;
};
/** Options for creating a thinkingConfig from CLI-style options. */
export type CreateThinkingConfigOptions = {
    /** Enable thinking mode */
    thinking?: boolean;
    /** Token budget for thinking (defaults to 10000) */
    thinkingBudget?: number;
    /** Thinking level for Gemini 3 models */
    thinkingLevel?: ThinkingLevel;
};
/** Native SDK thinkingConfig structure for Gemini native SDK. */
export type NativeThinkingConfig = {
    includeThoughts: boolean;
    thinkingLevel: ThinkingLevel;
};
