2026-03-31 21:38:37 +01:00
|
|
|
import type { UIAdapterModule } from "../types";
|
|
|
|
|
import { parseHermesStdoutLine } from "hermes-paperclip-adapter/ui";
|
2026-04-04 12:40:39 +01:00
|
|
|
import { SchemaConfigFields, buildSchemaAdapterConfig } from "../schema-config-fields";
|
2026-03-31 21:38:37 +01:00
|
|
|
import { buildHermesConfig } from "hermes-paperclip-adapter/ui";
|
|
|
|
|
|
|
|
|
|
export const hermesLocalUIAdapter: UIAdapterModule = {
|
|
|
|
|
type: "hermes_local",
|
|
|
|
|
label: "Hermes Agent",
|
|
|
|
|
parseStdoutLine: parseHermesStdoutLine,
|
2026-04-04 12:40:39 +01:00
|
|
|
ConfigFields: SchemaConfigFields,
|
|
|
|
|
buildAdapterConfig: buildSchemaAdapterConfig,
|
2026-03-31 21:38:37 +01:00
|
|
|
};
|