├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── app ├── api │ ├── compile-latex │ │ └── route.ts │ └── generate-paper-gemini │ │ └── route.ts └── plan │ └── [id] │ └── page.tsx ├── backend ├── .env.example ├── app │ ├── __init__.py │ ├── models │ │ ├── __init__.py │ │ └── research_models.py │ └── services │ │ ├── llm_service.py │ │ └── paper_service.py ├── main.py ├── package.json ├── requirements.txt ├── server.ts └── services │ └── llm_service.ts ├── frontend ├── .DS_Store ├── app │ ├── about │ │ └── page.tsx │ ├── diagram │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ ├── paper │ │ └── page.tsx │ ├── plan │ │ └── [id] │ │ │ └── page.tsx │ ├── privacy │ │ └── page.tsx │ └── search │ │ └── page.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public │ └── IMG_6680.JPG ├── styles │ └── globals.css ├── tailwind.config.js └── tsconfig.json ├── next-env.d.ts ├── package.json ├── pages └── api │ ├── chat.ts │ ├── generate-paper-gemini.ts │ ├── generate-paper-local.ts │ ├── generate-paper.ts │ └── search.ts ├── tsconfig.json └── vercel.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/README.md -------------------------------------------------------------------------------- /app/api/compile-latex/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/app/api/compile-latex/route.ts -------------------------------------------------------------------------------- /app/api/generate-paper-gemini/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/app/api/generate-paper-gemini/route.ts -------------------------------------------------------------------------------- /app/plan/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/app/plan/[id]/page.tsx -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | # 后端应用程序包 2 | # 用于导入模块和服务 -------------------------------------------------------------------------------- /backend/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/app/models/__init__.py -------------------------------------------------------------------------------- /backend/app/models/research_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/app/models/research_models.py -------------------------------------------------------------------------------- /backend/app/services/llm_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/app/services/llm_service.py -------------------------------------------------------------------------------- /backend/app/services/paper_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/app/services/paper_service.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/server.ts -------------------------------------------------------------------------------- /backend/services/llm_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/backend/services/llm_service.ts -------------------------------------------------------------------------------- /frontend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/.DS_Store -------------------------------------------------------------------------------- /frontend/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/about/page.tsx -------------------------------------------------------------------------------- /frontend/app/diagram/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/diagram/page.tsx -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/app/paper/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/paper/page.tsx -------------------------------------------------------------------------------- /frontend/app/plan/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/plan/[id]/page.tsx -------------------------------------------------------------------------------- /frontend/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/privacy/page.tsx -------------------------------------------------------------------------------- /frontend/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/app/search/page.tsx -------------------------------------------------------------------------------- /frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/next-env.d.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/IMG_6680.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/public/IMG_6680.JPG -------------------------------------------------------------------------------- /frontend/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/styles/globals.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/pages/api/chat.ts -------------------------------------------------------------------------------- /pages/api/generate-paper-gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/pages/api/generate-paper-gemini.ts -------------------------------------------------------------------------------- /pages/api/generate-paper-local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/pages/api/generate-paper-local.ts -------------------------------------------------------------------------------- /pages/api/generate-paper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/pages/api/generate-paper.ts -------------------------------------------------------------------------------- /pages/api/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/pages/api/search.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scodive/ResearchGPT/HEAD/vercel.json --------------------------------------------------------------------------------