mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 03:30:39 +09:00
13 lines
471 B
TypeScript
13 lines
471 B
TypeScript
|
|
import type { UIAdapterModule } from "../types";
|
||
|
|
import { parseOpenClawStdoutLine } from "@paperclip/adapter-openclaw/ui";
|
||
|
|
import { buildOpenClawConfig } from "@paperclip/adapter-openclaw/ui";
|
||
|
|
import { OpenClawConfigFields } from "./config-fields";
|
||
|
|
|
||
|
|
export const openClawUIAdapter: UIAdapterModule = {
|
||
|
|
type: "openclaw",
|
||
|
|
label: "OpenClaw",
|
||
|
|
parseStdoutLine: parseOpenClawStdoutLine,
|
||
|
|
ConfigFields: OpenClawConfigFields,
|
||
|
|
buildAdapterConfig: buildOpenClawConfig,
|
||
|
|
};
|