@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
9 lines (8 loc) • 400 B
TypeScript
import type { ILlmSchema } from "@samchon/openapi";
import type { AgenticaOperation } from "../context/AgenticaOperation";
import type { AgenticaEventBase } from "./AgenticaEventBase";
export interface AgenticaJsonParseErrorEvent<Model extends ILlmSchema.Model> extends AgenticaEventBase<"jsonParseError"> {
operation: AgenticaOperation<Model>;
arguments: string;
errorMessage: string;
}