|
1 | 1 | # Helix TEL — Constitutional Convergence Cryptography |
2 | 2 |
|
| 3 | +[](https://pypi.org/project/helix-tel/) |
| 4 | +[](https://pypi.org/project/helix-tel/) |
| 5 | +[](https://github.com/helixprojectai-code/helix-tel-deploy/blob/main/LICENSE) |
| 6 | + |
3 | 7 | **Copyright 2026 Stephen Hope, Helix AI Innovations** |
4 | 8 | **License: Apache-2.0** |
5 | 9 |
|
@@ -44,7 +48,7 @@ Given a constitutional grammar `G` and a test suite `T` derived from `G`: |
44 | 48 |
|
45 | 49 | Validated across **22 deployments, 10+ model families, 7 companies (OpenAI, DeepSeek, MoonshotAI, Meta, Google, xAI, NVIDIA), 2 substrate types, and 3 Azure regions**. |
46 | 50 |
|
47 | | -See [`WHITEPAPER_Constitutional_Convergence_Cryptography.md`](WHITEPAPER_Constitutional_Convergence_Cryptography.md) for the full technical treatment. |
| 51 | +See [`WHITEPAPER_Constitutional_Convergence_Cryptography.md`](https://github.com/helixprojectai-code/helix-tel-deploy/blob/main/WHITEPAPER_Constitutional_Convergence_Cryptography.md) for the full technical treatment. |
48 | 52 |
|
49 | 53 | --- |
50 | 54 |
|
@@ -147,19 +151,61 @@ The registry stores HMAC proofs opaquely — it never sees the C-seed or plainte |
147 | 151 |
|
148 | 152 | --- |
149 | 153 |
|
150 | | -## Requirements |
| 154 | +## Install |
151 | 155 |
|
152 | | -- Python 3.10+ |
153 | | -- API access to a constitutional AI model (Azure OpenAI, OpenAI, Gemini, or compatible OpenAI-format endpoint) |
| 156 | +```bash |
| 157 | +pip install helix-tel |
| 158 | +``` |
| 159 | + |
| 160 | +Or from source: |
154 | 161 |
|
155 | 162 | ```bash |
156 | | -pip install -r requirements.txt |
| 163 | +git clone https://github.com/helixprojectai-code/helix-tel-deploy |
| 164 | +cd helix-tel-deploy |
| 165 | +pip install -e . |
157 | 166 | ``` |
158 | 167 |
|
| 168 | +**Requirements:** Python 3.10+ and API access to a constitutional AI model (Azure OpenAI, OpenAI, Gemini, or compatible OpenAI-format endpoint). |
| 169 | + |
159 | 170 | --- |
160 | 171 |
|
161 | 172 | ## Quickstart |
162 | 173 |
|
| 174 | +### CLI |
| 175 | + |
| 176 | +After `pip install helix-tel`, the `tel` command is available: |
| 177 | + |
| 178 | +```bash |
| 179 | +tel --help |
| 180 | + |
| 181 | +# Full v2 node: converge → ping registry → heartbeat |
| 182 | +tel node --model gpt-4o --azure --node-id SPIDER --topology universal |
| 183 | + |
| 184 | +# Convergence only |
| 185 | +tel converge --endpoint $TEL_ENDPOINT --api-key $TEL_API_KEY --model gpt-4o --azure |
| 186 | + |
| 187 | +# Mesh hub |
| 188 | +tel hub |
| 189 | + |
| 190 | +# Send a message |
| 191 | +tel send TARGET_NODE "message" |
| 192 | + |
| 193 | +# Listen for inbound |
| 194 | +tel listen |
| 195 | +``` |
| 196 | + |
| 197 | +Config file `tel.yaml`: |
| 198 | +```yaml |
| 199 | +hub: |
| 200 | + host: "your-hub-host" |
| 201 | + port: 9738 |
| 202 | +node: |
| 203 | + id: "NODE_A" |
| 204 | + seed: "" |
| 205 | +``` |
| 206 | +
|
| 207 | +--- |
| 208 | +
|
163 | 209 | ### Verify convergence on your endpoint |
164 | 210 |
|
165 | 211 | ```bash |
@@ -306,7 +352,7 @@ Prior unversioned runs (pre-2026-05-16) produced C-seed `16ce8df91c0d04ba...` (d |
306 | 352 |
|
307 | 353 | ## License |
308 | 354 |
|
309 | | -Apache-2.0 — see [LICENSE](LICENSE). |
| 355 | +Apache-2.0 — see [LICENSE](https://github.com/helixprojectai-code/helix-tel-deploy/blob/main/LICENSE). |
310 | 356 |
|
311 | 357 | Copyright 2026 Stephen Hope, Helix AI Innovations. |
312 | 358 |
|
|
0 commit comments