venkat charan commited on
Commit
1668774
·
verified ·
1 Parent(s): 6c1d16f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -31,7 +31,7 @@ def end_conv():
31
  st.write("Conversation ended.")
32
  memory.clear()
33
 
34
- while st.button("End Conversation")!=True:
35
  user_input = st.text_area("Input Text")
36
  # Generate and display the response
37
  if st.button("Generate Response"):
@@ -53,7 +53,7 @@ while st.button("End Conversation")!=True:
53
  # st.write(f"{msg['role']}: {msg['content']}")
54
 
55
  # Optionally, you can also add a button to reset the conversation history
56
- #if st.button("End Conversation"):
57
- # end_conv()
58
 
59
 
 
31
  st.write("Conversation ended.")
32
  memory.clear()
33
 
34
+ for i in range(1,5):
35
  user_input = st.text_area("Input Text")
36
  # Generate and display the response
37
  if st.button("Generate Response"):
 
53
  # st.write(f"{msg['role']}: {msg['content']}")
54
 
55
  # Optionally, you can also add a button to reset the conversation history
56
+ if st.button("End Conversation"):
57
+ end_conv()
58
 
59