Spaces:
Running
Running
adrianpierce
commited on
Commit
•
3b24071
1
Parent(s):
739e47b
Update Home.py
Browse files
Home.py
CHANGED
@@ -232,7 +232,7 @@ if st.session_state.gpt_response is not None:
|
|
232 |
for instruction in recipe['instructions']:
|
233 |
recipe_md += f"{instruction['step_number']}. {instruction['instruction']} \n"
|
234 |
recipe['md'] = recipe_md
|
235 |
-
recipe['timestamp'] = datetime.now()
|
236 |
st.markdown(recipe_md)
|
237 |
st.write("")
|
238 |
if st.session_state.recipe_saved == True:
|
|
|
232 |
for instruction in recipe['instructions']:
|
233 |
recipe_md += f"{instruction['step_number']}. {instruction['instruction']} \n"
|
234 |
recipe['md'] = recipe_md
|
235 |
+
recipe['timestamp'] = str(datetime.now())
|
236 |
st.markdown(recipe_md)
|
237 |
st.write("")
|
238 |
if st.session_state.recipe_saved == True:
|