Interface IAgenticaOperationSelectionJson

Nestia agent operation selection.

IAgenticaOperationSelection is a type represents an operation which has been selected by the A.I. chatbot of Agentica class for the LLM (Large Language Model) function calling with detailed reason of the selection (or cancellation).

Also, IAgenticaOperationSelection is an union type that can specify a subtype by checking the protocol property.

Samchon

interface IAgenticaOperationSelectionJson {
    operation: IAgenticaOperationJson;
    reason: string;
}

Properties

Properties

reason: string