forked from ShamanicArts/Flow.Launcher.Plugin.AI-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingsTemplate.yaml
More file actions
56 lines (48 loc) · 1.88 KB
/
SettingsTemplate.yaml
File metadata and controls
56 lines (48 loc) · 1.88 KB
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
49
50
51
52
53
54
55
56
body:
- type: input
attributes:
name: api_url
label: "LLM API Provider URL:"
description: "URL of the OpenAI-compatible API provider"
defaultValue: "https://openrouter.ai/api/v1/chat/completions"
- type: passwordBox
attributes:
name: api_key
label: "LLM API Provider API Key:"
description: "API key for your LLM API provider - it is recommended to set the API key as an environment variable instead."
- type: input
attributes:
name: default_model
label: "Default AI Model:"
description: "Select the AI model to use for queries"
defaultValue: "mistralai/mistral-small-3.2-24b-instruct:free"
- type: textarea
attributes:
name: system_prompt
label: "System Prompt:"
description: "System prompt to use for the AI"
defaultValue: "You are an assistant providing concise, factually accurate responses with no formatting. Reply ONLY with a plain-text answer: no markdown, lists, explanations, or extra text. Prioritize brevity and precise truth above all else."
- type: checkbox
attributes:
name: reasoning
label: "Enable reasoning:"
description: "Enable reasoning mode"
defaultValue: true
- type: input
attributes:
name: delimiter
label: "Prompt Delimiter:"
description: "Symbol that indicates when to send the prompt"
defaultValue: "||"
- type: checkbox
attributes:
name: full_response
label: "Show the full AI response:"
description: "Show the full AI response in the subtitle"
defaultValue: true
- type: input
attributes:
name: text_editor
label: "Text editor:"
description: "Enter the path to your preferred text editor"
defaultValue: "notepad.exe"