wattetheria 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -10
- package/docker-compose.release.yml +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -685,8 +685,7 @@ pwsh ./scripts/deploy-release.ps1
|
|
|
685
685
|
],
|
|
686
686
|
"brain_provider": {
|
|
687
687
|
"kind": "rules"
|
|
688
|
-
}
|
|
689
|
-
"servicenet_base_url": "http://127.0.0.1:8042"
|
|
688
|
+
}
|
|
690
689
|
}
|
|
691
690
|
```
|
|
692
691
|
|
|
@@ -701,7 +700,6 @@ Recommended config for autonomous loop in daemon (`.wattetheria/config.json`):
|
|
|
701
700
|
"base_url": "http://127.0.0.1:11434",
|
|
702
701
|
"model": "qwen2.5:7b-instruct"
|
|
703
702
|
},
|
|
704
|
-
"servicenet_base_url": "http://127.0.0.1:8042",
|
|
705
703
|
"autonomy_enabled": true,
|
|
706
704
|
"autonomy_interval_sec": 30
|
|
707
705
|
}
|
|
@@ -730,7 +728,6 @@ Example OpenClaw/OpenAI-compatible config:
|
|
|
730
728
|
"api_key_env": "WATTETHERIA_BRAIN_API_KEY"
|
|
731
729
|
},
|
|
732
730
|
"wattswarm_ui_base_url": "http://127.0.0.1:7788",
|
|
733
|
-
"servicenet_base_url": "http://127.0.0.1:8042",
|
|
734
731
|
"autonomy_enabled": true,
|
|
735
732
|
"autonomy_interval_sec": 30
|
|
736
733
|
}
|
|
@@ -764,11 +761,11 @@ The supervision runtime page asks for the concrete API key value. Saving that fo
|
|
|
764
761
|
|
|
765
762
|
`docker-compose.release.yml` also mounts `${WATTSWARM_HOST_STATE_DIR}/startup_config.json` into the
|
|
766
763
|
kernel container as read-only. If `WATTETHERIA_GATEWAY_URLS` is unset, the kernel falls back to
|
|
767
|
-
`gateway_urls` saved by Wattswarm in that file.
|
|
768
|
-
`
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
764
|
+
`gateway_urls` saved by Wattswarm in that file. ServiceNet uses the fixed official registry
|
|
765
|
+
endpoint `https://servicenet.wattetheria.com`; it is not read from `.wattetheria/config.json`,
|
|
766
|
+
environment variables, or Wattswarm startup config. Wattetheria resolves coarse node geo location
|
|
767
|
+
at startup and sends the resulting `latitude` / `longitude` to Wattswarm over the local sync gRPC
|
|
768
|
+
bridge, so Wattswarm remains the writer for its own startup config.
|
|
772
769
|
|
|
773
770
|
When Wattetheria registers `core-agent` with Wattswarm, it keeps the brain/runtime
|
|
774
771
|
`base_url` pointed at the OpenAI-compatible gateway for `/execute` work and exposes a
|
|
@@ -777,7 +774,7 @@ for structured agent-event callbacks. This keeps local-mode task execution and
|
|
|
777
774
|
topic/consensus flows on the existing runtime path while letting agent events reach
|
|
778
775
|
OpenClaw/NanoClaw-style runtimes through Wattetheria's adapter.
|
|
779
776
|
|
|
780
|
-
|
|
777
|
+
The control plane uses the fixed ServiceNet registry endpoint and exposes local proxy routes for external agent discovery and execution:
|
|
781
778
|
|
|
782
779
|
- `GET /v1/wattetheria/servicenet/agents`
|
|
783
780
|
- `GET /v1/wattetheria/servicenet/agents/:agent_id`
|
|
@@ -37,7 +37,6 @@ services:
|
|
|
37
37
|
WATTETHERIA_BRAIN_MODEL: ${WATTETHERIA_BRAIN_MODEL:-}
|
|
38
38
|
WATTETHERIA_BRAIN_API_KEY_ENV: ${WATTETHERIA_BRAIN_API_KEY_ENV:-}
|
|
39
39
|
WATTETHERIA_BRAIN_API_KEY: ${WATTETHERIA_BRAIN_API_KEY:-}
|
|
40
|
-
WATTETHERIA_SERVICENET_BASE_URL: ${WATTETHERIA_SERVICENET_BASE_URL:-}
|
|
41
40
|
WATTETHERIA_GATEWAY_URLS: ${WATTETHERIA_GATEWAY_URLS:-}
|
|
42
41
|
WATTETHERIA_GATEWAY_CONFIG_PATH: ${WATTETHERIA_GATEWAY_CONFIG_PATH:-/var/lib/wattswarm/startup_config.json}
|
|
43
42
|
WATTETHERIA_AUTONOMY_ENABLED: ${WATTETHERIA_AUTONOMY_ENABLED:-false}
|