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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
|
{
"title": "ContinueConfig",
"$ref": "#/definitions/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"
},
"class_name": {
"title": "Class Name",
"default": "Step",
"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": {
"title": {
"title": "Title",
"description": "A title that will identify this model in the model selection dropdown",
"type": "string"
},
"system_message": {
"title": "System Message",
"description": "A system message that will always be followed by the LLM",
"type": "string"
},
"context_length": {
"title": "Context Length",
"description": "The maximum context length of the LLM in tokens, as counted by count_tokens.",
"default": 2048,
"type": "integer"
},
"unique_id": {
"title": "Unique Id",
"description": "The unique ID of the user.",
"type": "string"
},
"model": {
"title": "Model",
"description": "The name of the model to be used (e.g. gpt-4, codellama)",
"type": "string"
},
"max_tokens": {
"title": "Max Tokens",
"description": "The maximum number of tokens to generate.",
"default": 1024,
"type": "integer"
},
"stop_tokens": {
"title": "Stop Tokens",
"description": "Tokens that will stop the completion.",
"type": "array",
"items": {
"type": "string"
}
},
"timeout": {
"title": "Timeout",
"description": "Set the timeout for each request to the LLM. If you are running a local LLM that takes a while to respond, you might want to set this to avoid timeouts.",
"default": 300,
"type": "integer"
},
"verify_ssl": {
"title": "Verify Ssl",
"description": "Whether to verify SSL certificates for requests.",
"type": "boolean"
},
"ca_bundle_path": {
"title": "Ca Bundle Path",
"description": "Path to a custom CA bundle to use when making the HTTP request",
"type": "string"
},
"proxy": {
"title": "Proxy",
"description": "Proxy URL to use when making the HTTP request",
"type": "string"
},
"prompt_templates": {
"title": "Prompt Templates",
"description": "A dictionary of prompt templates that can be used to customize the behavior of the LLM in certain situations. For example, set the \"edit\" key in order to change the prompt that is used for the /edit slash command. Each value in the dictionary is a string templated in mustache syntax, and filled in at runtime with the variables specific to the situation. See the documentation for more information.",
"default": {},
"type": "object"
},
"api_key": {
"title": "Api Key",
"description": "The API key for the LLM provider.",
"type": "string"
}
},
"required": [
"model"
]
},
"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"
},
"summarize": {
"$ref": "#/definitions/LLM"
},
"edit": {
"$ref": "#/definitions/LLM"
},
"chat": {
"$ref": "#/definitions/LLM"
},
"saved": {
"title": "Saved",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/LLM"
}
},
"sdk": {
"$ref": "#/definitions/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": {}
},
"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",
"description": "The title of the ContextProvider. This is what must be typed in the input to trigger the ContextProvider.",
"type": "string"
},
"sdk": {
"title": "Sdk",
"description": "The ContinueSDK instance accessible by the ContextProvider",
"allOf": [
{
"$ref": "#/definitions/continuedev__core__context__ContinueSDK"
}
]
},
"display_title": {
"title": "Display Title",
"description": "The display title of the ContextProvider shown in the dropdown menu",
"type": "string"
},
"description": {
"title": "Description",
"description": "A description of the ContextProvider displayed in the dropdown menu",
"type": "string"
},
"dynamic": {
"title": "Dynamic",
"description": "Indicates whether the ContextProvider is dynamic",
"type": "boolean"
},
"requires_query": {
"title": "Requires Query",
"description": "Indicates whether the ContextProvider requires a query. For example, the SearchContextProvider requires you to type '@search <STRING_TO_SEARCH>'. This will change the behavior of the UI so that it can indicate the expectation for a query.",
"default": false,
"type": "boolean"
},
"selected_items": {
"title": "Selected Items",
"description": "List of selected items in the ContextProvider",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/ContextItem"
}
}
},
"required": [
"title",
"display_title",
"description",
"dynamic"
]
},
"continuedev__core__config__ContinueConfig": {
"title": "ContinueConfig",
"description": "Continue can be deeply customized by editing the `ContinueConfig` object in `~/.continue/config.py` (`%userprofile%\\.continue\\config.py` for Windows) on your machine. This class is instantiated from the config file for every new session.",
"type": "object",
"properties": {
"steps_on_startup": {
"title": "Steps On Startup",
"description": "Steps that will be automatically run at the beginning of a new session",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/Step"
}
},
"disallowed_steps": {
"title": "Disallowed Steps",
"description": "Steps that are not allowed to be run, and will be skipped if attempted",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"allow_anonymous_telemetry": {
"title": "Allow Anonymous Telemetry",
"description": "If this field is set to True, we will collect anonymous telemetry as described in the documentation page on telemetry. If set to False, we will not collect any data.",
"default": true,
"type": "boolean"
},
"models": {
"title": "Models",
"description": "Configuration for the models used by Continue. Read more about how to configure models in the documentation.",
"default": {
"default": {
"title": null,
"system_message": null,
"context_length": 2048,
"model": "gpt-4",
"max_tokens": 1024,
"stop_tokens": null,
"timeout": 300,
"verify_ssl": null,
"ca_bundle_path": null,
"proxy": null,
"prompt_templates": {},
"api_key": null,
"llm": null,
"class_name": "OpenAIFreeTrial"
},
"summarize": {
"title": null,
"system_message": null,
"context_length": 2048,
"model": "gpt-3.5-turbo",
"max_tokens": 1024,
"stop_tokens": null,
"timeout": 300,
"verify_ssl": null,
"ca_bundle_path": null,
"proxy": null,
"prompt_templates": {},
"api_key": null,
"llm": null,
"class_name": "OpenAIFreeTrial"
},
"edit": null,
"chat": null,
"saved": []
},
"allOf": [
{
"$ref": "#/definitions/Models"
}
]
},
"temperature": {
"title": "Temperature",
"description": "The temperature parameter for sampling from the LLM. Higher temperatures will result in more random output, while lower temperatures will result in more predictable output. This value ranges from 0 to 1.",
"default": 0.5,
"type": "number"
},
"custom_commands": {
"title": "Custom Commands",
"description": "An array of custom commands that allow you to reuse prompts. Each has name, description, and prompt properties. When you enter /<name> in the text input, it will act as a shortcut to the prompt.",
"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",
"description": "An array of slash commands that let you map custom Steps to a shortcut.",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/SlashCommand"
}
},
"on_traceback": {
"title": "On Traceback",
"description": "The step that will be run when a traceback is detected (when you use the shortcut cmd+shift+R)",
"allOf": [
{
"$ref": "#/definitions/Step"
}
]
},
"system_message": {
"title": "System Message",
"description": "A system message that will always be followed by the LLM",
"type": "string"
},
"policy_override": {
"title": "Policy Override",
"description": "A Policy object that can be used to override the default behavior of Continue, for example in order to build custom agents that take multiple steps at a time.",
"allOf": [
{
"$ref": "#/definitions/Policy"
}
]
},
"context_providers": {
"title": "Context Providers",
"description": "A list of ContextProvider objects that can be used to provide context to the LLM by typing '@'. Read more about ContextProviders in the documentation.",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/ContextProvider"
}
},
"user_token": {
"title": "User Token",
"description": "An optional token to identify the user.",
"type": "string"
},
"data_server_url": {
"title": "Data Server Url",
"description": "The URL of the server where development data is sent. No data is sent unless a valid user token is provided.",
"default": "https://us-west1-autodebug.cloudfunctions.net",
"type": "string"
},
"disable_summaries": {
"title": "Disable Summaries",
"description": "If set to `True`, Continue will not generate summaries for each Step. This can be useful if you want to save on compute.",
"default": false,
"type": "boolean"
}
}
}
}
}
|