@agentica/core
Version:
Agentic AI Library specialized in LLM Function Calling
21 lines (20 loc) • 479 B
TypeScript
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 declare namespace __IChatFunctionReference {
interface IProps {
/**
* List of target functions.
*/
functions: __IChatFunctionReference[];
}
}