File size: 668 Bytes
2d12ec2
cb40a92
2d12ec2
 
 
 
 
 
 
 
 
cb40a92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
title: deven-cleric-frontend
emoji: 🌍
colorFrom: red
colorTo: blue
sdk: streamlit
sdk_version: 1.33.0
app_file: app.py
pinned: false
---

I've built the web app with Streamlit. The app is deployed on huggingface spaces. The app as expected takes comma seperated URLs and a question/questions as input and returns facts.

The facts received from the API are in `list` format, however, a single element of the `list` can contain multiple sentences, so I tokenize them into multiple sentences using `nltk`.

## Install

Install the dependencies using,

```sh
pip install -r requirements.txt
```

Once installed, start the app using

```sh
streamlit run app.py
```