ChatBot / app.py
Ankush05's picture
Merge branch 'main' of https://huggingface.co/spaces/Ankush05/ChatBot
8da6c75
raw
history blame
428 Bytes
import streamlit as st
import os
import pandas as pd
import tranformers
# Connecting to MongoDB
uri = os.environ["MONGO_CONNECTION_STRING"]
client = MongoClient(uri, tlsCertificateKeyFile="database/cert.pem")
db = client["myapp"]
col = db["chatbot"]
def chatbot():
st.title("ChatBot")
message = st.text_input("Enter your query here")
if st.button ("Submit"):
col.insert_one({"message": message})