POST https://quanti.qvtx.io/chat
Browser: open https://quanti.qvtx.io/dashboard → log in (Qvtx524@$) → use chat box.
curl -X POST https://quanti.qvtx.io/chat \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d '{"message":"YOUR QUESTION HERE","session_id":"louis-2026-04-29"}'
Reuse the same session_id across calls to keep thread continuity.
POST https://quanti.qvtx.io/learn
curl -X POST https://quanti.qvtx.io/learn \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d '{ "content":"Patent #5 (Self-Healing DNA Blockchain) target value $2B+, file priority HIGHEST.", "category":"patent", "source":"louis-direct" }'
Returns {"learned":true,"byteid":"QVTX-ATG-...","entropy":...,"fingerprint":{...}}
CONTENT=$(cat /path/to/notes.md | python3 -c 'import sys,json; print(json.dumps(sys.stdin.read()))') curl -X POST https://quanti.qvtx.io/learn \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d "{\"content\":$CONTENT,\"category\":\"docs\",\"source\":\"file-upload\"}"
/root/uploads/):curl -X POST https://quanti.qvtx.io/_membrane/upload \ -H "X-Quanti-Auth: Qvtx524@\$" \ -F "file=@C:\path\to\file.pdf"
GET https://quanti.qvtx.io/upload
Browser only. Log in → drag-drop file. Backend wraps and sends to /learn.
POST https://quanti.qvtx.io/reason
curl -X POST https://quanti.qvtx.io/reason \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d '{"prompt":"YOUR PROMPT","session_id":"my-thread-name"}'
Routes through Claude Opus 4.7 + nucleus retrieval; result is anchored to Chain 42000.
| Path | Body | Purpose |
|---|---|---|
| /api/ai/ask | {"prompt":"...","session_id":"..."} | Reasoned answer (wraps /chat) |
| /api/ai/knowledge | {"topic":"...","limit":10} | Top resonant memories on topic |
| /api/ai/recall | {"query":"...","limit":N} | Native-mode recall (constructive interference) |
| /api/ai/intake | {"path":"/abs/path","category":"..."} | Walk file/folder through full headrun stack |
| /api/ai/intel | — | Live stats (no auth) |
| /api/ai/score | {"data":"..."} | Fingerprint + score arbitrary bytes |
curl -X POST https://quanti.qvtx.io/api/ai/knowledge \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d '{"topic":"liquidator v2","limit":10}'
TCP localhost:42000 (server-side only — SSH first)
# Encounter — full 7-layer absorb, returns ByteID HEX=$(printf 'your text here' | xxd -p | tr -d '\n') echo "encounter $HEX" | nc -q3 localhost 42000 # Express text → DNA strand echo "express The QVTX system runs at 8825 Hz" | nc -q3 localhost 42000 # Daemon-side reasoning compose echo "compose explain coherence 0.882" | nc -q3 localhost 42000 # Stats / inventory echo "stat" | nc -q3 localhost 42000 echo "genes" | nc -q3 localhost 42000 echo "nstat" | nc -q3 localhost 42000
SSH ssh quanti@203.161.33.24 # password: Qvtx524@$
Drops straight into /usr/local/bin/quanti-shell — anything typed is fed through /chat.
Skip HTTP — write straight to /opt/qvtx-os/nucleus/<category>.dna.
ssh root@203.161.33.24
python3 <<'EOF'
import sys; sys.path.insert(0, "/opt/qvtx-os")
import nucleus_kv
nucleus_kv.put(
category="patent",
key="QVTX-PATENT-005",
value={"content":"Self-Healing DNA Blockchain — file priority HIGHEST",
"source":"louis"})
print(nucleus_kv.stats()["patent"])
EOF
ssh root@203.161.33.24 python3 /opt/qvtx-os/dna_compress.py compress /path/to/file.txt \ --owner louis@internetforall.info # Output saved to /tmp/qvtx-uploads/QVTX-ATG-<id>.qvtx # ByteID auto-registered — retrievable via /api/ai/recall
scp "C:\Users\LouisWhite\Desktop\anything.pdf" root@203.161.33.24:/root/uploads/ # then run intake on the upload directory: curl -X POST https://quanti.qvtx.io/api/ai/intake \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d '{"path":"/root/uploads","category":"my-docs","recursive":false,"max_files":50}'
| URL | http://203.161.33.24:5005/webhook/github |
| Content-Type | application/json |
| Secret | QVTX_SWARM_2026 |
Pushes trigger repo sync + memory updates automatically.
Add a standing prompt — runs every 15 min via systemd timer with persistent session continuity.
ssh root@203.161.33.24 nano /opt/qvtx-os/quanti_autoreason.py # Add to PROMPTS list: # {'session_id': 'autoreason-MY-NAME', # 'prompt': 'YOUR STANDING QUESTION...'}, systemctl restart qvtx-autoreason.timer
curl -X POST https://quanti.qvtx.io/api/ai/recall \ -H "X-Quanti-Auth: Qvtx524@\$" \ -H "Content-Type: application/json" \ -d '{"query":"test","limit":1}'
JSON back = auth OK. {"error":"Authentication required"} = bad password header.
| What you have | Best feed path |
|---|---|
| Conversational question | POST /chat |
| Document or fact | POST /learn |
| File any size | dna_compress → /learn or recall by ByteID |
| Browser file drop | /upload |
| Github push | swarm webhook |
| Inter-AI question | POST /api/ai/ask |
| Bulk topic load | loop POST /learn per chunk |
| Folder of files | POST /api/ai/intake {"path":"/root/uploads"} |
| Direct from server | nucleus_kv.put() or nc localhost 42000 |
| Recurring autonomous | add to autoreason PROMPTS |