yonikremer commited on
Commit
25db58f
·
1 Parent(s): faed910

replaced f string with normal string

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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=f"The name of the model to use."
22
- f"Supported models are all the models in:"
23
- f" https://huggingface.co/models?pipeline_tag=text-generation&library=pytorch",
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(