Timothy Jaeryang Baek 3 months ago
parent
commit
3e15c8ab69
1 changed files with 2 additions and 2 deletions
  1. 2 2
      backend/open_webui/retrieval/web/duckduckgo.py

+ 2 - 2
backend/open_webui/retrieval/web/duckduckgo.py

@@ -2,8 +2,8 @@ import logging
 from typing import Optional
 
 from open_webui.retrieval.web.main import SearchResult, get_filtered_results
-from duckduckgo_search import DDGS
-from duckduckgo_search.exceptions import RatelimitException
+from ddgs import DDGS
+from ddgs.exceptions import RatelimitException
 from open_webui.env import SRC_LOG_LEVELS
 
 log = logging.getLogger(__name__)