Danicia commited on
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
  1. app.py +4 -0
app.py ADDED
@@ -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)