@typia/website
    Preparing search index...

    Interface IFetchProps<Model>

    Properties for the LLM function call.

    interface IFetchProps<Model extends Model> {
        application: IHttpLlmApplication<Model>;
        connection: IHttpConnection;
        function: IHttpLlmFunction<Model>;
        input: object;
    }

    Type Parameters

    Index

    Properties

    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.