ProtonDataLabs commited on
Commit
cc669f5
·
unverified ·
1 Parent(s): acc8bf4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -37,7 +37,12 @@ with st.sidebar:
37
  st.subheader("One-Time Development Cost (Custom App)", divider="gray")
38
  development_cost = st.select_slider("Development Cost for Custom App ($)",
39
  options=np.arange(3000, 20001, 100, dtype=int), value=3000)
40
- st.subheader("Token Usage (1 token = 0.75 words or 1.33 token $\\approx$ 1 word)", divider="gray")
 
 
 
 
 
41
  input_tokens_per_month = st.slider("Input Tokens per user (Monthly)",
42
  min_value=10000, max_value=500000, step=10000, value=85000)
43
 
 
37
  st.subheader("One-Time Development Cost (Custom App)", divider="gray")
38
  development_cost = st.select_slider("Development Cost for Custom App ($)",
39
  options=np.arange(3000, 20001, 100, dtype=int), value=3000)
40
+ st.subheader("Token Usage", divider="gray")
41
+ st.markdown("""
42
+ **Note:**
43
+ - 1 token = 0.75 words
44
+ - 1.33 tokens $\\approx$ 1 word
45
+ """, unsafe_allow_html=True)
46
  input_tokens_per_month = st.slider("Input Tokens per user (Monthly)",
47
  min_value=10000, max_value=500000, step=10000, value=85000)
48