Commit
·
25db58f
1
Parent(s):
faed910
replaced f string with normal string
Browse files
app.py
CHANGED
@@ -18,9 +18,9 @@ with st.form("request_form"):
|
|
18 |
selected_model_name: str = st.text_input(
|
19 |
label="Model name",
|
20 |
value="gpt2",
|
21 |
-
help=
|
22 |
-
|
23 |
-
|
24 |
)
|
25 |
|
26 |
output_length: int = st.number_input(
|
|
|
18 |
selected_model_name: str = st.text_input(
|
19 |
label="Model name",
|
20 |
value="gpt2",
|
21 |
+
help="The name of the model to use."
|
22 |
+
"Supported models are all the models in:"
|
23 |
+
" https://huggingface.co/models?pipeline_tag=text-generation&library=pytorch",
|
24 |
)
|
25 |
|
26 |
output_length: int = st.number_input(
|