Update app.py
Browse files
app.py
CHANGED
@@ -157,7 +157,7 @@ def summarize_financial_news(query):
|
|
157 |
|
158 |
Provide a detailed, coherent summary focusing on financial implications and analysis."""
|
159 |
|
160 |
-
summary = query_llama({"inputs": prompt, "parameters": {"max_length":
|
161 |
|
162 |
return summary[0]['generated_text']
|
163 |
|
|
|
157 |
|
158 |
Provide a detailed, coherent summary focusing on financial implications and analysis."""
|
159 |
|
160 |
+
summary = query_llama({"inputs": prompt, "parameters": {"max_length": 5000}})
|
161 |
|
162 |
return summary[0]['generated_text']
|
163 |
|