Update app.py
Browse files
app.py
CHANGED
@@ -1,22 +1,14 @@
|
|
1 |
import streamlit as st
|
2 |
-
from streamlit_option_menu import option_menu
|
3 |
-
from pymongo import MongoClient
|
4 |
import os
|
5 |
-
import
|
6 |
-
|
7 |
-
|
8 |
-
# Connecting to MongoDB
|
9 |
-
uri = os.environ["MONGO_CONNECTION_STRING"]
|
10 |
-
|
11 |
-
client = MongoClient(uri, tlsCertificateKeyFile="database/cert.pem")
|
12 |
-
|
13 |
-
db = client["myapp"]
|
14 |
-
col = db["chatbot"]
|
15 |
|
|
|
16 |
|
17 |
def chatbot():
|
18 |
st.title("ChatBot")
|
19 |
-
message
|
20 |
-
|
21 |
-
|
|
|
|
|
22 |
|
|
|
1 |
import streamlit as st
|
|
|
|
|
2 |
import os
|
3 |
+
from transformers import pipeline, Conversation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
+
convo = pipeline("facebook/blenderbot-400M-distill")
|
6 |
|
7 |
def chatbot():
|
8 |
st.title("ChatBot")
|
9 |
+
if message := st.chat_input("Enter your query"):
|
10 |
+
umsg = Conversation(message)
|
11 |
+
answer = convo(umsg)
|
12 |
+
with st.chat_message("Assistant"):
|
13 |
+
st.write(answer)
|
14 |
|