UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

13 lines (9 loc) 480 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>; }