Spaces:
Sleeping
Sleeping
venkat charan
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def end_conv():
|
|
31 |
st.write("Conversation ended.")
|
32 |
memory.clear()
|
33 |
|
34 |
-
|
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 |
-
|
57 |
-
|
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 |
|