yonikremer commited on
Commit
6768469
1 Parent(s): e34eb24

set max output length to 1024

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ with st.form("request_form"):
23
  output_length: int = st.number_input(
24
  label="the length of the output (in tokens)",
25
  min_value=1,
26
- max_value=2048,
27
  value=5,
28
  )
29
 
 
23
  output_length: int = st.number_input(
24
  label="the length of the output (in tokens)",
25
  min_value=1,
26
+ max_value=1024,
27
  value=5,
28
  )
29