Event of description.

Event describing return values of LLM function callings.

interface IDescribe {
    executions: INestiaAgentPrompt.IExecute[];
    text: string;
    type: "describe";
}

Hierarchy

  • IBase<"describe">
    • IDescribe

Properties

Properties

Executions of the LLM function calling.

This prompt describes the return value of them.

text: string

Description text.

type: "describe"

Discriminator type.