32 lines
496 B
Plaintext
32 lines
496 B
Plaintext
|
|
# Deep Dive - Python Dependencies
|
||
|
|
# Install: pip install -r requirements.txt
|
||
|
|
|
||
|
|
# Core
|
||
|
|
requests>=2.31.0
|
||
|
|
feedparser>=6.0.10
|
||
|
|
beautifulsoup4>=4.12.0
|
||
|
|
pyyaml>=6.0
|
||
|
|
python-dateutil>=2.8.2
|
||
|
|
|
||
|
|
# LLM Client
|
||
|
|
openai>=1.0.0
|
||
|
|
|
||
|
|
# NLP/Embeddings (optional, for semantic scoring)
|
||
|
|
sentence-transformers>=2.2.2
|
||
|
|
torch>=2.0.0
|
||
|
|
|
||
|
|
# TTS Options
|
||
|
|
# Piper: Install via system package
|
||
|
|
# Coqui TTS: TTS>=0.22.0
|
||
|
|
|
||
|
|
# Scheduling
|
||
|
|
schedule>=1.2.0
|
||
|
|
pytz>=2023.3
|
||
|
|
|
||
|
|
# Telegram
|
||
|
|
python-telegram-bot>=20.0
|
||
|
|
|
||
|
|
# Utilities
|
||
|
|
tqdm>=4.65.0
|
||
|
|
rich>=13.0.0
|