acecalisto3 commited on
Commit
423578e
·
verified ·
1 Parent(s): cb4585d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ def main():
87
  st.header("Options")
88
  col1, col2, col3 = st.columns(3)
89
  with col1:
90
- max_length = st.slider("Max Length", min_value=50, max_value=1000, value=250, step=50, help="Maximum length of the generated code.")
91
  with col2:
92
  temperature = st.slider("Temperature", min_value=0.1, max_value=1.0, value=0.7, step=0.1, help="Controls the creativity of the generated code.")
93
  with col3:
 
87
  st.header("Options")
88
  col1, col2, col3 = st.columns(3)
89
  with col1:
90
+ max_length = st.slider("Max Length", min_value=50, max_value=2048, value=2000, step=25, help="Maximum length of the generated code.")
91
  with col2:
92
  temperature = st.slider("Temperature", min_value=0.1, max_value=1.0, value=0.7, step=0.1, help="Controls the creativity of the generated code.")
93
  with col3: