AgentForge is a full-stack web application that lets users visually create, chain, and run AI agents like researchers, summarizers, and writers using a drag-and-drop interface.
- β‘ Drag-and-drop interface using ReactFlow
- π Chain multiple AI agents into autonomous workflows
- π§ Uses OpenRouter API to run LLMs like GPT, Mixtral, Claude
- π¦ FastAPI backend with modular prompt handling
- π‘οΈ Secure .env setup for API keys
- Frontend: React, Zustand, ReactFlow
- Backend: FastAPI, Python
- AI/LLM: OpenRouter API (GPT-3.5, Mixtral, etc.)
cd backend
pip install -r requirements.txt
pip install uvicorn
uvicorn main:app --reload
### Frontend:
cd frontend
npm install
npm run dev