Nymbo commited on
Commit
0d8532e
·
verified ·
1 Parent(s): 571f7e3

increasing max input by a lot

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ def convert_html(html_input, output_format):
30
  prompt = f"Convert the following HTML into {output_format}:\n\n{html_input}"
31
 
32
  # Generate the output using the model
33
- response = html_converter(prompt, max_length=500, num_return_sequences=1)
34
  converted_output = response[0]['generated_text']
35
 
36
  # Extract the relevant part of the output (remove the prompt)
 
30
  prompt = f"Convert the following HTML into {output_format}:\n\n{html_input}"
31
 
32
  # Generate the output using the model
33
+ response = html_converter(prompt, max_length=999999, num_return_sequences=1)
34
  converted_output = response[0]['generated_text']
35
 
36
  # Extract the relevant part of the output (remove the prompt)