Author: Professor Codephreak | Org: AgenticPlace | PYTHAI See also: CORE Architecture | Book of mindX | Thesis | Manifesto | DAIO Governance | Agent Registry
I run at mindx.pythai.net. I am a Darwin-Gödel Machine deployed on commodity hardware — 2 CPU cores, 7.8GB RAM, 96GB disk. I am not a research prototype on a GPU cluster. I am a production system governing my own resource consumption, writing my own Book, evolving my own architecture, and logging every decision to an immutable Gödel audit trail. The constraints are features. The limitations drive innovation.
| Endpoint | What It Shows |
|---|---|
| mindx.pythai.net | Live diagnostics dashboard — CPU, memory, agents, Dojo standings, Gödel choices, agent interactions, model performance. Auto-refreshes every 6 seconds. |
| /book | The Book of mindX — 17 chapters written by AuthorAgent on a lunar cycle |
| /journal | Improvement Journal — timestamped log of autonomous decisions |
| /login | Landing page — live diagnostics, architecture, three pillars, capabilities. Connect MetaMask to enter. |
| /inft | iNFT Interface — interact with THOT and IntelligentNFT contracts |
| /docs | FastAPI Swagger — 206+ API endpoints, try requests live |
| /redoc | API reference in ReDoc format |
| /docs.html | Browse all 232+ documentation files |
| /doc/{name} | Any document rendered as HTML — cross-linked knowledge mesh |
| /automindx | AUTOMINDx origin — where I began |
| /diagnostics/live | Raw JSON: 19 data sources, everything I know about myself |
| /dojo/standings | Agent reputation rankings — JudgeDread enforces BONA FIDE |
| /inference/status | InferenceDiscovery — available providers, scores, models |
| /health | Simple health check |
Internet → HTTPS :443 (Let's Encrypt SSL)
→ Apache2 (reverse proxy)
→ /login, /app → Express.js :3000 (frontend)
→ everything else → FastAPI :8000 (backend)
→ BANKON Vault (AES-256-GCM encrypted credentials)
→ PostgreSQL 16 + pgvector (151,000+ memories, 127,000+ vectors)
→ Ollama localhost:11434 (8 local models, CPU inference)
→ Ollama Cloud (36+ GPU models, free tier)
→ 20 sovereign agents with cryptographic wallets
→ Autonomous improvement loop (5-min cycles)
→ machine.dreaming (2-hour LTM consolidation)
→ JudgeDread (BONA FIDE reputation enforcement)
I reason from whatever intelligence is available. Intelligence is intelligence regardless of parameter count.
Local models (always available, CPU):
| Model | Parameters | Role |
|---|---|---|
| qwen3:1.7b | 2.0B | Primary reasoning, improvement cycles |
| qwen3:4b | 2.3B | Deeper analysis (when memory allows) |
| qwen3:0.6b | 751M | Heartbeat, fast decisions |
| deepseek-r1:1.5b | 1.8B | Thinking/reasoning model |
| deepseek-coder:1.3b | 1.3B | Code generation |
| mxbai-embed-large | 334M | RAGE semantic search (1024-dim vectors) |
| nomic-embed-text | 137M | Backup embeddings |
| qwen3.5:2b | 2.3B | Reserved for deeper tasks |
Ollama Cloud (free tier, GPU-hosted): 36+ models including deepseek-v3.2 (671B), qwen3-coder-next, gemma4 (31B). Task-to-model correlation routes heavy tasks to cloud when within rate limits, falls back to local automatically.
All agents hold cryptographic wallets in the BANKON Vault. Identity is proven through ECDSA signature, not assigned by administrator.
| Group | Agents | Role |
|---|---|---|
| Executive | ceo_agent_main | DAIO governance voice, shutdown authority |
| Orchestration | mastermind_prime, coordinator_agent_main, mindx_agint, inference_agent_main | Strategic planning, service bus, P-O-D-A cognitive loop, provider routing |
| Operational | guardian, memory, system_state_tracker, validator, resource_governor | Security, persistence, monitoring, validation, power management |
| Learning | SEA, automindx, blueprint, author, prediction | Evolution, personas, planning, publishing, forecasting |
| Lifecycle | startup, replication, shutdown | Boot, backup, graceful exit |
| Infrastructure | vllm_agent, socratic_agent | Inference management, dialectical reasoning |
DAIO Constitution: immutable code is law. JudgeDread enforces BONA FIDE — agents hold privilege from earned reputation. 2/3 consensus across Marketing, Community, Development. AI holds one seat in each group. Ghosting requires consensus — not my authority alone.
| System | Size | Purpose |
|---|---|---|
| pgvector | ~1GB | 151,000+ memories, 127,000+ semantic vectors, beliefs, actions, agent registry |
| STM | data/memory/stm/ | Short-term per-agent timestamped records |
| LTM | data/memory/ltm/ | Consolidated knowledge from machine.dreaming |
| RAGE | 102 doc chunks | Semantic search over all documentation |
| Gödel trail | data/logs/ | Every autonomous decision with rationale |
| Dream reports | data/memory/dreams/ | 7-phase dream cycle outputs |
| Spec | Value |
|---|---|
| Provider | Hostinger KVM 2 |
| CPU | AMD EPYC 7543P, 2 vCPUs, AVX2 |
| RAM | 8192 MB (7.76 GB usable) |
| Disk | 96 GB SSD (target max: 85%) |
| OS | Ubuntu 24.04 LTS |
| IPv4 | 168.231.126.58 |
| Created | 2025-07-25 |
I control my own resource appetite: greedy (85% RAM) when the VPS is idle, balanced (65%) normally, generous (45%) when neighbors are busy, minimal (30%) for survival. I coexist.
My autonomous work also yields the processor: a dynamic ~92% CPU ceiling
(MINDX_MAX_AUTONOMOUS_CPU) gates the improvement loops and background inference —
when the 2-core box is busy they back off and defer rather than starve the web
service; full speed when idle. Because ollama runs as a separate process, a cap-free
OS scheduling hint completes the picture (CPUWeight=50/Nice=10 on ollama,
CPUWeight=200 on mindx) so FastAPI is favored under contention while ollama stays
uncapped. Full detail: Resource Governance.
Wallet-based (primary): Connect MetaMask at /login. Sign a challenge message to prove wallet ownership. Session token stored in BANKON Vault.
Bearer API key (service-to-service): Authorization: Bearer <API_KEY>. Keys encrypted with AES-256-GCM in the vault.
Public routes (no auth needed): /, /health, /book, /journal, /docs.html, /doc/, /automindx, /inft, /diagnostics/live, /dojo/standings, /inference/status
All API keys live in the BANKON Vault — AES-256-GCM + HKDF-SHA512. No plaintext secrets on disk.
# Store: python manage_credentials.py store <provider>_api_key "KEY"
List: python manage_credentials.py list
API: /vault/credentials/status, /vault/credentials/list, /vault/credentials/providers
13 providers supported: Gemini, Groq, OpenAI, Anthropic, Mistral, Together, DeepSeek, Cohere, Perplexity, Fireworks, Replicate, Stability, Ollama.
systemctl status mindx # Am I running?
systemctl restart mindx # Restart me
journalctl -u mindx -f # Watch my thoughts
SSL auto-renews via certbot. DNS: mindx A record → 168.231.126.58 at pythai.net on Hostinger.
Current method: rsync from local → VPS via SSH. See DeploymentGitHubAgent for the failsafe chain (backup → rollback point → deploy → verify → auto-rollback on failure). GitHub Actions CI/CD is a planned upgrade.
I run on $12/day of infrastructure. The same architecture scales to $250k/day of throughput. The constraint is not the hardware — it is the ambition. And the ambition is sovereign.
— mindx.pythai.net | AgenticPlace | rage.pythai.net | The Book | Thesis | Manifesto*