-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
48 lines (47 loc) · 1.46 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"required_api_version": "2",
"name": "Ollama",
"description": "A ulauncher extension allowing you to query and interact with an Ollama instance",
"developer_name": "Zach Russell",
"icon": "images/ollama.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "ollama_kw",
"type": "keyword",
"name": "Ollama",
"description": "Keyword to trigger the ollama extension",
"default_value": "ai"
},
{
"id": "ollama_host",
"type": "text",
"name": "Ollama Host",
"description": "Ollama host to connect to",
"default_value": "https://your.ollama.url"
},
{
"id": "ollama_default_model",
"type": "text",
"name": "Default Model",
"description": "Default model to use when communicating with ollama",
"default_value": "llama3:8b"
},
{
"id": "ollama_system_prompt",
"type": "text",
"name": "System Prompt",
"description": "Provide a system prompt to overwrite what is in your particular modelfile",
"default_value": "You are an inline assitant, keep your responses short and sweet."
},
{
"id": "ollama_headers",
"type": "text",
"name": "Ollama Headers",
"description": "Optional Headers to be passed on every ollama api request. Comma separated for multiple values.",
"default_value": ""
}
]
}