- Added `prompt_toolkit` as a direct dependency for interactive CLI support. - Updated `modal` optional dependency to require `swe-rex[modal]>=1.4.0` for improved cloud execution capabilities. - Enhanced `messaging` optional dependencies to include `aiohttp>=3.9.0` for WhatsApp bridge communication. - Refined installation scripts to check for Python version requirements, emphasizing the need for Python 3.11+ for RL training tools. - Improved setup scripts to ensure proper installation of submodules and dependencies, enhancing user experience during setup.
44 lines
836 B
Plaintext
44 lines
836 B
Plaintext
# Core dependencies
|
|
openai
|
|
python-dotenv
|
|
fire
|
|
httpx
|
|
rich
|
|
tenacity
|
|
prompt_toolkit
|
|
pyyaml
|
|
requests
|
|
jinja2
|
|
pydantic>=2.0
|
|
|
|
# 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
|
|
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)
|
|
# swe-rex[modal]>=1.4.0 # Includes modal + boto3 + swe-rex runtime
|
|
|
|
# Optional: For cron expression parsing (cronjob scheduling)
|
|
croniter
|
|
|
|
# Optional: For messaging platform integrations (gateway)
|
|
# Telegram
|
|
python-telegram-bot>=20.0
|
|
|
|
# Discord
|
|
discord.py>=2.0
|
|
|
|
# WhatsApp bridge communication + general async HTTP (used by gateway)
|
|
aiohttp>=3.9.0
|