mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
feat: prototype frontend web search integration
This commit is contained in:
@@ -4,7 +4,7 @@ import logging
|
||||
import requests
|
||||
|
||||
from apps.rag.search.main import SearchResult
|
||||
from config import SRC_LOG_LEVELS, WEB_SEARCH_RESULT_COUNT
|
||||
from config import SRC_LOG_LEVELS, RAG_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[:WEB_SEARCH_RESULT_COUNT]
|
||||
for result in results[:RAG_WEB_SEARCH_RESULT_COUNT]
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user