Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}

§Properties

§
args?: {
[key: string]: any;
}
[src]

Optional. Required. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details.

§
name?: string
[src]

Required. The name of the function to call. Matches [FunctionDeclaration.name].