Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -285,7 +285,7 @@ def display_response(response):
|
|
285 |
### Steps
|
286 |
{chr(10).join([capitalize_after_number(step) for step in response['formatted_steps']])}
|
287 |
"""
|
288 |
-
stx.scrollableTextbox(recipe_text, height=800)
|
289 |
|
290 |
st.write(f"Name: {response['name'].capitalize()}")
|
291 |
st.write(f"Preparation Time: {response['minutes']} minutes")
|
|
|
285 |
### Steps
|
286 |
{chr(10).join([capitalize_after_number(step) for step in response['formatted_steps']])}
|
287 |
"""
|
288 |
+
stx.scrollableTextbox(st.markdown(recipe_text), height=800)
|
289 |
|
290 |
st.write(f"Name: {response['name'].capitalize()}")
|
291 |
st.write(f"Preparation Time: {response['minutes']} minutes")
|