A simple, easy-to-use platform for generating, managing, and analyzing research papers and code using AI agents.
- backend/: FastAPI server for handling API requests, code generation, and workspace management.
- frontend/: React + TypeScript web app for uploading papers, viewing workspaces, and interacting with the backend.
- Go to the
backendfolder. - (Optional) Create and activate a virtual environment:
- Windows:
venv\Scripts\activate - macOS/Linux:
source venv/bin/activate
- Windows:
- Install dependencies:
pip install -r requirements.txt
- Start the server:
uvicorn app.main:app --reload
- Go to the
frontendfolder. - Install dependencies:
npm install
- Start the development server:
npm run dev
- Upload and analyze research papers
- Generate code from paper instructions using AI
- Manage workspaces and track status
- Python 3.8+
- Node.js 18+
- Configure your API keys and environment variables as needed in the backend.
- For more details, see the
backend/README.mdandfrontend/README.mdfiles.