Your Name commited on
Commit
ca3aed0
1 Parent(s): 2118170

response = "not found in the site"

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ def chat(message, site,history):
50
  response = agent_chain.run(input=message+" site:"+site)
51
  except KeyError:
52
  if not response:
53
- response = "website not found"
54
  history.append((message, response))
55
 
56
  return history, history
 
50
  response = agent_chain.run(input=message+" site:"+site)
51
  except KeyError:
52
  if not response:
53
+ response = "not found in the site"
54
  history.append((message, response))
55
 
56
  return history, history