mohammadKa143 commited on
Commit
6c32517
·
verified ·
1 Parent(s): 3c5d7bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def search_duckduckgo(topic : str)-> list:
33
  A list of dictionaries, where each dictionary represents a search result
34
  and contains keys like 'title', 'href', and 'body'.
35
  """
36
- results = DDGS().text(topic, max_results=10)
37
  return results
38
 
39
 
 
33
  A list of dictionaries, where each dictionary represents a search result
34
  and contains keys like 'title', 'href', and 'body'.
35
  """
36
+ results = DDGS().text(topic, max_results=3)
37
  return results
38
 
39