Kajise Org commited on
Commit
db468f2
1 Parent(s): 0b3dcc4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -73,7 +73,7 @@ def gather_data(search: str):
73
  base_data = search_ddg(search).parse_results()
74
  for data in base_data:
75
  if data:
76
- text_content += data.text_content + "\n\n"
77
  else:
78
  text_content += ""
79
  return text_content
@@ -155,6 +155,7 @@ with gr.Blocks(theme=custom_theme, analytics_enabled=False, css=css) as demo:
155
  """ ## GPT4ALL
156
 
157
  7b quantized 4bit (q4_0)
 
158
 
159
  Type in the box below and click the button to generate answers to your most pressing questions!
160
 
 
73
  base_data = search_ddg(search).parse_results()
74
  for data in base_data:
75
  if data:
76
+ text_content += data.get("text_content") + "\n\n"
77
  else:
78
  text_content += ""
79
  return text_content
 
155
  """ ## GPT4ALL
156
 
157
  7b quantized 4bit (q4_0)
158
+ *with possibly a broken internet access support*
159
 
160
  Type in the box below and click the button to generate answers to your most pressing questions!
161