Interface IApplicationProps

Properties for the LLM function calling application composer.

interface IApplicationProps {
    config?: Partial<IHttpLlmApplication.IConfig>;
    document:
        | OpenApiV3.IDocument
        | OpenApiV3_1.IDocument
        | SwaggerV2.IDocument
        | OpenApi.IDocument;
}

Properties

Properties

config?: Partial<IHttpLlmApplication.IConfig>

Configuration for the LLM function calling schema conversion.

document:
    | OpenApiV3.IDocument
    | OpenApiV3_1.IDocument
    | SwaggerV2.IDocument
    | OpenApi.IDocument

OpenAPI document to convert.