mirror of
https://github.com/open-webui/open-webui
synced 2025-04-05 05:10:46 +00:00
refac: web search
This commit is contained in:
parent
70498d7bbe
commit
5c60081c1f
@ -86,6 +86,7 @@ from open_webui.config import (
|
|||||||
RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
|
RAG_WEB_SEARCH_DOMAIN_FILTER_LIST,
|
||||||
RAG_WEB_SEARCH_ENGINE,
|
RAG_WEB_SEARCH_ENGINE,
|
||||||
RAG_WEB_SEARCH_RESULT_COUNT,
|
RAG_WEB_SEARCH_RESULT_COUNT,
|
||||||
|
JINA_API_KEY,
|
||||||
SEARCHAPI_API_KEY,
|
SEARCHAPI_API_KEY,
|
||||||
SEARCHAPI_ENGINE,
|
SEARCHAPI_ENGINE,
|
||||||
SEARXNG_QUERY_URL,
|
SEARXNG_QUERY_URL,
|
||||||
@ -94,6 +95,8 @@ from open_webui.config import (
|
|||||||
SERPSTACK_API_KEY,
|
SERPSTACK_API_KEY,
|
||||||
SERPSTACK_HTTPS,
|
SERPSTACK_HTTPS,
|
||||||
TAVILY_API_KEY,
|
TAVILY_API_KEY,
|
||||||
|
BING_SEARCH_V7_ENDPOINT,
|
||||||
|
BING_SEARCH_V7_SUBSCRIPTION_KEY,
|
||||||
TIKA_SERVER_URL,
|
TIKA_SERVER_URL,
|
||||||
UPLOAD_DIR,
|
UPLOAD_DIR,
|
||||||
YOUTUBE_LOADER_LANGUAGE,
|
YOUTUBE_LOADER_LANGUAGE,
|
||||||
@ -105,8 +108,6 @@ from open_webui.env import (
|
|||||||
SRC_LOG_LEVELS,
|
SRC_LOG_LEVELS,
|
||||||
DEVICE_TYPE,
|
DEVICE_TYPE,
|
||||||
DOCKER,
|
DOCKER,
|
||||||
BING_SEARCH_V7_ENDPOINT,
|
|
||||||
BING_SEARCH_V7_SUBSCRIPTION_KEY,
|
|
||||||
)
|
)
|
||||||
from open_webui.utils.misc import (
|
from open_webui.utils.misc import (
|
||||||
calculate_sha256,
|
calculate_sha256,
|
||||||
@ -179,6 +180,10 @@ app.state.config.SERPLY_API_KEY = SERPLY_API_KEY
|
|||||||
app.state.config.TAVILY_API_KEY = TAVILY_API_KEY
|
app.state.config.TAVILY_API_KEY = TAVILY_API_KEY
|
||||||
app.state.config.SEARCHAPI_API_KEY = SEARCHAPI_API_KEY
|
app.state.config.SEARCHAPI_API_KEY = SEARCHAPI_API_KEY
|
||||||
app.state.config.SEARCHAPI_ENGINE = SEARCHAPI_ENGINE
|
app.state.config.SEARCHAPI_ENGINE = SEARCHAPI_ENGINE
|
||||||
|
app.state.config.JINA_API_KEY = JINA_API_KEY
|
||||||
|
app.state.config.BING_SEARCH_V7_ENDPOINT = BING_SEARCH_V7_ENDPOINT
|
||||||
|
app.state.config.BING_SEARCH_V7_SUBSCRIPTION_KEY = BING_SEARCH_V7_SUBSCRIPTION_KEY
|
||||||
|
|
||||||
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT = RAG_WEB_SEARCH_RESULT_COUNT
|
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT = RAG_WEB_SEARCH_RESULT_COUNT
|
||||||
app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS = RAG_WEB_SEARCH_CONCURRENT_REQUESTS
|
app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS = RAG_WEB_SEARCH_CONCURRENT_REQUESTS
|
||||||
|
|
||||||
@ -438,6 +443,9 @@ async def get_rag_config(user=Depends(get_admin_user)):
|
|||||||
"tavily_api_key": app.state.config.TAVILY_API_KEY,
|
"tavily_api_key": app.state.config.TAVILY_API_KEY,
|
||||||
"searchapi_api_key": app.state.config.SEARCHAPI_API_KEY,
|
"searchapi_api_key": app.state.config.SEARCHAPI_API_KEY,
|
||||||
"seaarchapi_engine": app.state.config.SEARCHAPI_ENGINE,
|
"seaarchapi_engine": app.state.config.SEARCHAPI_ENGINE,
|
||||||
|
"jina_api_key": app.state.config.JINA_API_KEY,
|
||||||
|
"bing_search_v7_endpoint": app.state.config.BING_SEARCH_V7_ENDPOINT,
|
||||||
|
"bing_search_v7_subscription_key": app.state.config.BING_SEARCH_V7_SUBSCRIPTION_KEY,
|
||||||
"result_count": app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
"result_count": app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
||||||
"concurrent_requests": app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
|
"concurrent_requests": app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
|
||||||
},
|
},
|
||||||
@ -480,6 +488,9 @@ class WebSearchConfig(BaseModel):
|
|||||||
tavily_api_key: Optional[str] = None
|
tavily_api_key: Optional[str] = None
|
||||||
searchapi_api_key: Optional[str] = None
|
searchapi_api_key: Optional[str] = None
|
||||||
searchapi_engine: Optional[str] = None
|
searchapi_engine: Optional[str] = None
|
||||||
|
jina_api_key: Optional[str] = None
|
||||||
|
bing_search_v7_endpoint: Optional[str] = None
|
||||||
|
bing_search_v7_subscription_key: Optional[str] = None
|
||||||
result_count: Optional[int] = None
|
result_count: Optional[int] = None
|
||||||
concurrent_requests: Optional[int] = None
|
concurrent_requests: Optional[int] = None
|
||||||
|
|
||||||
@ -546,6 +557,15 @@ async def update_rag_config(form_data: ConfigUpdateForm, user=Depends(get_admin_
|
|||||||
app.state.config.TAVILY_API_KEY = form_data.web.search.tavily_api_key
|
app.state.config.TAVILY_API_KEY = form_data.web.search.tavily_api_key
|
||||||
app.state.config.SEARCHAPI_API_KEY = form_data.web.search.searchapi_api_key
|
app.state.config.SEARCHAPI_API_KEY = form_data.web.search.searchapi_api_key
|
||||||
app.state.config.SEARCHAPI_ENGINE = form_data.web.search.searchapi_engine
|
app.state.config.SEARCHAPI_ENGINE = form_data.web.search.searchapi_engine
|
||||||
|
|
||||||
|
app.state.config.JINA_API_KEY = form_data.web.search.jina_api_key
|
||||||
|
app.state.config.BING_SEARCH_V7_ENDPOINT = (
|
||||||
|
form_data.web.search.bing_search_v7_endpoint
|
||||||
|
)
|
||||||
|
app.state.config.BING_SEARCH_V7_SUBSCRIPTION_KEY = (
|
||||||
|
form_data.web.search.bing_search_v7_subscription_key
|
||||||
|
)
|
||||||
|
|
||||||
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT = form_data.web.search.result_count
|
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT = form_data.web.search.result_count
|
||||||
app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS = (
|
app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS = (
|
||||||
form_data.web.search.concurrent_requests
|
form_data.web.search.concurrent_requests
|
||||||
@ -587,6 +607,9 @@ async def update_rag_config(form_data: ConfigUpdateForm, user=Depends(get_admin_
|
|||||||
"serachapi_api_key": app.state.config.SEARCHAPI_API_KEY,
|
"serachapi_api_key": app.state.config.SEARCHAPI_API_KEY,
|
||||||
"searchapi_engine": app.state.config.SEARCHAPI_ENGINE,
|
"searchapi_engine": app.state.config.SEARCHAPI_ENGINE,
|
||||||
"tavily_api_key": app.state.config.TAVILY_API_KEY,
|
"tavily_api_key": app.state.config.TAVILY_API_KEY,
|
||||||
|
"jina_api_key": app.state.config.JINA_API_KEY,
|
||||||
|
"bing_search_v7_endpoint": app.state.config.BING_SEARCH_V7_ENDPOINT,
|
||||||
|
"bing_search_v7_subscription_key": app.state.config.BING_SEARCH_V7_SUBSCRIPTION_KEY,
|
||||||
"result_count": app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
"result_count": app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
||||||
"concurrent_requests": app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
|
"concurrent_requests": app.state.config.RAG_WEB_SEARCH_CONCURRENT_REQUESTS,
|
||||||
},
|
},
|
||||||
@ -1163,11 +1186,15 @@ def search_web(engine: str, query: str) -> list[SearchResult]:
|
|||||||
else:
|
else:
|
||||||
raise Exception("No SEARCHAPI_API_KEY found in environment variables")
|
raise Exception("No SEARCHAPI_API_KEY found in environment variables")
|
||||||
elif engine == "jina":
|
elif engine == "jina":
|
||||||
return search_jina(query, app.state.config.RAG_WEB_SEARCH_RESULT_COUNT)
|
return search_jina(
|
||||||
|
app.state.config.JINA_API_KEY,
|
||||||
|
query,
|
||||||
|
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
||||||
|
)
|
||||||
elif engine == "bing":
|
elif engine == "bing":
|
||||||
return search_bing(
|
return search_bing(
|
||||||
BING_SEARCH_V7_SUBSCRIPTION_KEY,
|
app.state.config.BING_SEARCH_V7_SUBSCRIPTION_KEY,
|
||||||
BING_SEARCH_V7_ENDPOINT,
|
app.state.config.BING_SEARCH_V7_ENDPOINT,
|
||||||
str(DEFAULT_LOCALE),
|
str(DEFAULT_LOCALE),
|
||||||
query,
|
query,
|
||||||
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
app.state.config.RAG_WEB_SEARCH_RESULT_COUNT,
|
||||||
|
@ -9,7 +9,7 @@ log = logging.getLogger(__name__)
|
|||||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||||
|
|
||||||
|
|
||||||
def search_jina(query: str, count: int) -> list[SearchResult]:
|
def search_jina(api_key: str, query: str, count: int) -> list[SearchResult]:
|
||||||
"""
|
"""
|
||||||
Search using Jina's Search API and return the results as a list of SearchResult objects.
|
Search using Jina's Search API and return the results as a list of SearchResult objects.
|
||||||
Args:
|
Args:
|
||||||
@ -20,9 +20,7 @@ def search_jina(query: str, count: int) -> list[SearchResult]:
|
|||||||
list[SearchResult]: A list of search results
|
list[SearchResult]: A list of search results
|
||||||
"""
|
"""
|
||||||
jina_search_endpoint = "https://s.jina.ai/"
|
jina_search_endpoint = "https://s.jina.ai/"
|
||||||
headers = {
|
headers = {"Accept": "application/json", "Authorization": f"Bearer {api_key}"}
|
||||||
"Accept": "application/json",
|
|
||||||
}
|
|
||||||
url = str(URL(jina_search_endpoint + query))
|
url = str(URL(jina_search_endpoint + query))
|
||||||
response = requests.get(url, headers=headers)
|
response = requests.get(url, headers=headers)
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
|
@ -1218,6 +1218,12 @@ TAVILY_API_KEY = PersistentConfig(
|
|||||||
os.getenv("TAVILY_API_KEY", ""),
|
os.getenv("TAVILY_API_KEY", ""),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
JINA_API_KEY = PersistentConfig(
|
||||||
|
"JINA_API_KEY",
|
||||||
|
"rag.web.search.jina_api_key",
|
||||||
|
os.getenv("JINA_API_KEY", ""),
|
||||||
|
)
|
||||||
|
|
||||||
SEARCHAPI_API_KEY = PersistentConfig(
|
SEARCHAPI_API_KEY = PersistentConfig(
|
||||||
"SEARCHAPI_API_KEY",
|
"SEARCHAPI_API_KEY",
|
||||||
"rag.web.search.searchapi_api_key",
|
"rag.web.search.searchapi_api_key",
|
||||||
@ -1230,6 +1236,21 @@ SEARCHAPI_ENGINE = PersistentConfig(
|
|||||||
os.getenv("SEARCHAPI_ENGINE", ""),
|
os.getenv("SEARCHAPI_ENGINE", ""),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
BING_SEARCH_V7_ENDPOINT = PersistentConfig(
|
||||||
|
"BING_SEARCH_V7_ENDPOINT",
|
||||||
|
"rag.web.search.bing_search_v7_endpoint",
|
||||||
|
os.environ.get(
|
||||||
|
"BING_SEARCH_V7_ENDPOINT", "https://api.bing.microsoft.com/v7.0/search"
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
BING_SEARCH_V7_SUBSCRIPTION_KEY = PersistentConfig(
|
||||||
|
"BING_SEARCH_V7_SUBSCRIPTION_KEY",
|
||||||
|
"rag.web.search.bing_search_v7_subscription_key",
|
||||||
|
os.environ.get("BING_SEARCH_V7_SUBSCRIPTION_KEY", ""),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
RAG_WEB_SEARCH_RESULT_COUNT = PersistentConfig(
|
RAG_WEB_SEARCH_RESULT_COUNT = PersistentConfig(
|
||||||
"RAG_WEB_SEARCH_RESULT_COUNT",
|
"RAG_WEB_SEARCH_RESULT_COUNT",
|
||||||
"rag.web.search.result_count",
|
"rag.web.search.result_count",
|
||||||
|
@ -199,9 +199,9 @@ SAFE_MODE = os.environ.get("SAFE_MODE", "false").lower() == "true"
|
|||||||
# ENABLE_FORWARD_USER_INFO_HEADERS
|
# ENABLE_FORWARD_USER_INFO_HEADERS
|
||||||
####################################
|
####################################
|
||||||
|
|
||||||
ENABLE_FORWARD_USER_INFO_HEADERS = os.environ.get(
|
ENABLE_FORWARD_USER_INFO_HEADERS = (
|
||||||
"ENABLE_FORWARD_USER_INFO_HEADERS", "False"
|
os.environ.get("ENABLE_FORWARD_USER_INFO_HEADERS", "False").lower() == "true"
|
||||||
).lower() == "true"
|
)
|
||||||
|
|
||||||
|
|
||||||
####################################
|
####################################
|
||||||
@ -391,11 +391,3 @@ else:
|
|||||||
####################################
|
####################################
|
||||||
|
|
||||||
OFFLINE_MODE = os.environ.get("OFFLINE_MODE", "false").lower() == "true"
|
OFFLINE_MODE = os.environ.get("OFFLINE_MODE", "false").lower() == "true"
|
||||||
|
|
||||||
####################################
|
|
||||||
# WEB SEARCH
|
|
||||||
####################################
|
|
||||||
|
|
||||||
BING_SEARCH_V7_ENDPOINT = os.environ.get("BING_SEARCH_V7_ENDPOINT", "https://api.bing.microsoft.com/v7.0/search")
|
|
||||||
|
|
||||||
BING_SEARCH_V7_SUBSCRIPTION_KEY = os.environ.get("BING_SEARCH_V7_SUBSCRIPTION_KEY", "")
|
|
@ -223,6 +223,46 @@
|
|||||||
bind:value={webConfig.search.tavily_api_key}
|
bind:value={webConfig.search.tavily_api_key}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
{:else if webConfig.search.engine === 'jina'}
|
||||||
|
<div>
|
||||||
|
<div class=" self-center text-xs font-medium mb-1">
|
||||||
|
{$i18n.t('Jina API Key')}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SensitiveInput
|
||||||
|
placeholder={$i18n.t('Enter Jina API Key')}
|
||||||
|
bind:value={webConfig.search.jina_api_key}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{:else if webConfig.search.engine === 'bing'}
|
||||||
|
<div>
|
||||||
|
<div class=" self-center text-xs font-medium mb-1">
|
||||||
|
{$i18n.t('Bing Search V7 Endpoint')}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex w-full">
|
||||||
|
<div class="flex-1">
|
||||||
|
<input
|
||||||
|
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
|
||||||
|
type="text"
|
||||||
|
placeholder={$i18n.t('Enter Bing Search V7 Endpoint')}
|
||||||
|
bind:value={webConfig.search.bing_search_v7_endpoint}
|
||||||
|
autocomplete="off"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-2">
|
||||||
|
<div class=" self-center text-xs font-medium mb-1">
|
||||||
|
{$i18n.t('Bing Search V7 Subscription Key')}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<SensitiveInput
|
||||||
|
placeholder={$i18n.t('Enter Bing Search V7 Subscription Key')}
|
||||||
|
bind:value={webConfig.search.bing_search_v7_subscription_key}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
Loading…
Reference in New Issue
Block a user