UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

8 lines (7 loc) 474 B
import type { ILlmSchema } from "@samchon/openapi"; import type { AgenticaOperationSelection } from "../context/AgenticaOperationSelection"; import type { IAgenticaHistoryJson } from "../json/IAgenticaHistoryJson"; import type { AgenticaHistoryBase } from "./AgenticaHistoryBase"; export interface AgenticaCancelHistory<Model extends ILlmSchema.Model> extends AgenticaHistoryBase<"cancel", IAgenticaHistoryJson.ICancel> { selection: AgenticaOperationSelection<Model>; }