export interface FunctionCall { /** The name of the function to call. */ name: string; /** The arguments to call the function with, as a JSON string. */ arguments: string; }