fix: gitea_client import path — point to sovereign-orchestration/src

The hermes-agent tools/__init__.py pulls in firecrawl which isn't installed.
Direct import from sovereign-orchestration's zero-dependency client works.

TODO: gitea_client should be pip-installable or vendored, not a cross-repo path reach.
This commit is contained in:
Alexander Whitestone
2026-03-25 19:05:29 -04:00
parent 2bbaf8c7f3
commit ef4c94b9b5

View File

@@ -3,12 +3,12 @@
import sys
from pathlib import Path
# Gitea client lives in hermes-agent
sys.path.insert(0, str(Path.home() / ".hermes" / "hermes-agent"))
# Gitea client lives in sovereign-orchestration
sys.path.insert(0, str(Path.home() / ".timmy" / "sovereign-orchestration" / "src"))
from orchestration import huey
from huey import crontab
from tools.gitea_client import GiteaClient
from gitea_client import GiteaClient
REPOS = [
"Timmy_Foundation/the-nexus",