mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
5365f971ef
Signed-off-by: phernandez <paul@basicmachines.co>
10 lines
188 B
Python
10 lines
188 B
Python
"""Test-only stand-in for Hermes's tool registry helpers."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
|
|
|
|
def tool_error(msg: str) -> str:
|
|
return json.dumps({"error": str(msg)})
|