@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
13 lines (12 loc) • 395 B
TypeScript
import type { AgenticaOperation } from "../context/AgenticaOperation";
import type { AgenticaEventBase } from "./AgenticaEventBase";
export interface AgenticaJsonParseErrorEvent extends AgenticaEventBase<"jsonParseError"> {
/**
* ID of the tool calling.
*/
call_id: string;
operation: AgenticaOperation;
arguments: string;
errorMessage: string;
life: number;
}