Get Started
Quick start guide to get AI Hedge Fund up and running. Follow these simple steps.
🚀 Quick Access
If the application is already running, you can access it directly:
Open AI Hedge Fund Application
Default URL: http://localhost:5173
Installation Steps
2
Clone Repository
git clone https://github.com/virattt/ai-hedge-fund.git cd ai-hedge-fund
3
Set Up Environment
cp .env.example .env
Edit .env file and add at least one LLM API key. See API Keys documentation.
4
Install Dependencies
# Install Poetry (if not installed) curl -sSL https://install.python-poetry.org | python3 - # Install Python dependencies poetry install # Install frontend dependencies cd app/frontend npm install
5
Run Application
Option 1: Convenience Script (Easiest)
cd app ./run.sh # Mac/Linux # or run.bat # Windows
Option 2: Manual Start
Terminal 1 - Backend:
cd app/backend poetry run uvicorn app.backend.main:app --reload --host 127.0.0.1 --port 8000
Terminal 2 - Frontend:
cd app/frontend npm run dev
Access the Application
Once running, open your browser and navigate to:
- Frontend: http://localhost:5173
- API Docs: http://localhost:8000/docs
Next Steps
Ready to Start?
Access the application and start building your trading strategies!