@@ -100,7 +100,7 @@ The agent autonomously:
100100│ └─────────────────────────────────────────────────────────────────┘ │
101101│ │
102102│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
103- │ │ Qdrant │ │ Redis │ │ Groq │ │
103+ │ │ Qdrant │ │ In-Memory │ │ Groq │ │
104104│ │ Vector DB │ │ Cache │ │ LLM API │ │
105105│ └─────────────┘ └─────────────┘ └─────────────┘ │
106106│ │
@@ -194,11 +194,8 @@ The agent autonomously:
194194│ │ │ │ Port 8000 │ │ Polling │ │ Port 6333 │ │ │ │
195195│ │ │ └──────┬──────┘ └──────┬──────┘ └─────────────┘ │ │ │
196196│ │ │ │ │ │ │ │
197- │ │ │ │ Internal │ ┌─────────────┐ │ │ │
198- │ │ │ │◄── Network ──┤ │ Redis │ │ │ │
199- │ │ │ │ │ │ (Cache) │ │ │ │
200- │ │ │ │ │ │ Port 6379 │ │ │ │
201- │ │ │ │ │ └─────────────┘ │ │ │
197+ │ │ │ │ Internal │ │ │ │
198+ │ │ │ │◄── Network ──┤ │ │ │
202199│ │ │ │ │ │ │ │
203200│ │ └─────────┼────────────────┼──────────────────────────────┘ │ │
204201│ │ │ │ │ │
@@ -298,7 +295,7 @@ cp .env.example .env
298295
299296``` bash
300297# Start infrastructure
301- docker-compose up -d qdrant redis
298+ docker-compose up -d qdrant
302299
303300# Start API server
304301uvicorn src.api.main:app --reload --port 8000
@@ -389,7 +386,6 @@ uv run mypy src/
389386| ` GROQ_API_KEY ` | Yes | Groq API key (free tier) |
390387| ` TELEGRAM_BOT_TOKEN ` | Yes | Telegram bot token |
391388| ` QDRANT_URL ` | No | Qdrant URL (default: localhost:6333) |
392- | ` REDIS_URL ` | No | Redis URL (default: localhost:6379) |
393389| ` AZURE_OPENAI_* ` | No | Azure OpenAI credentials (optional) |
394390| ` LANGCHAIN_API_KEY ` | No | LangSmith tracing (optional) |
395391
@@ -451,7 +447,7 @@ terraform apply
451447| ** Orchestration** | LangGraph, LangChain |
452448| ** RAG** | Qdrant, BM25, Hybrid Search, Reranking |
453449| ** Data Sources** | Yahoo Finance, SEC EDGAR, Reddit, DuckDuckGo |
454- | ** Backend** | FastAPI, Pydantic, Redis |
450+ | ** Backend** | FastAPI, Pydantic |
455451| ** Bot** | python-telegram-bot |
456452| ** Infrastructure** | Docker, Azure Container Apps, Terraform |
457453| ** CI/CD** | GitHub Actions |
0 commit comments