mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-19 04:00:38 +09:00
13 lines
474 B
TypeScript
13 lines
474 B
TypeScript
|
|
import type { UIAdapterModule } from "../types";
|
||
|
|
import { parseHermesStdoutLine } from "hermes-paperclip-adapter/ui";
|
||
|
|
import { HermesLocalConfigFields } from "./config-fields";
|
||
|
|
import { buildHermesConfig } from "hermes-paperclip-adapter/ui";
|
||
|
|
|
||
|
|
export const hermesLocalUIAdapter: UIAdapterModule = {
|
||
|
|
type: "hermes_local",
|
||
|
|
label: "Hermes Agent",
|
||
|
|
parseStdoutLine: parseHermesStdoutLine,
|
||
|
|
ConfigFields: HermesLocalConfigFields,
|
||
|
|
buildAdapterConfig: buildHermesConfig,
|
||
|
|
};
|