import type { AuthoringGraphDocument } from "./executable-graph.js"; import type { ExecutableGraphPlanV2 } from "./executable-plan-v2.js"; import type { GraphRuntimeMode, GraphRuntimeObject, RunLogMode } from "./runtime.js"; export interface StudioGraphExecuteRequest { mode: "graph"; jobId: string; graph: AuthoringGraphDocument; runtime?: Partial; graphExecution?: { mode?: GraphRuntimeMode; }; runLogMode?: RunLogMode; maxRunLogEntries?: number; maxRunLogDataJsonChars?: number; runTaskDiagnostics?: boolean; studioId?: string; exampleIndex?: number; validateGraphEntrySeed?: boolean; openrouterApiKey?: string; } export interface GraphExecutionRequest { plan: ExecutableGraphPlanV2; runtime: GraphRuntimeObject; } //# sourceMappingURL=studio-execute.d.ts.map