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}) | |