| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/pypae/docs/main/python/api-examples-source/chat.input-inline.py | [Back] [Original] |
import streamlit as st
with st.sidebar:
messages = st.container(height=300)
if prompt := st.chat_input("Say something"):
messages.chat_message("user").write(prompt)
messages.chat_message("assistant").write(f"Echo: {prompt}")
| Web Proxy Viewer | New URL | Original Page |