@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
13 lines (9 loc) • 399 B
text/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;
}