-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements.txt
More file actions
48 lines (35 loc) · 1.24 KB
/
requirements.txt
File metadata and controls
48 lines (35 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Agent42 — Python dependencies
# Web framework + real-time
fastapi>=0.115.0
uvicorn[standard]>=0.30.0
websockets>=12.0
python-multipart>=0.0.9
# AI model clients (OpenAI-compatible)
openai>=1.40.0
# Auth
python-jose[cryptography]>=3.3.0
bcrypt>=4.0.0
# Environment
python-dotenv>=1.0.0
# Async file I/O
aiofiles>=23.0.0
# HTTP client (Phase 4: web search, web fetch)
httpx>=0.27.0
# SSH remote shell
asyncssh>=2.14.0
# Image processing (vision analysis)
Pillow>=10.0.0
# Browser automation (app testing, screenshots)
playwright>=1.40.0
# PDF parsing (knowledge base / RAG)
pypdf>=3.0.0
# Recursive Language Models (MIT CSAIL — long-context processing)
rlms>=0.1.0
# ── Optional memory backends (install as needed) ───────────────────────
# Qdrant: pip install qdrant-client (vector DB for semantic search)
# Redis: pip install redis[hiredis] (session cache + embedding cache)
# ── Optional channel dependencies (install as needed) ──────────────────
# Discord: pip install discord.py
# Slack: pip install slack-sdk aiohttp
# Telegram: pip install python-telegram-bot
# Email: (uses stdlib imaplib/smtplib — no extra deps)