UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

5 lines (4 loc) 358 B
import type { ILlmSchema } from "@samchon/openapi"; import type { AgenticaContext } from "../context/AgenticaContext"; import type { IAgenticaExecutor } from "../structures/IAgenticaExecutor"; export declare function execute<Model extends ILlmSchema.Model>(executor: Partial<IAgenticaExecutor<Model>> | null): (ctx: AgenticaContext<Model>) => Promise<void>;