Every PLUGIN-COMPAT __getattr__ now calls hermes_cli.plugin_compat.warn_once(facade, name, target) before
resolving, emitting a HermesPluginCompatWarning (FutureWarning) once per process per name: old path, new
path, removal target. Importing a facade for its live API stays silent; only resolving a moved name warns.
COMPAT_MANIFEST.md documents the warning and how to silence it during migration.
Verified the runtime never routes through a pointer: every entry point (run_agent, cli, hermes_cli.main,
gateway.run, tui_gateway.server, web_server, model_tools + tool discovery, hermes_state, cron.scheduler,
browser_tool, mcp_tool, kanban, auth) imports clean and `hermes doctor` runs end to end with the warning
promoted to an error.
Also restores the check_compat_pointers CI step to .github/workflows/lint.yml, which a0be177aac dropped
when the compat layer was regenerated (the lint script itself was present; the workflow step was not).
hermes_cli/plugin_compat.py, tests/test_plugin_compat_warning.py and the two-line insert per facade are
part of the compat layer and go away with it.
61 lines
2.4 KiB
Python
61 lines
2.4 KiB
Python
"""Transcription Provider ABC — pluggable speech-to-text backends.
|
|
|
|
Providers register via :meth:`PluginContext.register_transcription_provider`; the one named
|
|
by ``stt.provider`` services :func:`tools.transcription_tools.transcribe_audio` **when that
|
|
name is not a built-in** (built-ins always win; ``HERMES_LOCAL_STT_COMMAND`` stays on the
|
|
built-in ``local_command`` path). :meth:`TranscriptionProvider.transcribe` envelope:
|
|
``success`` bool, ``transcript`` str (empty on failure), ``provider`` str, ``error`` str
|
|
(only when success=False).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import abc
|
|
from typing import Any, Dict, Optional
|
|
|
|
from agent.provider_base import CatalogProviderBase
|
|
|
|
|
|
class TranscriptionProvider(CatalogProviderBase):
|
|
"""Abstract base class for a speech-to-text backend.
|
|
|
|
Subclasses must implement :attr:`name` (rejected at registration if it
|
|
collides with a built-in STT name) and :meth:`transcribe`.
|
|
"""
|
|
|
|
@abc.abstractmethod
|
|
def transcribe(
|
|
self, file_path: str, *, model: Optional[str] = None, language: Optional[str] = None, **extra: Any,
|
|
) -> Dict[str, Any]:
|
|
"""Transcribe ``file_path`` (existence + size already validated) into the module envelope.
|
|
|
|
Must NOT raise — convert exceptions to the error envelope. ``model`` None →
|
|
:meth:`default_model`; ``language`` is an optional BCP-47 hint; ``extra`` may carry
|
|
``prompt`` (from ``stt.prompt`` or a ``pre_transcription`` hook) as a vocabulary hint;
|
|
unknown keys must be ignored.
|
|
"""
|
|
|
|
|
|
# ---- BEGIN PLUGIN-COMPAT (revert-scheduled; see COMPAT_MANIFEST.md) ----
|
|
# Names external plugins imported from this module before the Sep 2026 decomposition.
|
|
# Internal code MUST NOT use these (scripts/check_compat_pointers.py fails CI if it does).
|
|
# The whole block is removed by reverting the commit that added it.
|
|
from typing import List # noqa: F401,E402
|
|
import logging # noqa: F401,E402
|
|
|
|
|
|
_PLUGIN_COMPAT_LAZY = {
|
|
'logger': ('agent.i18n', 'logger'),
|
|
}
|
|
|
|
|
|
def __getattr__(name): # PEP 562 — lazy so no import cycles
|
|
target = _PLUGIN_COMPAT_LAZY.get(name)
|
|
if target is None:
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
|
import importlib
|
|
from hermes_cli.plugin_compat import warn_once
|
|
warn_once(__name__, name, *target)
|
|
return getattr(importlib.import_module(target[0]), target[1])
|
|
# ---- END PLUGIN-COMPAT ----
|