UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

9 lines (8 loc) 402 B
import type { ILlmSchema } from "@samchon/openapi"; import type { IAgenticaOperationSelectionJson } from "../json/IAgenticaOperationSelectionJson"; import type { AgenticaOperation } from "./AgenticaOperation"; export interface AgenticaOperationSelection<Model extends ILlmSchema.Model> { operation: AgenticaOperation<Model>; reason: string; toJSON: () => IAgenticaOperationSelectionJson; }