CosmoS / app.py
CosmoAI's picture
Update app.py
9013fef
raw
history blame
458 Bytes
from hugchat import hugchat
import streamlit as st
chatbot = hugchat.ChatBot(cookie_path="home/user/cookies.json")
with st.chat_message:
st.markdown(chatbot.chat("Hi"))
# Create a new conversation
id = chatbot.new_conversation()
chatbot.change_conversation(id)
# Get conversation list
conversation_list = chatbot.get_conversation_list()
uinput = st.chat_input("How can I help you?")
with st.chat_message:
st.markdown(chatbot.chat(uinput))