import { resolveStateDir } from "../../config/paths.js"; import {
generateImage as generateRuntimeImage,
listRuntimeImageGenerationProviders,
} from "../../image-generation/runtime.js"; import {
generateMusic as generateRuntimeMusic,
listRuntimeMusicGenerationProviders,
} from "../../music-generation/runtime.js"; import { RequestScopedSubagentRuntimeError } from "../../plugin-sdk/error-runtime.js"; import {
createLazyRuntimeMethod,
createLazyRuntimeMethodBinder,
createLazyRuntimeModule,
} from "../../shared/lazy-runtime.js"; import { VERSION } from "../../version.js"; import {
generateVideo as generateRuntimeVideo,
listRuntimeVideoGenerationProviders,
} from "../../video-generation/runtime.js"; import { listWebSearchProviders, runWebSearch } from "../../web-search/runtime.js"; import {
gatewaySubagentState,
setGatewayNodesRuntime,
setGatewaySubagentRuntime,
clearGatewaySubagentRuntime,
} from "./gateway-bindings.js"; import { createRuntimeAgent } from "./runtime-agent.js"; import { defineCachedValue } from "./runtime-cache.js"; import { createRuntimeChannel } from "./runtime-channel.js"; import { createRuntimeConfig } from "./runtime-config.js"; import { createRuntimeEvents } from "./runtime-events.js"; import { createRuntimeLogging } from "./runtime-logging.js"; import { createRuntimeMedia } from "./runtime-media.js"; import { createRuntimeSystem } from "./runtime-system.js"; import { createRuntimeTaskFlow } from "./runtime-taskflow.js"; import { createRuntimeTasks } from "./runtime-tasks.js"; import type { CreatePluginRuntimeOptions, PluginRuntime } from "./types.js";
export type { CreatePluginRuntimeOptions } from "./types.js";
export {
clearGatewaySubagentRuntime,
setGatewayNodesRuntime,
setGatewaySubagentRuntime,
} from "./gateway-bindings.js";
// ── Process-global gateway subagent runtime ───────────────────────── // The gateway creates a real subagent runtime during startup, but gateway-owned // plugin registries may be loaded (and cached) before the gateway path runs. // A process-global holder lets explicitly gateway-bindable runtimes resolve the // active gateway subagent dynamically without changing the default behavior for // ordinary plugin runtimes.
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.