Spaces:
Runtime error
Runtime error
Your Name
commited on
Commit
·
2118170
1
Parent(s):
97044e9
response = ""
Browse files
app.py
CHANGED
@@ -45,6 +45,7 @@ def chat(message, site,history):
|
|
45 |
history = history or []
|
46 |
#siteの//以前を削除
|
47 |
site = site.replace("https://","")
|
|
|
48 |
try:
|
49 |
response = agent_chain.run(input=message+" site:"+site)
|
50 |
except KeyError:
|
|
|
45 |
history = history or []
|
46 |
#siteの//以前を削除
|
47 |
site = site.replace("https://","")
|
48 |
+
response = ""
|
49 |
try:
|
50 |
response = agent_chain.run(input=message+" site:"+site)
|
51 |
except KeyError:
|