Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sociail
/
SDXL-1-base-streamlit-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Danicia
commited on
Aug 23, 2023
Commit
a07e033
·
1 Parent(s):
04ad087
feat: initial commit with simple slider with max request number per minute
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select the max request number per minute')
4
+
st.write(x, 'Estimated Cost for Serveless architecture for that is', 0.0003 * x)