Documentation
    Preparing search index...

    Interface IConfig

    Configuration options for LLM schema generation.

    Controls how TypeScript types are converted to LLM-compatible JSON schemas. These settings affect OpenAI structured output compatibility.

    interface IConfig {
        strict: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    strict: boolean

    Whether to enable strict mode (OpenAI structured output).

    When true, all properties become required and additionalProperties is forced to false.

    false