GoogleCloudAiplatformV1FunctionCall
import type { GoogleCloudAiplatformV1FunctionCall } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing the parameters and their values.
interface GoogleCloudAiplatformV1FunctionCall {
args?: {};
[key: string]: any;
name?: string;
partialArgs?: GoogleCloudAiplatformV1PartialArg[];
willContinue?: boolean;
}§Properties
§
args?: {}
[src][key: string]: any;
Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details.
§
partialArgs?: GoogleCloudAiplatformV1PartialArg[]
[src]Optional. The partial argument value of the function call. If provided, represents the arguments/fields that are streamed incrementally.