Documentation
    Preparing search index...

    Interface IHttpLlmApplication

    LLM function calling application from OpenAPI document.

    IHttpLlmApplication is a collection of IHttpLlmFunction schemas converted from OpenApi.IDocument by HttpLlm.application(). Each OpenAPI operation becomes an LLM-callable function.

    Successful conversions go to functions, failed ones to errors with detailed error messages. Common failure causes:

    • Unsupported schema features (tuples, oneOf with incompatible types)
    • Missing required fields in OpenAPI document
    • Operations marked with x-samchon-human: true

    Configure behavior via IHttpLlmApplication.IConfig:

    Jeongho Nam - https://github.com/samchon

    interface IHttpLlmApplication {
        config: IHttpLlmApplication.IConfig;
        errors: IHttpLlmApplication.IError[];
        functions: IHttpLlmFunction[];
    }
    Index

    Properties

    Configuration used for composition.

    Operations that failed conversion.

    functions: IHttpLlmFunction[]

    Successfully converted LLM function schemas.