.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.ollama Namespace Reference

Functions

 request (query, params)
 
EngineResults response (resp)
 

Variables

dict about
 
list categories = ["it", "repos"]
 
str base_url = "https://ollama.com"
 
str results_xpath = '//li[@x-test-model]'
 
str title_xpath = './/span[@x-test-search-response-title]/text()'
 
str content_xpath = './/p[@class="max-w-lg break-words text-neutral-800 text-md"]/text()'
 
str url_xpath = './a/@href'
 
str publish_date_xpath = './/span[contains(@class, "flex items-center")]/@title'
 

Detailed Description

Ollama model search engine for searxng

Function Documentation

◆ request()

searx.engines.ollama.request ( query,
params )

Definition at line 30 of file ollama.py.

30def request(query, params):
31 query_params = {"q": query}
32
33 params['url'] = f"{base_url}/search?{urlencode(query_params)}"
34 return params
35
36

◆ response()

EngineResults searx.engines.ollama.response ( resp)

Definition at line 37 of file ollama.py.

37def response(resp) -> EngineResults:
38 res = EngineResults()
39
40 dom = html.fromstring(resp.text)
41
42 for item in eval_xpath_list(dom, results_xpath):
43 published_date = None
44 try:
45 published_date = datetime.strptime(
46 extract_text(eval_xpath(item, publish_date_xpath)), "%b %d, %Y %I:%M %p %Z"
47 )
48 except ValueError:
49 pass
50
51 res.add(
52 res.types.MainResult(
53 title=extract_text(eval_xpath(item, title_xpath)),
54 content=extract_text(eval_xpath(item, content_xpath)),
55 url=f"{base_url}{eval_xpath_getindex(item, url_xpath, 0)}",
56 publishedDate=published_date,
57 )
58 )
59
60 return res

Variable Documentation

◆ about

dict searx.engines.ollama.about
Initial value:
1= {
2 "website": "https://ollama.com",
3 "wikidata_id": "Q124636097",
4 "use_official_api": False,
5 "require_api_key": False,
6 "results": "HTML",
7}

Definition at line 11 of file ollama.py.

◆ base_url

str searx.engines.ollama.base_url = "https://ollama.com"

Definition at line 21 of file ollama.py.

◆ categories

list searx.engines.ollama.categories = ["it", "repos"]

Definition at line 19 of file ollama.py.

◆ content_xpath

str searx.engines.ollama.content_xpath = './/p[@class="max-w-lg break-words text-neutral-800 text-md"]/text()'

Definition at line 25 of file ollama.py.

◆ publish_date_xpath

str searx.engines.ollama.publish_date_xpath = './/span[contains(@class, "flex items-center")]/@title'

Definition at line 27 of file ollama.py.

◆ results_xpath

str searx.engines.ollama.results_xpath = '//li[@x-test-model]'

Definition at line 23 of file ollama.py.

◆ title_xpath

str searx.engines.ollama.title_xpath = './/span[@x-test-search-response-title]/text()'

Definition at line 24 of file ollama.py.

◆ url_xpath

str searx.engines.ollama.url_xpath = './a/@href'

Definition at line 26 of file ollama.py.