JPLTedCas commited on
Commit
e6f76c5
·
verified ·
1 Parent(s): 730194c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -3
app.py CHANGED
@@ -79,17 +79,37 @@ def get_conversation_chain(vectorstore:FAISS) -> ConversationalRetrievalChain:
79
  return conversation_chain
80
 
81
 
82
- def handle_userinput(user_question:str):
83
- response = st.session_state.conversation({"pregunta": user_question})
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  st.session_state.chat_history = response["chat_history"]
85
 
86
  for i, message in enumerate(st.session_state.chat_history):
87
  if i % 2 == 0:
88
- st.write(" Usuario: " + message.content)
89
  else:
90
  st.write("🤖 ChatBot: " + message.content)
91
 
92
 
 
 
93
  def main():
94
  st.set_page_config(
95
  page_title="Chat with a Bot that tries to answer questions about multiple PDFs",
 
79
  return conversation_chain
80
 
81
 
82
+ #def handle_userinput(user_question:str):
83
+ # response = st.session_state.conversation({"pregunta": user_question})
84
+ # st.session_state.chat_history = response["chat_history"]
85
+ #
86
+ # for i, message in enumerate(st.session_state.chat_history):
87
+ # if i % 2 == 0:
88
+ # st.write(" Usuario: " + message.content)
89
+ # else:
90
+ # st.write("🤖 ChatBot: " + message.content)
91
+
92
+
93
+ def handle_userinput(user_question):
94
+ """
95
+ Handle user input and generate a response using the conversational retrieval chain.
96
+ Parameters
97
+ ----------
98
+ user_question : str
99
+ The user's question.
100
+ """
101
+ response = st.session_state.conversation({"question": user_question})
102
  st.session_state.chat_history = response["chat_history"]
103
 
104
  for i, message in enumerate(st.session_state.chat_history):
105
  if i % 2 == 0:
106
+ st.write("//_^ User: " + message.content)
107
  else:
108
  st.write("🤖 ChatBot: " + message.content)
109
 
110
 
111
+
112
+
113
  def main():
114
  st.set_page_config(
115
  page_title="Chat with a Bot that tries to answer questions about multiple PDFs",