feat: add WEB_SEARCH_RESULT_COUNT to control max number of results

This commit is contained in:
Jun Siang Cheah
2024-05-11 19:07:36 +08:00
parent 635951b55c
commit fb8069123e
6 changed files with 12 additions and 11 deletions

View File

@@ -4,7 +4,7 @@ import logging
import requests
from apps.rag.search.main import SearchResult
from config import SRC_LOG_LEVELS
from config import SRC_LOG_LEVELS, WEB_SEARCH_RESULT_COUNT
log = logging.getLogger(__name__)
log.setLevel(SRC_LOG_LEVELS["RAG"])
@@ -39,5 +39,5 @@ def search_serpstack(
SearchResult(
link=result["url"], title=result.get("title"), snippet=result.get("snippet")
)
for result in results[:5]
for result in results[:WEB_SEARCH_RESULT_COUNT]
]