summaryrefslogtreecommitdiff
path: root/schema/json/Models.json
blob: 0b3b9c219575d0c01924cffa2e75d6ef6a131915 (plain)
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
{
  "title": "Models",
  "$ref": "#/definitions/src__continuedev__core__models__Models",
  "definitions": {
    "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"
        }
      }
    },
    "ContinueSDK": {
      "title": "ContinueSDK",
      "type": "object",
      "properties": {}
    },
    "src__continuedev__core__models__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/ContinueSDK"
        }
      },
      "required": [
        "default"
      ]
    }
  }
}