-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathendpoints_example.json
More file actions
90 lines (90 loc) · 2.28 KB
/
endpoints_example.json
File metadata and controls
90 lines (90 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[
{
"type": "transformers",
"urlSuffix": "vicuna7b",
"label": "vicuna-7b",
"isEnabled": false,
"isHidden": false,
"deviceName": "cuda",
"protocol": "http",
"serverAddress": "127.0.0.1",
"port": "64223",
"requiresAccessToken": false,
"maxTokens": 2060,
"userRole": "USER",
"assistantRole": "ASSISTANT",
"stopToken": "</s>",
"separator": " ",
"systemPrompt": "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. ",
"motdHeading": "cuda",
"motd": "acceleration enabled",
"motdHeadingColor": "#3bff3b",
"motdColor": ""
},
{
"type": "llamacpp",
"urlSuffix": "airoboros33b",
"label": "airoboros-33b-gguf",
"isEnabled": true,
"isHidden": false,
"deviceName": "cuda",
"protocol": "http",
"serverAddress": "127.0.0.1",
"port": "64222",
"requiresAccessToken": false,
"maxTokens": 2060,
"userRole": "Human",
"assistantRole": "Assistant",
"stopToken": "</s>",
"separator": " \n",
"systemPrompt": "",
"motdHeading": "",
"motd": "",
"motdHeadingColor": "#ff3b3b",
"motdColor": ""
},
{
"type": "openai",
"urlSuffix": "gpt-4",
"label": "gpt-4",
"isEnabled": true,
"isHidden": false,
"deviceName": "cloud",
"protocol": "https",
"serverAddress": "api.openai.com/v1/chat/completions",
"port": "443",
"requiresAccessToken": false,
"maxTokens": 100000,
"userRole": "user",
"assistantRole": "assistant",
"stopToken": "</s>",
"separator": " \n",
"systemPrompt": "",
"motdHeading": "",
"motd": "",
"motdHeadingColor": "#ff3b3b",
"motdColor": ""
},
{
"type": "openai",
"urlSuffix": "gpt-3.5-turbo",
"label": "gpt-3.5-turbo",
"isEnabled": true,
"isHidden": false,
"deviceName": "cloud",
"protocol": "https",
"serverAddress": "api.openai.com/v1/chat/completions",
"port": "443",
"requiresAccessToken": false,
"maxTokens": 100000,
"userRole": "user",
"assistantRole": "assistant",
"stopToken": "</s>",
"separator": " \n",
"systemPrompt": "",
"motdHeading": "",
"motd": "",
"motdHeadingColor": "#ff3b3b",
"motdColor": ""
}
]