KvrParaskevi commited on
Commit
519c771
1 Parent(s): 918c91f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -46,7 +46,7 @@ if input_text := st.chat_input(placeholder="Here you can chat with our hotel boo
46
  with st.spinner("Generating response..."):
47
  #first_answer = llm_chain.predict(input = input_text)
48
  #answer = first_answer.strip()
49
- input = input_text + "Assistant:"
50
  answer = re.generate_response(input)
51
 
52
  with st.chat_message("assistant"):
 
46
  with st.spinner("Generating response..."):
47
  #first_answer = llm_chain.predict(input = input_text)
48
  #answer = first_answer.strip()
49
+ input = "Human:" + input_text + "Assistant:"
50
  answer = re.generate_response(input)
51
 
52
  with st.chat_message("assistant"):