@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
13 lines (9 loc) • 480 B
text/typescript
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 AgenticaSelectHistory<
Model extends ILlmSchema.Model,
> extends AgenticaHistoryBase<"select", IAgenticaHistoryJson.ISelect> {
selection: AgenticaOperationSelection<Model>;
}