Chae
feat: minimal working inplace feedback
78a3087
raw
history blame contribute delete
382 Bytes
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:")