UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

6 lines (5 loc) 432 B
import type { AgenticaContext } from "../context/AgenticaContext"; import type { AgenticaOperation } from "../context/AgenticaOperation"; import type { MicroAgenticaContext } from "../context/MicroAgenticaContext"; import type { AgenticaExecuteEvent } from "../events/AgenticaExecuteEvent"; export declare function call(ctx: AgenticaContext | MicroAgenticaContext, operations: AgenticaOperation[]): Promise<AgenticaExecuteEvent[]>;