Revert "refactor: move runtime state to SQLite"

This reverts commit f91de52f0d.
This commit is contained in:
Peter Steinberger
2026-05-13 13:33:38 +01:00
parent 3de5979bdc
commit 694ca50e97
3085 changed files with 106484 additions and 115317 deletions

View File

@@ -1,9 +1,9 @@
import type { ProviderStreamOptions } from "@earendil-works/pi-ai";
import {
describeImageWithModelPayloadTransform,
describeImagesWithModelPayloadTransform,
type MediaUnderstandingProvider,
} from "openclaw/plugin-sdk/media-understanding";
import type { ProviderStreamOptions } from "openclaw/plugin-sdk/provider-ai";
function isRecord(value: unknown): value is Record<string, unknown> {
return Boolean(value) && typeof value === "object" && !Array.isArray(value);