Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lovetang
/
withLLM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
lovetang
commited on
Jul 28, 2024
Commit
8c92eff
·
verified
·
1 Parent(s):
29d838d
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
prompt = st.chat_input("Say something")
4
+
if prompt:
5
+
st.write(f"User has sent the following prompt: {prompt}")