Properties for the LLM function calling application composer.

interface IApplicationProps<Model extends Model> {
    document: OpenApi.IDocument;
    model: Model;
    options?: Partial<IHttpLlmApplication.IOptions<Model>>;
}

Type Parameters

  • Model extends Model

    Target LLM model

Properties

document: OpenApi.IDocument

OpenAPI document to convert.

model: Model

Target LLM model.

options?: Partial<IHttpLlmApplication.IOptions<Model>>

Options for the LLM function calling schema conversion.