Spaces:
Sleeping
Sleeping
File size: 4,254 Bytes
72509bb b25f61a 639420f 72509bb ab8cc1b 639420f ab8cc1b 639420f ab8cc1b 639420f ab8cc1b 639420f ab8cc1b 639420f ab8cc1b 639420f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | ---
title: LitReviewAI
emoji: π»
colorFrom: green
colorTo: pink
sdk: streamlit
sdk_version: 1.60.0
app_file: app.py
pinned: false
short_description: π βTurn PDFs into Research Insights in Seconds."
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
---
```markdown
# π LitReviewAI
## AI-Powered Research Literature Assistant
<p align="center">
<img src="assets/logo.png" width="180">
</p>
LitReviewAI is an intelligent research assistant designed to help researchers analyze, summarize, and organize scientific literature using Artificial Intelligence and Natural Language Processing.
It automates the tedious parts of literature review by extracting insights from research papers, identifying research gaps, discovering topics, and enabling interactive conversations with scientific documents.
---
# π Demo
π Hugging Face Space:
(Add your Space link here)
---
# β¨ Features
## π Automated Paper Analysis
Upload multiple research papers in PDF format and automatically extract:
- Paper title
- Authors
- Abstract
- Research information
---
## π§ AI-Powered Summarization
Using Large Language Models, LitReviewAI generates:
- Concise paper summaries
- Section-wise highlights
- Research limitations
- Potential research gaps
---
## π Keyword Extraction
Extracts important scientific keywords using:
- Sentence Transformers
- KeyBERT
- Semantic embeddings
---
## π Topic Discovery
Discover research themes across multiple papers using:
- Latent Dirichlet Allocation (LDA)
- NLP-based topic modeling
---
## π Research Collaboration Network
Visualize:
- Author relationships
- Collaboration patterns
- Research communities
---
## π¬ Chat With Research Papers
Ask questions about uploaded papers and receive AI-generated answers based on extracted scientific content.
---
## π Citation Management
Export analyzed papers into:
- BibTeX format
- CSV reports
- JSON summaries
---
# ποΈ System Architecture
PDF Papers
|
|
PyMuPDF Extraction
|
|
Metadata + Abstract Extraction
|
|
AI/NLP Pipeline
|
|------------------
| |
Summarization Keyword Extraction
(Groq LLM) (KeyBERT)
|
|
Research Insights
|
|
Interactive Streamlit Dashboard
---
# π οΈ Tech Stack
### Frontend
- Streamlit
### AI / NLP
- Groq LLM API
- Sentence Transformers
- KeyBERT
- Gensim LDA
### Document Processing
- PyMuPDF
### Visualization
- Plotly
- NetworkX
- WordCloud
### Data Processing
- Pandas
- Numpy
---
# π Project Structure
LitReviewAI/
β
βββ app.py
βββ requirements.txt
β
βββ src/
β βββ embeddings.py
β βββ metadata_extractor.py
β βββ pdf_parser.py
β βββ ai_functions.py
β βββ topic_modeling.py
β βββ visualizations.py
β βββ chat.py
β
βββ components/
β βββ upload.py
β βββ summaries.py
β βββ insights.py
β
βββ assets/
β βββ logo.png
β
βββ data/sample_papers
---
# βοΈ Installation
Clone repository:
```bash
git clone https://github.com/Bano733-code/LitReviewAI.git
Install dependencies:
pip install -r requirements.txt
Run:
streamlit run app.py
π Environment Variables
Create Streamlit secrets:
.streamlit/secrets.toml
Add:
GROQ_API_KEY="your_api_key"
π Research Applications
LitReviewAI can support:
Biomedical literature review
Computational biology research
AI-assisted scientific discovery
Systematic review workflows
Research hypothesis generation
π¬ Future Improvements
Planned features:
Vector database integration
Semantic paper search
RAG-based document retrieval
Citation recommendation
Automatic systematic review generation
Multi-document knowledge graphs
π©βπ» Author
Bano Rani
BS Bioinformatics Student
Research Interests:
AI for Bioinformatics
Computational Biology
Biomedical NLP
Precision Medicine
π License
MIT License
---
This README will make LitReviewAI look like a **real AI research product**, not just a Streamlit assignment. It highlights the parts professors usually care about:
- scientific motivation
- AI methodology
- architecture
- reproducibility
- future research potential
- technical depth |