Ankush05 commited on
Commit
d2d374e
·
1 Parent(s): 8d6936c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -15
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 pandas as pd
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 = st.text_input("Enter your query here")
20
- if st.button ("Submit"):
21
- col.insert_one({"message": message})
 
 
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