Properties for the parameters' merging.

interface IMergeProps {
    function: ILlmFunction<any>;
    human: null | object;
    llm: null | object;
}

Properties

Properties

function: ILlmFunction<any>

Metadata of the target function.

human: null | object

Arguments composed by the human.

llm: null | object

Arguments composed by the LLM.