yonikremer commited on
Commit
dc50bdf
โ€ข
1 Parent(s): acb3322

changed the maximum output length from 4096 to 1024

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,9 +21,9 @@ with st.form("request_form"):
21
  )
22
 
23
  output_length: int = st.number_input(
24
- label="ื›ืžื•ืช ื”ืžื™ืœื™ื ื”ืžืงืกื™ืžืœื™ืช ื‘ืคืœื˜ - ื‘ื™ืŸ 1 ืœ-4096",
25
  min_value=1,
26
- max_value=4096,
27
  value=5,
28
  )
29
 
 
21
  )
22
 
23
  output_length: int = st.number_input(
24
+ label="ื›ืžื•ืช ื”ืžื™ืœื™ื ื”ืžืงืกื™ืžืœื™ืช ื‘ืคืœื˜ - ื‘ื™ืŸ 1 ืœ-1024",
25
  min_value=1,
26
+ max_value=1024,
27
  value=5,
28
  )
29