-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.ini
41 lines (34 loc) · 1.06 KB
/
settings.ini
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
[laiser]
; required if you are running this as a server with the web GUI
BINDING_ADDRESS = 192.168.0.196
BINDING_PORT = 1313
; You must use one of llama.cpp or ollama.
; You can fill out one or both, doesn't matter.
[llamaCPP]
LLAMA_IP = 192.168.0.196
LLAMA_PORT = 8080
[ollama]
; URL without any endpoints:
OLLAMA_BASE_URL = http://localhost:11434
; change to your URL:
OLLAMA_URL = http://localhost:11434/api/generate
; the model you're using:
OLLAMA_MODEL = stablelm-zephyr:latest
[default_API]
; 'llama.cpp' or 'ollama', depending which you're using
API_TO_USE = llama.cpp
[status_messages]
; output the answer or error only. 'true' to only print the response
silent = false
[advanced]
; Changing these settings could negatively affect accuracy.
; This is considered to be "tuned" already,
; so playing with them is experimental.
; Amount of search results to fetch:
SEARCH_RESULT_COUNT = 3
; Amount of news results to fetch:
NEWS_RESULT_COUNT = 3
; trim summary to N amount of lines:
TRIM_WIKIPEDIA_SUMMARY = True
; number of lines to trim to:
TRIM_WIKIPEDIA_LINES = 7