venkat charan commited on
Commit
f068914
·
verified ·
1 Parent(s): ee6eb40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -31,12 +31,17 @@ user_input = st.text_area("Input Text")
31
 
32
  # Generate and display the response
33
  if st.button("Generate Response"):
 
 
 
 
34
  res = chain.invoke({"input": user_input})
 
35
  st.write("Generated Response:")
36
- st.write(res.content)
37
 
38
- # Save the context
39
- memory.save_context({"input": user_input}, {"output": res.content})
40
 
41
  # Display the conversation history
42
  #st.write("Conversation History:")
 
31
 
32
  # Generate and display the response
33
  if st.button("Generate Response"):
34
+ # Load current conversation history
35
+ history = memory.load_memory_variables({})['history']
36
+
37
+ # Invoke the chain to get the response
38
  res = chain.invoke({"input": user_input})
39
+ response_content = res.get("content", "No content generated.")
40
  st.write("Generated Response:")
41
+ st.write(response_content)
42
 
43
+ # Save the context in memory
44
+ memory.save_context({"input": user_input}, {"output": response_content})
45
 
46
  # Display the conversation history
47
  #st.write("Conversation History:")