@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
14 lines (10 loc) • 482 B
text/typescript
import type { ILlmSchema } from "@samchon/openapi";
import type { AgenticaOperationSelection } from "../context/AgenticaOperationSelection";
import type { IAgenticaEventJson } from "../json/IAgenticaEventJson";
import type { AgenticaEventBase } from "./AgenticaEventBase";
export interface AgenticaCancelEvent<
Model extends ILlmSchema.Model,
> extends AgenticaEventBase<"cancel"> {
selection: AgenticaOperationSelection<Model>;
toJSON: () => IAgenticaEventJson.ICancel;
}