Package version:

Interface RequiredFunctionToolCallDetails

The detailed information for a function invocation, as provided by a required action invoking a function tool, that includes the name of and arguments to the function.

interface RequiredFunctionToolCallDetails {
    arguments: string;
    name: string;
}

Properties

Properties

arguments: string

The arguments to use when invoking the named function, as provided by the model. Arguments are presented as a JSON document that should be validated and parsed for evaluation.

name: string

The name of the function.