/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { GraphToRun, InputValues, OutputValues, RunArguments, TraversalResult } from "@breadboard-ai/types"; /** * Runs a graph in "run as component" mode. See * https://breadboard-ai.github.io/breadboard/docs/reference/runtime-semantics/#run-as-component-mode * for more details. */ export declare function invokeGraph(graphToRun: GraphToRun, inputs: InputValues, context?: RunArguments, resumeFrom?: TraversalResult): Promise; //# sourceMappingURL=invoke-graph.d.ts.map