Spaces:
Paused
Paused
increasing max input by a lot
Browse files
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=
|
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)
|