ranamhamoud commited on
Commit
611f59f
·
verified ·
1 Parent(s): b4ef5a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -111,8 +111,8 @@ def generate(
111
  for text in streamer:
112
  outputs.append(text)
113
  yield "".join(outputs)
114
- final_story = "".join(outputs) # The complete story
115
- conversation_id = save_chat_history(chat_history + [(message, final_story)])
116
 
117
  yield f"Conversation ID: {conversation_id}"
118
 
 
111
  for text in streamer:
112
  outputs.append(text)
113
  yield "".join(outputs)
114
+ # final_story = "".join(outputs) # The complete story
115
+ # conversation_id = save_chat_history(chat_history + [(message, final_story)])
116
 
117
  yield f"Conversation ID: {conversation_id}"
118