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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
{
"title": "ContinueConfig",
"$ref": "#/definitions/src__continuedev__core__config__ContinueConfig",
"definitions": {
"FunctionCall": {
"title": "FunctionCall",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"arguments": {
"title": "Arguments",
"type": "string"
}
},
"required": [
"name",
"arguments"
]
},
"ChatMessage": {
"title": "ChatMessage",
"type": "object",
"properties": {
"role": {
"title": "Role",
"enum": [
"assistant",
"user",
"system",
"function"
],
"type": "string"
},
"content": {
"title": "Content",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"summary": {
"title": "Summary",
"type": "string"
},
"function_call": {
"$ref": "#/definitions/FunctionCall"
}
},
"required": [
"role",
"summary"
]
},
"Step": {
"title": "Step",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"hide": {
"title": "Hide",
"default": false,
"type": "boolean"
},
"description": {
"title": "Description",
"type": "string"
},
"system_message": {
"title": "System Message",
"type": "string"
},
"chat_context": {
"title": "Chat Context",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/ChatMessage"
}
},
"manage_own_chat_context": {
"title": "Manage Own Chat Context",
"default": false,
"type": "boolean"
}
}
},
"LLM": {
"title": "LLM",
"type": "object",
"properties": {
"requires_api_key": {
"title": "Requires Api Key",
"type": "string"
},
"requires_unique_id": {
"title": "Requires Unique Id",
"default": false,
"type": "boolean"
},
"requires_write_log": {
"title": "Requires Write Log",
"default": false,
"type": "boolean"
},
"system_message": {
"title": "System Message",
"type": "string"
}
}
},
"src__continuedev__core__models__ContinueSDK": {
"title": "ContinueSDK",
"type": "object",
"properties": {}
},
"Models": {
"title": "Models",
"description": "Main class that holds the current model configuration",
"type": "object",
"properties": {
"default": {
"$ref": "#/definitions/LLM"
},
"small": {
"$ref": "#/definitions/LLM"
},
"medium": {
"$ref": "#/definitions/LLM"
},
"large": {
"$ref": "#/definitions/LLM"
},
"edit": {
"$ref": "#/definitions/LLM"
},
"chat": {
"$ref": "#/definitions/LLM"
},
"sdk": {
"$ref": "#/definitions/src__continuedev__core__models__ContinueSDK"
}
},
"required": [
"default"
]
},
"CustomCommand": {
"title": "CustomCommand",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
}
},
"required": [
"name",
"prompt",
"description"
]
},
"SlashCommand": {
"title": "SlashCommand",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"step": {
"title": "Step"
},
"params": {
"title": "Params",
"default": {},
"type": "object"
}
},
"required": [
"name",
"description",
"step"
]
},
"Policy": {
"title": "Policy",
"description": "A rule that determines which step to take next",
"type": "object",
"properties": {}
},
"src__continuedev__core__context__ContinueSDK": {
"title": "ContinueSDK",
"description": "To avoid circular imports",
"type": "object",
"properties": {}
},
"ContextItemId": {
"title": "ContextItemId",
"description": "A ContextItemId is a unique identifier for a ContextItem.",
"type": "object",
"properties": {
"provider_title": {
"title": "Provider Title",
"type": "string"
},
"item_id": {
"title": "Item Id",
"type": "string"
}
},
"required": [
"provider_title",
"item_id"
]
},
"ContextItemDescription": {
"title": "ContextItemDescription",
"description": "A ContextItemDescription is a description of a ContextItem that is displayed to the user when they type '@'.\n\nThe id can be used to retrieve the ContextItem from the ContextManager.",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"id": {
"$ref": "#/definitions/ContextItemId"
}
},
"required": [
"name",
"description",
"id"
]
},
"ContextItem": {
"title": "ContextItem",
"description": "A ContextItem is a single item that is stored in the ContextManager.",
"type": "object",
"properties": {
"description": {
"$ref": "#/definitions/ContextItemDescription"
},
"content": {
"title": "Content",
"type": "string"
},
"editing": {
"title": "Editing",
"default": false,
"type": "boolean"
},
"editable": {
"title": "Editable",
"default": false,
"type": "boolean"
}
},
"required": [
"description",
"content"
]
},
"ContextProvider": {
"title": "ContextProvider",
"description": "The ContextProvider class is a plugin that lets you provide new information to the LLM by typing '@'.\nWhen you type '@', the context provider will be asked to populate a list of options.\nThese options will be updated on each keystroke.\nWhen you hit enter on an option, the context provider will add that item to the autopilot's list of context (which is all stored in the ContextManager object).",
"type": "object",
"properties": {
"title": {
"title": "Title",
"type": "string"
},
"sdk": {
"$ref": "#/definitions/src__continuedev__core__context__ContinueSDK"
},
"selected_items": {
"title": "Selected Items",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/ContextItem"
}
}
},
"required": [
"title"
]
},
"src__continuedev__core__config__ContinueConfig": {
"title": "ContinueConfig",
"description": "A pydantic class for the continue config file.",
"type": "object",
"properties": {
"steps_on_startup": {
"title": "Steps On Startup",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/Step"
}
},
"disallowed_steps": {
"title": "Disallowed Steps",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"allow_anonymous_telemetry": {
"title": "Allow Anonymous Telemetry",
"default": true,
"type": "boolean"
},
"models": {
"title": "Models",
"default": {
"default": {
"requires_api_key": null,
"requires_unique_id": true,
"requires_write_log": true,
"system_message": null,
"model": "gpt-4",
"api_key": null,
"llm": null,
"name": null,
"class_name": "MaybeProxyOpenAI"
},
"small": null,
"medium": {
"requires_api_key": null,
"requires_unique_id": true,
"requires_write_log": true,
"system_message": null,
"model": "gpt-3.5-turbo",
"api_key": null,
"llm": null,
"name": null,
"class_name": "MaybeProxyOpenAI"
},
"large": null,
"edit": null,
"chat": null
},
"allOf": [
{
"$ref": "#/definitions/Models"
}
]
},
"temperature": {
"title": "Temperature",
"default": 0.5,
"type": "number"
},
"custom_commands": {
"title": "Custom Commands",
"default": [
{
"name": "test",
"prompt": "Write a comprehensive set of unit tests for the selected code. It should setup, run tests that check for correctness including important edge cases, and teardown. Ensure that the tests are complete and sophisticated. Give the tests just as chat output, don't edit any file.",
"description": "This is an example custom command. Use /config to edit it and create more"
}
],
"type": "array",
"items": {
"$ref": "#/definitions/CustomCommand"
}
},
"slash_commands": {
"title": "Slash Commands",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/SlashCommand"
}
},
"on_traceback": {
"$ref": "#/definitions/Step"
},
"system_message": {
"title": "System Message",
"type": "string"
},
"policy_override": {
"$ref": "#/definitions/Policy"
},
"context_providers": {
"title": "Context Providers",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/ContextProvider"
}
}
}
}
}
}
|