UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

8 lines (7 loc) 387 B
import type { AgenticaOperationSelection } from "../context/AgenticaOperationSelection"; import type { IAgenticaEventJson } from "../json/IAgenticaEventJson"; import type { AgenticaEventBase } from "./AgenticaEventBase"; export interface AgenticaCancelEvent extends AgenticaEventBase<"cancel"> { selection: AgenticaOperationSelection; toJSON: () => IAgenticaEventJson.ICancel; }