mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-21 16:18:55 +00:00
Each provider now declares its config surface in config_schema.py inside its own plugin dir (plugins/memory/<name>/), loaded by file path like the plugins themselves so plugin __init__ imports never reach the web server. hermes_cli/memory_providers.py is gone; the shared field primitives and loader live in plugins/memory/config_schema.py, and the schema tests move to tests/plugins/memory/ alongside the other per-plugin suites.
138 lines
4.7 KiB
Python
138 lines
4.7 KiB
Python
"""Declarative configuration schema for memory provider plugins.
|
|
|
|
Each memory provider plugin *declares* its configurable surface in a
|
|
``config_schema.py`` next to its ``__init__.py`` — the fields, their types,
|
|
which values are secrets, and (for selects) the allowed options. A single
|
|
generic renderer in the desktop UI and a single generic ``GET/PUT
|
|
/api/memory/providers/{name}/config`` endpoint pair drive the whole
|
|
experience, so adding a provider config surface is pure declaration with no
|
|
bespoke UI components.
|
|
|
|
Schema files are loaded by path (like the provider plugins themselves), never
|
|
via package import: plugin ``__init__.py`` files pull in the agent runtime,
|
|
which must not load into the web server. A ``config_schema.py`` may only
|
|
import from this module.
|
|
|
|
This module is intentionally pure data: it imports nothing from the
|
|
config/env layer. ``web_server`` owns the generic read/write logic that
|
|
interprets these declarations, dispatching on ``ProviderConfigSchema.storage``
|
|
to the matching backend.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import importlib.util
|
|
import logging
|
|
from dataclasses import dataclass, field as dataclass_field
|
|
|
|
_log = logging.getLogger(__name__)
|
|
|
|
# Field kinds understood by the generic renderer.
|
|
KIND_TEXT = "text"
|
|
KIND_SELECT = "select"
|
|
KIND_SECRET = "secret"
|
|
KIND_BOOL = "bool"
|
|
KIND_NUMBER = "number"
|
|
KIND_JSON = "json"
|
|
|
|
# Storage backends understood by web_server. ``flat_json`` persists non-secret
|
|
# fields to ``<hermes_home>/<provider>/config.json``; ``honcho_host_block``
|
|
# targets Honcho's real config (honcho.json, scoped to the active profile host).
|
|
STORAGE_FLAT_JSON = "flat_json"
|
|
STORAGE_HONCHO_HOST_BLOCK = "honcho_host_block"
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ProviderFieldOption:
|
|
"""A single choice for a ``select`` field."""
|
|
|
|
value: str
|
|
label: str
|
|
description: str = ""
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ProviderField:
|
|
"""One configurable field on a memory provider.
|
|
|
|
A field is stored in exactly one place, decided by ``kind``:
|
|
|
|
* non-secret kinds — persisted to the provider's config via its storage
|
|
backend under ``key``.
|
|
* ``secret`` — persisted to the env store under ``env_key`` and never read
|
|
back out over the API (only an ``is_set`` flag is surfaced).
|
|
|
|
``aliases`` and ``env_fallbacks`` let a field read legacy values written by
|
|
earlier CLI/env setup without re-introducing per-provider code. ``inline``
|
|
marks the curated subset shown in the compact panel; the rest surface only
|
|
in the full-config modal. ``group`` buckets fields within that modal.
|
|
"""
|
|
|
|
key: str
|
|
label: str
|
|
kind: str = KIND_TEXT
|
|
default: str = ""
|
|
description: str = ""
|
|
placeholder: str = ""
|
|
options: tuple[ProviderFieldOption, ...] = ()
|
|
env_key: str | None = None
|
|
aliases: tuple[str, ...] = ()
|
|
env_fallbacks: tuple[str, ...] = ()
|
|
inline: bool = False
|
|
group: str = ""
|
|
# Where a host-block backend stores the field: "host" (per-profile host
|
|
# block) or "root" (config root). Ignored by the flat-json backend.
|
|
scope: str = "host"
|
|
|
|
@property
|
|
def is_secret(self) -> bool:
|
|
return self.kind == KIND_SECRET
|
|
|
|
def allowed_values(self) -> set[str]:
|
|
return {opt.value for opt in self.options}
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class ProviderConfigSchema:
|
|
"""A provider plugin's declared config surface."""
|
|
|
|
name: str
|
|
label: str
|
|
storage: str = STORAGE_FLAT_JSON
|
|
# Optional link to the provider's config docs, shown in the full-config modal.
|
|
docs_url: str = ""
|
|
fields: tuple[ProviderField, ...] = dataclass_field(default_factory=tuple)
|
|
|
|
def inline_fields(self) -> tuple[ProviderField, ...]:
|
|
return tuple(f for f in self.fields if f.inline)
|
|
|
|
|
|
_SCHEMA_CACHE: dict[str, ProviderConfigSchema | None] = {}
|
|
|
|
|
|
def get_provider_config_schema(name: str) -> ProviderConfigSchema | None:
|
|
"""Return the ``CONFIG_SCHEMA`` declared by the provider plugin ``name``.
|
|
|
|
Providers without a ``config_schema.py`` (e.g. ``builtin``) return ``None``
|
|
and simply render no config panel.
|
|
"""
|
|
|
|
if name in _SCHEMA_CACHE:
|
|
return _SCHEMA_CACHE[name]
|
|
|
|
from plugins.memory import find_provider_dir
|
|
|
|
schema: ProviderConfigSchema | None = None
|
|
provider_dir = find_provider_dir(name)
|
|
path = provider_dir / "config_schema.py" if provider_dir else None
|
|
if path is not None and path.is_file():
|
|
try:
|
|
spec = importlib.util.spec_from_file_location(f"_hermes_memory_config_schema.{name}", path)
|
|
module = importlib.util.module_from_spec(spec)
|
|
spec.loader.exec_module(module)
|
|
schema = getattr(module, "CONFIG_SCHEMA", None)
|
|
except Exception:
|
|
_log.exception("failed to load config schema for memory provider %r", name)
|
|
|
|
_SCHEMA_CACHE[name] = schema
|
|
return schema
|