Update README.md
Browse files
README.md
CHANGED
@@ -1,21 +1,60 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
-
#
|
4 |
-
Install Ollama on your local machine from the [official website](https://ollama.com/). And then pull the Deepseek model:
|
5 |
|
6 |
-
|
7 |
-
ollama pull deepseek-r1:14b
|
8 |
-
```
|
9 |
|
10 |
-
|
11 |
|
12 |
-
```bash
|
13 |
-
pip install -r requirements.txt
|
14 |
-
```
|
15 |
|
16 |
-
|
17 |
-
Run the Streamlit app:
|
18 |
|
19 |
-
```
|
20 |
-
|
21 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- deepseek-ai/DeepSeek-R1
|
7 |
+
- Qwen/Qwen2.5-VL-72B-Instruct
|
8 |
+
---
|
9 |
|
10 |
+
# Model Card for Model ID
|
|
|
11 |
|
12 |
+
AI that can answer user's queries based on the user's given pdf, url links and straight direct researchers
|
|
|
|
|
13 |
|
14 |
+
It has three main functions , PDF-ChatBot, Edu-Scraper, and Edu Researcher.
|
15 |
|
|
|
|
|
|
|
16 |
|
17 |
+
## Installation
|
|
|
18 |
|
19 |
+
1. ```cd Edu-Ai```
|
20 |
+
|
21 |
+
2. ```pip install requirements.txt```
|
22 |
+
|
23 |
+
3. ```pip install streamlit```
|
24 |
+
|
25 |
+
4. ```streamlit run Hellopage.py```
|
26 |
+
|
27 |
+
5. Please get your own hugging face token to add in secrets.toml so that you can use the models.
|
28 |
+
|
29 |
+
### Model Description
|
30 |
+
|
31 |
+
1. ```Hellopage.py``` : The starting page where you can choose the options between PDF-ChatBot, Edu-Scraper, Edu-Researcher.
|
32 |
+
|
33 |
+
2. ```pdf_rag.py``` : Using RAG, user can input their queries and pdfs so that they can recieve their desired answers.
|
34 |
+
|
35 |
+
3. ```Edu-Scraper.py``` : Using RAG and selenium, user can input their url and their queries so that they can recieve their desired answers.
|
36 |
+
|
37 |
+
4. ```Edu-Researcher.py``` : Using DDGS and Stategraph, user can get straight to the point searches.
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
- **Developed by:** [UIT batch 10 Section A]
|
42 |
+
- **Model type:** [RAG]
|
43 |
+
- **Language(s) (NLP):** [English]
|
44 |
+
- **License:** [MIT]
|
45 |
+
|
46 |
+
### Model Sources
|
47 |
+
|
48 |
+
- **Repository:** [https://github.com/FightaHackathon/Edu-Ai]
|
49 |
+
- **Demo:** [https://edu-ai.streamlit.app/]
|
50 |
+
|
51 |
+
## Uses
|
52 |
+
|
53 |
+
- Able to summarize pdfs and urls given by user's queries and straight to the point researches.
|
54 |
+
|
55 |
+
|
56 |
+
### Important notes
|
57 |
+
|
58 |
+
1. Users can choose between qwen and deepseek for their preference modes(Can add more models by just modifying the codes slightly
|
59 |
+
|
60 |
+
2. Please get your own hugging face token from making an account in https://huggingface.co/welcome
|