Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ def generate_short_paragraph_from_text(translated_text):
|
|
53 |
try:
|
54 |
print(f"Generating a short paragraph from translated text: {translated_text}")
|
55 |
# Generate a shorter paragraph from the translated text using smaller settings
|
56 |
-
paragraph = text_generator(translated_text, max_length=
|
57 |
print(f"Paragraph generation completed: {paragraph}")
|
58 |
return paragraph
|
59 |
except Exception as e:
|
|
|
53 |
try:
|
54 |
print(f"Generating a short paragraph from translated text: {translated_text}")
|
55 |
# Generate a shorter paragraph from the translated text using smaller settings
|
56 |
+
paragraph = text_generator(translated_text, max_length=80, num_return_sequences=1, temperature=0.6, top_p=0.8)[0]['generated_text']
|
57 |
print(f"Paragraph generation completed: {paragraph}")
|
58 |
return paragraph
|
59 |
except Exception as e:
|