Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tafxle
/
Bloom_chat
like
6
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
25ada91
Bloom_chat
/
app.py
tafxle
stub
25ada91
over 2 years ago
raw
Copy download link
history
blame
162 Bytes
import
streamlit
as
st
text = st.text_area(
"Prefix"
, value=
"DM: You enter the room."
)
batch = st.number_input(
"Variants"
, value=
5
)
st.markdown(
f"
{text}
{batch}
"
)