Skip to content

Commit e06f238

Browse files
committed
testing OR on google search
1 parent 5c8901e commit e06f238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/engines/search/google_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def find_related_documents(self, keywords: List[str]) -> List[str]:
1818
return ["Error: Google API credentials are not configured."]
1919

2020

21-
query = " ".join(keywords)
21+
query = " OR ".join(keywords)
2222
print(f"--- [ENGINE: Google Search API] Searching for: '{query}' ---")
2323

2424
try:

0 commit comments

Comments
 (0)