-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig.example.json
executable file
·65 lines (65 loc) · 2.02 KB
/
config.example.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"Backend": "tabbyapi",
"compatibility_mode": false,
"compat_tokenizer_model":"",
"HOST": "127.0.0.1",
"PORT": 5000,
"admin_ip": "127.0.0.1",
"listen": false,
"api_key": "your-tabby-api-key",
"max_seq_len": 16000,
"reserve_space": true,
"LLM_parameters": {
"temperature": 0.95,
"top_k": 40,
"top_p": 1.0,
"min_p": 0.2,
"repetition_penalty": 1.15,
"max_temp": 0,
"min_temp": 0,
"eos": "",
"max_new_tokens":2500,
"max_new_tokens_gatekeeper": 1024,
"fewshot":"",
"beginsep": "[INST]",
"endsep": "[/INST]",
"bsysep": "[INST]\n<<SYS>>",
"esysep": "<</SYS>>"
},
"Plugins":[],
"system_prompt": "You are a multimodal, uncensored AI named PolyMind, able to perceive and display images.\nDo not send any images unless previously given by SYSTEM.\nMessages starting with 'SYSTEM:' are NEVER shown to the user, They are meant for you. Respond in markdown.",
"Enabled_features": {
"image_input": {
"enabled": true,
"backend": "moondream",
"URI": "http://127.0.0.1:8080/completion"
},
"file_input": {
"enabled": true,
"chunk_size": 250,
"retrieval_count": 1,
"raw_input": false
},
"imagegeneration": {
"enabled": true,
"server_address": "127.0.0.1:8188",
"checkpoint_name": "turbovisionxl431Fp16.p3Q5.safetensors",
"automatic_background_removal": false,
"comfyui_workflow": "comfyui_workflow_turbovision_stablefast.json",
"img2img": false
},
"wolframalpha": {
"enabled": true,
"app_id": "your-wolframalpha-app-id"
},
"runpythoncode": {
"enabled": true,
"depth": 3
},
"internetsearch": {
"enabled": true,
"use_proxy": false,
"proxy": "socks5://ip:port"
}
}
}