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