Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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:
|