Chatoyant - v0.2.1
    Preparing search index...

    Variable PROVIDERSConst

    PROVIDERS: ProviderRegistry = ...

    Registry of supported LLM providers.

    Each provider entry contains:

    • name: Human-readable name
    • signatures: Model name patterns for auto-detection
    • envKey: Environment variable for API key (security by design)
    • baseUrl: API endpoint base URL
    import { PROVIDERS } from 'chatoyant';

    console.log(PROVIDERS.openai.name); // "OpenAI"
    console.log(PROVIDERS.anthropic.envKey); // "API_KEY_ANTHROPIC"