mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 03:30:39 +09:00
13 lines
556 B
TypeScript
13 lines
556 B
TypeScript
|
|
import type { UIAdapterModule } from "../types";
|
||
|
|
import { parseOpenClawGatewayStdoutLine } from "@paperclipai/adapter-openclaw-gateway/ui";
|
||
|
|
import { buildOpenClawGatewayConfig } from "@paperclipai/adapter-openclaw-gateway/ui";
|
||
|
|
import { OpenClawGatewayConfigFields } from "./config-fields";
|
||
|
|
|
||
|
|
export const openClawGatewayUIAdapter: UIAdapterModule = {
|
||
|
|
type: "openclaw_gateway",
|
||
|
|
label: "OpenClaw Gateway",
|
||
|
|
parseStdoutLine: parseOpenClawGatewayStdoutLine,
|
||
|
|
ConfigFields: OpenClawGatewayConfigFields,
|
||
|
|
buildAdapterConfig: buildOpenClawGatewayConfig,
|
||
|
|
};
|