Update app.py
Browse files
app.py
CHANGED
|
@@ -243,7 +243,8 @@ def main():
|
|
| 243 |
"""
|
| 244 |
response = model.generate_content(prompt)
|
| 245 |
# Display the report text; adjust according to your response format.
|
| 246 |
-
|
|
|
|
| 247 |
else:
|
| 248 |
st.error("No data available for reports.")
|
| 249 |
|
|
|
|
| 243 |
"""
|
| 244 |
response = model.generate_content(prompt)
|
| 245 |
# Display the report text; adjust according to your response format.
|
| 246 |
+
report = response.text
|
| 247 |
+
st.markdown(report)
|
| 248 |
else:
|
| 249 |
st.error("No data available for reports.")
|
| 250 |
|