Some checks failed
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / merge-main-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda126-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-ollama-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-slim-images (push) Has been cancelled
Python CI / Format Backend (3.11.x) (push) Has been cancelled
Python CI / Format Backend (3.12.x) (push) Has been cancelled
Frontend Build / Format & Build Frontend (push) Has been cancelled
Frontend Build / Frontend Unit Tests (push) Has been cancelled
Close inactive issues / close-issues (push) Has been cancelled
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
import logging
|
|
|
|
import requests
|
|
from open_webui.retrieval.web.main import SearchResult
|
|
from yarl import URL
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
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.
|
|
Args:
|
|
query (str): The query to search for
|
|
count (int): The number of results to return
|
|
|
|
Returns:
|
|
list[SearchResult]: A list of search results
|
|
"""
|
|
jina_search_endpoint = "https://s.jina.ai/"
|
|
|
|
headers = {
|
|
"Accept": "application/json",
|
|
"Content-Type": "application/json",
|
|
"Authorization": api_key,
|
|
"X-Retain-Images": "none",
|
|
}
|
|
|
|
payload = {"q": query, "count": count if count <= 10 else 10}
|
|
|
|
url = str(URL(jina_search_endpoint))
|
|
response = requests.post(url, headers=headers, json=payload)
|
|
response.raise_for_status()
|
|
data = response.json()
|
|
|
|
results = []
|
|
for result in data["data"]:
|
|
results.append(
|
|
SearchResult(
|
|
link=result["url"],
|
|
title=result.get("title"),
|
|
snippet=result.get("content"),
|
|
)
|
|
)
|
|
|
|
return results
|