Event of selecting a function to call.

interface ISelect {
    operation: INestiaAgentOperation;
    reason: string;
    type: "select";
}

Hierarchy

  • IBase<"select">
    • ISelect

Properties

Properties

Selected operation.

Operation that has been selected to prepare LLM function calling.

reason: string

Reason of selecting the function.

The A.I. chatbot will fill this property describing why the function has been selected.

type: "select"

Discriminator type.