We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8901e commit e06f238Copy full SHA for e06f238
backend/engines/search/google_search.py
@@ -18,7 +18,7 @@ def find_related_documents(self, keywords: List[str]) -> List[str]:
18
return ["Error: Google API credentials are not configured."]
19
20
21
- query = " ".join(keywords)
+ query = " OR ".join(keywords)
22
print(f"--- [ENGINE: Google Search API] Searching for: '{query}' ---")
23
24
try:
0 commit comments