Anne31415 commited on
Commit
15fb41d
·
1 Parent(s): 2951f96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -110,14 +110,16 @@ def main():
110
  unique_sentences = set(response_sentences)
111
  filtered_response = '. '.join(unique_sentences)
112
 
113
- # Check if the response ends with a sentence-ending punctuation
114
- while not response.strip().endswith(('.', '!', '?')) and max_tokens < MAX_TOKEN_LIMIT:
115
  max_tokens += 50 # Increase the max_tokens limit
116
  chain = load_chatbot(max_tokens=max_tokens)
117
  additional_response = chain.run(input_documents=docs, question=query)
118
- response += additional_response # Append the additional response to the original response
 
 
 
119
 
120
- st.session_state['chat_history'].append(("Bot", response, "new"))
121
 
122
  # Display new messages at the bottom
123
  new_messages = st.session_state['chat_history'][-2:]
 
110
  unique_sentences = set(response_sentences)
111
  filtered_response = '. '.join(unique_sentences)
112
 
113
+ # Check if the filtered response ends with a sentence-ending punctuation
114
+ while not filtered_response.strip().endswith(('.', '!', '?')) and max_tokens < MAX_TOKEN_LIMIT:
115
  max_tokens += 50 # Increase the max_tokens limit
116
  chain = load_chatbot(max_tokens=max_tokens)
117
  additional_response = chain.run(input_documents=docs, question=query)
118
+ filtered_response += additional_response # Append the additional response to the filtered response
119
+
120
+ st.session_state['chat_history'].append(("Bot", filtered_response, "new"))
121
+
122
 
 
123
 
124
  # Display new messages at the bottom
125
  new_messages = st.session_state['chat_history'][-2:]