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

GoogleCloudAiplatformV1CodeExecutionResult

import type { GoogleCloudAiplatformV1CodeExecutionResult } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Result of executing the [ExecutableCode]. Only generated when using the [CodeExecution] tool, and always follows a part containing the [ExecutableCode].

interface GoogleCloudAiplatformV1CodeExecutionResult {
outcome?:
| "OUTCOME_UNSPECIFIED"
| "OUTCOME_OK"
| "OUTCOME_FAILED"
| "OUTCOME_DEADLINE_EXCEEDED";
output?: string;
}

§Properties

§
outcome?: "OUTCOME_UNSPECIFIED" | "OUTCOME_OK" | "OUTCOME_FAILED" | "OUTCOME_DEADLINE_EXCEEDED"
[src]

Required. Outcome of the code execution.

§
output?: string
[src]

Optional. Contains stdout when code execution is successful, stderr or other description otherwise.