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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ if st.button("Generate Response"):
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
 
 
36
 
37
  # Invoke the chain to get the response
38
  res = chain.invoke({"input": user_input})
39
+ response_content = res.content
40
  st.write("Generated Response:")
41
  st.write(response_content)
42