Spaces:
Sleeping
Sleeping
this
Browse files- app.py +2 -2
- requirements.txt +3 -1
app.py
CHANGED
@@ -10,8 +10,8 @@ from transformers import pipeline, Conversation
|
|
10 |
|
11 |
|
12 |
|
13 |
-
|
14 |
-
|
15 |
|
16 |
uri = os.environ["MONGO_CONNECTION_STRING"]
|
17 |
client = MongoClient(uri, tlsCertificateKeyFile="database/cert.pem")
|
|
|
10 |
|
11 |
|
12 |
|
13 |
+
classifyr = pipeline("zero-shot-classification")
|
14 |
+
convo = pipeline("conversational")
|
15 |
|
16 |
uri = os.environ["MONGO_CONNECTION_STRING"]
|
17 |
client = MongoClient(uri, tlsCertificateKeyFile="database/cert.pem")
|
requirements.txt
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
streamlit
|
|
|
2 |
pymongo
|
3 |
transformers
|
4 |
torch
|
5 |
-
dnspython
|
|
|
|
1 |
streamlit
|
2 |
+
streamlit-option-menu
|
3 |
pymongo
|
4 |
transformers
|
5 |
torch
|
6 |
+
dnspython
|
7 |
+
bardapi==0.1.23
|