Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,11 @@ def main():
|
|
73 |
st.markdown("This application generates code based on the given task description using a text-generation model.")
|
74 |
|
75 |
# Model Selection
|
76 |
-
model_name = st.selectbox(
|
|
|
|
|
|
|
|
|
77 |
|
78 |
# Input Section
|
79 |
st.header("Task Description")
|
|
|
73 |
st.markdown("This application generates code based on the given task description using a text-generation model.")
|
74 |
|
75 |
# Model Selection
|
76 |
+
model_name = st.selectbox(
|
77 |
+
"Select Model",
|
78 |
+
["EleutherAI/gpt-neo-2.7B", "EleutherAI/gpt-j-6B"],
|
79 |
+
help="Choose the model for code generation."
|
80 |
+
)
|
81 |
|
82 |
# Input Section
|
83 |
st.header("Task Description")
|