merve HF Staff commited on
Commit
44409cc
Β·
1 Parent(s): 19d6ff0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,7 +62,7 @@ if resp.status_code == 200:
62
  model_answer = data["answer"]
63
  for key in link_dict:
64
  if key in model_answer:
65
- link_dict[key] = url
66
  response_templates = [f"{model_answer} is the best task for this 🀩 Check out the page πŸ‘‰πŸΌ {url}", f"I think you should use {model_answer} πŸͺ„ Check it out here πŸ‘‰πŸΌ {url}", f"I think {model_answer} should work for you πŸ€“ Check out the page πŸ‘‰πŸΌ {url}"]
67
 
68
 
 
62
  model_answer = data["answer"]
63
  for key in link_dict:
64
  if key in model_answer:
65
+ url = link_dict[key]
66
  response_templates = [f"{model_answer} is the best task for this 🀩 Check out the page πŸ‘‰πŸΌ {url}", f"I think you should use {model_answer} πŸͺ„ Check it out here πŸ‘‰πŸΌ {url}", f"I think {model_answer} should work for you πŸ€“ Check out the page πŸ‘‰πŸΌ {url}"]
67
 
68