UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

15 lines (11 loc) 322 B
import type { PluginRuntime } from "openclaw/plugin-sdk"; let runtime: PluginRuntime | null = null; export function setTlonRuntime(next: PluginRuntime) { runtime = next; } export function getTlonRuntime(): PluginRuntime { if (!runtime) { throw new Error("Tlon runtime not initialized"); } return runtime; }