Spaces:
Running
Running
File size: 382 Bytes
9a7b741 78a3087 |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
def chat_card():
st.page_link("chat.py", label="Chat", icon=":material/chat:")
# st.chat_message("user").write("Hello, world!")
# st.chat_message("assistant").write("Hello, user!")
# st.chat_input("Type something")
def inplace_chat_card():
st.page_link("inplace_chat.py", label="In-place Feedback Chat", icon=":material/edit_document:")
|