"docs/zh_CN/Compression/v2_scheduler.rst" did not exist on "0e0ee86de289c73b5b51b2d378c7b13f95e383c4"
searxng.py 3.21 KB
Newer Older
1
2
3
import logging
import requests

4
from typing import List, Optional
5

6
from apps.rag.search.main import SearchResult, get_filtered_results
Timothy J. Baek's avatar
Timothy J. Baek committed
7
from config import SRC_LOG_LEVELS
8
9
10
11
12

log = logging.getLogger(__name__)
log.setLevel(SRC_LOG_LEVELS["RAG"])


13
def search_searxng(
Timothy J. Baek's avatar
Timothy J. Baek committed
14
15
16
17
18
    query_url: str,
    query: str,
    count: int,
    filter_list: Optional[List[str]] = None,
    **kwargs,
19
) -> List[SearchResult]:
20
21
    """
    Search a SearXNG instance for a given query and return the results as a list of SearchResult objects.
22

23
    The function allows passing additional parameters such as language or time_range to tailor the search result.
24
25

    Args:
26
        query_url (str): The base URL of the SearXNG server.
27
28
        query (str): The search term or question to find in the SearXNG database.
        count (int): The maximum number of results to retrieve from the search.
29

30
31
    Keyword Args:
        language (str): Language filter for the search results; e.g., "en-US". Defaults to an empty string.
32
        safesearch (int): Safe search filter for safer web results; 0 = off, 1 = moderate, 2 = strict. Defaults to 1 (moderate).
33
34
        time_range (str): Time range for filtering results by date; e.g., "2023-04-05..today" or "all-time". Defaults to ''.
        categories: (Optional[List[str]]): Specific categories within which the search should be performed, defaulting to an empty string if not provided.
35

36
37
    Returns:
        List[SearchResult]: A list of SearchResults sorted by relevance score in descending order.
38

39
40
    Raise:
        requests.exceptions.RequestException: If a request error occurs during the search process.
41
    """
42

43
    # Default values for optional parameters are provided as empty strings or None when not specified.
44
    language = kwargs.get("language", "en-US")
45
    safesearch = kwargs.get("safesearch", "1")
46
47
    time_range = kwargs.get("time_range", "")
    categories = "".join(kwargs.get("categories", []))
48
49
50
51
52

    params = {
        "q": query,
        "format": "json",
        "pageno": 1,
53
        "safesearch": safesearch,
54
55
56
57
58
        "language": language,
        "time_range": time_range,
        "categories": categories,
        "theme": "simple",
        "image_proxy": 0,
59
60
    }

61
62
63
64
65
    # Legacy query format
    if "<query>" in query_url:
        # Strip all query parameters from the URL
        query_url = query_url.split("?")[0]

Lyuboslav Petrov's avatar
Lyuboslav Petrov committed
66
    log.debug(f"searching {query_url}")
67
68
69

    response = requests.get(
        query_url,
70
71
72
73
74
75
76
        headers={
            "User-Agent": "Open WebUI (https://github.com/open-webui/open-webui) RAG Bot",
            "Accept": "text/html",
            "Accept-Encoding": "gzip, deflate",
            "Accept-Language": "en-US,en;q=0.5",
            "Connection": "keep-alive",
        },
77
        params=params,
78
79
    )

80
81
82
    response.raise_for_status()  # Raise an exception for HTTP errors.

    json_response = response.json()
83
84
    results = json_response.get("results", [])
    sorted_results = sorted(results, key=lambda x: x.get("score", 0), reverse=True)
85
    if filter_list:
86
        sorted_results = get_filtered_results(sorted_results, filter_list)
87
88
89
90
    return [
        SearchResult(
            link=result["url"], title=result.get("title"), snippet=result.get("content")
        )
91
        for result in sorted_results[:count]
92
    ]