Spaces:
Sleeping
Sleeping
Upload README.md
Browse files
README.md
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Multi-Agent AI - Article Writing
|
3 |
+
emoji: 📖
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: gray
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 5.5.0
|
8 |
+
app_file: app.py
|
9 |
+
pinned: true
|
10 |
+
license: apache-2.0
|
11 |
+
short_description: Multi-Agent AI with crewAI
|
12 |
+
---
|
13 |
+
|
14 |
+
# AI Scientific Paper Generator
|
15 |
+
|
16 |
+
An AI-powered application that generates comprehensive scientific papers using a multi-agent system. Created by Dr. Fernando Ly.
|
17 |
+
|
18 |
+
## Features
|
19 |
+
|
20 |
+
- Research Agent: Collects relevant scientific articles from PubMed Central and Google Scholar
|
21 |
+
- Writing Agent: Synthesizes research into a well-structured scientific paper
|
22 |
+
- Proper APA citations and references
|
23 |
+
- Modern, user-friendly interface
|
24 |
+
|
25 |
+
## Installation
|
26 |
+
|
27 |
+
1. Clone the repository:
|
28 |
+
```bash
|
29 |
+
git clone https://github.com/yourusername/ai-scientific-paper-generator.git
|
30 |
+
cd ai-scientific-paper-generator
|
31 |
+
```
|
32 |
+
|
33 |
+
2. Install dependencies:
|
34 |
+
```bash
|
35 |
+
pip install -r requirements.txt
|
36 |
+
```
|
37 |
+
|
38 |
+
3. Create a .env file with your Gemini API key:
|
39 |
+
```bash
|
40 |
+
GEMINI_API_KEY=your_api_key_here
|
41 |
+
```
|
42 |
+
|
43 |
+
## Usage
|
44 |
+
|
45 |
+
1. Run the application:
|
46 |
+
```bash
|
47 |
+
python app.py
|
48 |
+
```
|
49 |
+
|
50 |
+
2. Open your browser and navigate to the provided URL
|
51 |
+
3. Enter your research topic
|
52 |
+
4. Wait for the agents to generate your paper
|
53 |
+
|
54 |
+
## Paper Structure
|
55 |
+
|
56 |
+
The generated papers follow standard scientific paper format:
|
57 |
+
- Introduction
|
58 |
+
- Materials and Methods
|
59 |
+
- Results
|
60 |
+
- Discussion
|
61 |
+
- Conclusion
|
62 |
+
- References
|
63 |
+
|
64 |
+
## Credits
|
65 |
+
|
66 |
+
Created by Dr. Fernando Ly
|
67 |
+
|
68 |
+
## License
|
69 |
+
|
70 |
+
MIT License
|
71 |
+
|
72 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|