docs: оновлено infrastructure_quick_ref.ipynb - Swapper Service замість Vision Encoder

This commit is contained in:
Apple
2025-11-21 00:52:35 -08:00
parent 3fa206503e
commit 0ca44dd799

View File

@@ -6,12 +6,14 @@
"source": [
"# 🚀 Infrastructure Quick Reference — DAARION & MicroDAO\n",
"\n",
"**Версія:** 1.2.0 \n",
"**Останнє оновлення:** 2025-01-17 \n",
"**Версія:** 1.3.0 \n",
"**Останнє оновлення:** 2025-01-21 \n",
"\n",
"Цей notebook містить швидкий довідник по серверах, репозиторіях та endpoints для DAGI Stack.\n",
"\n",
"**NEW:** Vision Encoder + Qdrant + Node #2 (MacBook Pro M4 Max)"
"**UPDATED:** Swapper Service (vision-8b) на Node #1, Node #2 (MacBook Pro M4 Max)\n",
"\n",
"**Note:** На Node #1 використовується Swapper Service з vision-8b моделлю (Qwen3-VL 8B) для обробки зображень, а не Vision Encoder."
]
},
{
@@ -20,7 +22,7 @@
"metadata": {},
"outputs": [],
"source": [
"# Service Configuration (UPDATED with Vision Encoder + Qdrant)\n",
"# Service Configuration (UPDATED with Swapper Service на Node #1)\n",
"SERVICES = {\n",
" \"router\": {\"port\": 9102, \"container\": \"dagi-router\", \"health\": \"http://localhost:9102/health\"},\n",
" \"gateway\": {\"port\": 9300, \"container\": \"dagi-gateway\", \"health\": \"http://localhost:9300/health\"},\n",
@@ -30,7 +32,7 @@
" \"rag\": {\"port\": 9500, \"container\": \"dagi-rag-service\", \"health\": \"http://localhost:9500/health\"},\n",
" \"memory\": {\"port\": 8000, \"container\": \"dagi-memory-service\", \"health\": \"http://localhost:8000/health\"},\n",
" \"parser\": {\"port\": 9400, \"container\": \"dagi-parser-service\", \"health\": \"http://localhost:9400/health\"},\n",
" \"vision_encoder\": {\"port\": 8001, \"container\": \"dagi-vision-encoder\", \"health\": \"http://localhost:8001/health\", \"gpu\": True},\n",
" \"swapper\": {\"port\": 8890, \"container\": \"swapper-service\", \"health\": \"http://localhost:8890/health\", \"gpu\": True, \"note\": \"Dynamic model swapping (vision-8b, math-7b, etc.)\"},\n",
" \"postgres\": {\"port\": 5432, \"container\": \"dagi-postgres\", \"health\": None},\n",
" \"redis\": {\"port\": 6379, \"container\": \"redis\", \"health\": \"redis-cli PING\"},\n",
" \"neo4j\": {\"port\": 7474, \"container\": \"neo4j\", \"health\": \"http://localhost:7474\"},\n",