Development Setup
Initial Setup
Clone the Repository
git clone https://github.com/raga-ai-hub/agentneo.git
cd agentneoCreate Virtual Environment
python -m venv venv
source venv/bin/activate # Unix
# or
venv\Scripts\activate # WindowsInstall Development Dependencies
pip install -e ".[dev]"Development Tools
Required Tools
Python 3.8+
Git
pytest
black (code formatting)
isort (import sorting)
flake8 (linting)
Installing Development Tools
Setting Up Pre-commit Hooks
Running Tests
To run the dashboard after local UI code changes
Last updated