feat(node2): Complete NODE2 setup - guardian, agents, swapper models

- Node-guardian running on MacBook and updating metrics
- NODE2 agents (Atlas, Greeter, Oracle, Builder Bot) assigned to node-2-macbook-m4max
- Swapper models displaying correctly (8 models)
- DAGI Router agents showing with correct status (3 active, 1 stale)
- Router health check using node_cache for remote nodes
This commit is contained in:
Apple
2025-12-02 07:07:58 -08:00
parent 240ceba2e8
commit fca48b3eb0
241 changed files with 2316 additions and 63 deletions

View File

@@ -24,3 +24,4 @@ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7007"]

View File

@@ -334,3 +334,4 @@ Internal DAARION service

View File

@@ -60,3 +60,4 @@ logging:

View File

@@ -195,3 +195,4 @@ if __name__ == "__main__":

View File

@@ -102,3 +102,4 @@ class UsageTracker:

View File

@@ -61,3 +61,4 @@ class UsageLog(BaseModel):

View File

@@ -10,3 +10,4 @@ __all__ = ['BaseProvider', 'OpenAIProvider', 'DeepSeekProvider', 'LocalProvider'

View File

@@ -36,3 +36,4 @@ class BaseProvider(Protocol):

View File

@@ -75,3 +75,4 @@ class DeepSeekProvider:

View File

@@ -97,3 +97,4 @@ class LocalProvider:

View File

@@ -75,3 +75,4 @@ class OpenAIProvider:

View File

@@ -10,3 +10,4 @@ python-multipart==0.0.6

View File

@@ -75,3 +75,4 @@ class ModelRouter: