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:
6
tasks.py
6
tasks.py
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user