UNPKG

@agentica/core

Version:

Agentic AI Library specialized in LLM Function Calling

22 lines (20 loc) 439 B
export interface __IChatFunctionReference { /** * The reason of the function selection. * * Just write the reason why you've determined to select this function. */ reason: string; /** * Name of the target function to call. */ name: string; } export namespace __IChatFunctionReference { export interface IProps { /** * List of target functions. */ functions: __IChatFunctionReference[]; } }