mgokg commited on
Commit
c93dedb
·
verified ·
1 Parent(s): 005ceb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ def websearch(prompt):
41
  response_text = soup.find('body')
42
  #prompt = f"{search_term}\n use this result from a google search to answer the question \n {response_text.text}"
43
  #result = predict(prompt)
44
- return response_text
45
 
46
 
47
 
 
41
  response_text = soup.find('body')
42
  #prompt = f"{search_term}\n use this result from a google search to answer the question \n {response_text.text}"
43
  #result = predict(prompt)
44
+ return response_text.text
45
 
46
 
47