GoogleCloudAiplatformV1FunctionResponse
import type { GoogleCloudAiplatformV1FunctionResponse } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";The result output from a FunctionCall that contains a string representing
the FunctionDeclaration.name and a structured JSON object containing any
output from the function is used as context to the model. This should contain
the result of a FunctionCall made based on model prediction.
interface GoogleCloudAiplatformV1FunctionResponse {
name?: string;
parts?: GoogleCloudAiplatformV1FunctionResponsePart[];
response?: {};
[key: string]: any;
scheduling?:
} | "SCHEDULING_UNSPECIFIED"
| "SILENT"
| "WHEN_IDLE"
| "INTERRUPT";
§Properties
§
name?: string
[src]Required. The name of the function to call. Matches FunctionDeclaration.name and FunctionCall.name.
§
Optional. Ordered Parts that constitute a function response. Parts may
have different IANA MIME types.