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