AI-powered research paper analysis and idea generation platform.
- Copy environment file:
cp .env.example .env- Configure LLM API in
.env:
LLM_API_URL=https://api.openai.com/v1
LLM_API_KEY=your-api-key
- Start services:
docker-compose up -d- Access the application:
- Frontend: http://localhost:5173
- Backend API: http://localhost:8000
- API Docs: http://localhost:8000/docs
- Data Ingestion: arXiv subscription, PDF download, MinerU conversion
- Deep Analysis: Structured extraction, limitation radar, reproducibility score
- Idea Engine: Gap hunter, combinatorial innovation, idea cards
cd backend
pip install -r requirements.txt
uvicorn app.main:app --reloadcd frontend
npm install
npm run dev