Properties for the LLM function call.

interface IFetchProps {
    application: IHttpLlmApplication;
    connection: IHttpConnection;
    function: IHttpLlmFunction;
    input: object;
}

Properties

application: IHttpLlmApplication

Application of the LLM function calling.

connection: IHttpConnection

Connection info to the HTTP server.

LLM function schema to call.

input: object

Input arguments for the function call.