@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
8 lines (7 loc) • 474 B
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>;
}