- Updated requirements.txt to uncomment and ensure the installation of `python-telegram-bot` and `discord.py` packages. - Enhanced the gateway run script to load environment variables from a specified path, improving configuration management and flexibility for different environments.
44 lines
861 B
Plaintext
44 lines
861 B
Plaintext
# Core dependencies
|
|
openai
|
|
python-dotenv
|
|
fire
|
|
httpx
|
|
rich
|
|
tenacity
|
|
prompt_toolkit
|
|
|
|
# Web tools
|
|
firecrawl-py
|
|
|
|
# Image generation
|
|
fal-client
|
|
|
|
# mini-swe-agent dependencies (for terminal tool)
|
|
# Note: Install mini-swe-agent itself with: pip install -e ./mini-swe-agent
|
|
pyyaml
|
|
requests
|
|
jinja2
|
|
pydantic>=2.0
|
|
litellm>=1.75.5
|
|
typer
|
|
platformdirs
|
|
|
|
# Optional: For Docker backend (recommended)
|
|
# Requires Docker installed and user in 'docker' group
|
|
|
|
# Optional: For Modal backend (cloud execution)
|
|
# modal
|
|
# boto3
|
|
|
|
# Optional: For cron expression parsing (cronjob scheduling)
|
|
croniter
|
|
|
|
# Optional: For messaging platform integrations (gateway)
|
|
# Telegram: pip install python-telegram-bot
|
|
python-telegram-bot>=20.0
|
|
|
|
# Discord: pip install discord.py
|
|
discord.py>=2.0
|
|
|
|
# WhatsApp: Requires Node.js bridge (see docs/messaging.md)
|
|
# aiohttp # For WhatsApp bridge communication |