forked from TabbyML/registry-tabby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
models.json
173 lines (173 loc) · 9.85 KB
/
models.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
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
[
{
"name": "StarCoder-1B",
"provider_url": "https://huggingface.co/bigcode/starcoderbase-1b",
"license_name": "BigCode-OpenRAIL-M",
"license_url": "https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement",
"prompt_template": "<fim_prefix>{prefix}<fim_suffix>{suffix}<fim_middle>",
"urls": [
"https://huggingface.co/TabbyML/StarCoder-1B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/StarCoder-1B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "1bb6441486d102db03dac30c82d6b1029ee4f9f5d73f27444fa58cbfcd7cfa0f"
},
{
"name": "StarCoder-3B",
"provider_url": "https://huggingface.co/bigcode/starcoderbase-3b",
"license_name": "BigCode-OpenRAIL-M",
"license_url": "https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement",
"prompt_template": "<fim_prefix>{prefix}<fim_suffix>{suffix}<fim_middle>",
"urls": [
"https://huggingface.co/TabbyML/StarCoder-3B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/StarCoder-3B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "9798b7cba84ade7c69ff9f033d60c954e16b18f4d01829993b5fe7e33a49ba81"
},
{
"name": "StarCoder-7B",
"provider_url": "https://huggingface.co/bigcode/starcoderbase-7b",
"license_name": "BigCode-OpenRAIL-M",
"license_url": "https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement",
"prompt_template": "<fim_prefix>{prefix}<fim_suffix>{suffix}<fim_middle>",
"urls": [
"https://huggingface.co/TabbyML/StarCoder-7B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/StarCoder-7B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "33dfcc7e216f1a072b4e16cd3bb19a0e55f5874ed319416435c8fc99216b8bfa"
},
{
"name": "CodeLlama-7B",
"provider_url": "https://huggingface.co/codellama/CodeLlama-7b-hf",
"license_name": "Llama 2",
"license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
"prompt_template": "<PRE> {prefix} <SUF>{suffix} <MID>",
"urls": [
"https://huggingface.co/TabbyML/CodeLlama-7B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/CodeLlama-7B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "2ae20aa293734400f06f0e900a843f6110604c832b94c860b5a41177492c117b"
},
{
"name": "CodeLlama-13B",
"provider_url": "https://huggingface.co/codellama/CodeLlama-13b-hf",
"license_name": "Llama 2",
"license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
"prompt_template": "<PRE> {prefix} <SUF>{suffix} <MID>",
"urls": [
"https://huggingface.co/TabbyML/CodeLlama-13B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/CodeLlama-13B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "bf333bc63648f0130065737e1ef98f9b49064d5bddeaca2c604d17c8b44325b7"
},
{
"name": "WizardCoder-3B",
"provider_url": "https://huggingface.co/WizardLM/WizardCoder-3B-V1.0",
"license_name": "BigCode-OpenRAIL-M",
"license_url": "https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement",
"chat_template": "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '### Instruction:\n' + message['content'] + '\n### Response:\n' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + '\n' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
"urls": [
"https://huggingface.co/TabbyML/WizardCoder-3B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/WizardCoder-3B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "9397dda06b86612682ec019b347d78eb4ad9ce8efeefe1366ff5483359ed8c07"
},
{
"name": "Mistral-7B",
"license_name": "Apache 2.0",
"license_url": "https://choosealicense.com/licenses/apache-2.0/",
"provider_url": "https://huggingface.co/mistralai/Mistral-7B-v0.1",
"chat_template": "<s>{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + '</s> ' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
"urls": [
"https://huggingface.co/TabbyML/Mistral-7B/resolve/main/ggml/q8_0.v2.gguf",
"https://modelscope.cn/api/v1/models/TabbyML/Mistral-7B/repo?FilePath=ggml/q8_0.v2.gguf"
],
"sha256": "5ac3ba2eecc4f41d0cd65a5e6d875d38d4c3dd4ebb1161b85e5134817b484938"
},
{
"name": "DeepseekCoder-1.3B",
"license_name": "Deepseek License",
"license_url": "https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL",
"prompt_template": "<|fim▁begin|>{prefix}<|fim▁hole|>{suffix}<|fim▁end|>",
"provider_url": "https://huggingface.co/deepseek-ai/deepseek-coder-1.3b-base",
"urls": [
"https://huggingface.co/TheBloke/deepseek-coder-1.3b-base-GGUF/resolve/main/deepseek-coder-1.3b-base.Q8_0.gguf"
],
"sha256": "9fcdcb283ef5b1d80ec7365b307c1ceab0c0f8ea079b49969f7febc06a11bccd"
},
{
"name": "DeepseekCoder-6.7B",
"license_name": "Deepseek License",
"license_url": "https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL",
"prompt_template": "<|fim▁begin|>{prefix}<|fim▁hole|>{suffix}<|fim▁end|>",
"provider_url": "https://huggingface.co/deepseek-ai/deepseek-coder-6.7b-base",
"urls": [
"https://huggingface.co/TheBloke/deepseek-coder-6.7B-base-GGUF/resolve/main/deepseek-coder-6.7b-base.Q8_0.gguf"
],
"sha256": "a2f82242ac5e465037cbf1ed754f04f0be044ee196e1589905f9e4dcd0e6559d"
},
{
"name": "DeepseekCoder-33B",
"license_name": "Deepseek License",
"license_url": "https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL",
"prompt_template": "<|fim▁begin|>{prefix}<|fim▁hole|>{suffix}<|fim▁end|>",
"provider_url": "https://huggingface.co/deepseek-ai/deepseek-coder-33b-instruct",
"urls": [
"https://huggingface.co/TheBloke/deepseek-coder-33B-instruct-GGUF/resolve/main/deepseek-coder-33b-instruct.Q6_K.gguf"
],
"sha256": "79588d60e277c2749d401872c9f204bf2ecad4c950e42c46c1f6d1fc411057c6"
},
{
"name": "Stable-Code-3B",
"provider_url": "https://huggingface.co/TheBloke/stable-code-3b-GGUF",
"license_name": "STABILITY AI NON-COMMERCIAL RESEARCH COMMUNITY LICENSE",
"license_url": "https://huggingface.co/stabilityai/stable-code-3b/blob/main/LICENSE",
"prompt_template": "<fim_prefix>{prefix}<fim_suffix>{suffix}<fim_middle>",
"urls": [
"https://huggingface.co/TheBloke/stable-code-3b-GGUF/blob/main/stable-code-3b.Q8_0.gguf"
],
"sha256": "b035a641f366a02231ddd137842e760b20b9e6e4d99ecc20bea6cf999ed62331"
},
{
"name": "StableCode-3B",
"license_name": "STABILITY AI NON-COMMERCIAL RESEARCH COMMUNITY LICENSE",
"license_url": "https://huggingface.co/stabilityai/stable-code-3b/blob/main/LICENSE",
"prompt_template": "<fim_prefix>{prefix}<fim_suffix>{suffix}<fim_middle>",
"provider_url": "https://huggingface.co/stabilityai/stable-code-3b",
"urls": [
"https://huggingface.co/stabilityai/stable-code-3b/resolve/main/stable-code-3b-Q6_K.gguf"
],
"sha256": "9749daf176491c33a7318660f1637c97674b0070d81740be8763b2811c495bfc"
},
{
"name": "Magiccoder-6.7B",
"license_name": "Deepseek License",
"license_url": "https://huggingface.co/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL",
"prompt_template": "<|fim▁begin|>{prefix}<|fim▁hole|>{suffix}<|fim▁end|>",
"provider_url": "https://huggingface.co/TheBloke/Magicoder-S-DS-6.7B-GGUF",
"urls": [
"https://huggingface.co/TheBloke/Magicoder-S-DS-6.7B-GGUF/resolve/main/magicoder-s-ds-6.7b.Q8_0.gguf"
],
"sha256": "45e6b4c4ab2a44541c5f328c13232c9ab2ec4008ffc9a563e73ceca875240868"
},
{
"name": "WizardCoder-33B",
"license_name": "MICROSOFT RESEARCH LICENSE",
"license_url": "https://huggingface.co/WizardLM/WizardCoder-33B-V1.1/blob/main/LICENSE",
"chat_template": "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '### Instruction:\n' + message['content'] + '\n### Response:\n' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + '\n' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
"provider_url": "https://huggingface.co/TheBloke/WizardCoder-33B-V1.1-GGUF",
"urls": [
"https://huggingface.co/TheBloke/WizardCoder-33B-V1.1-GGUF/resolve/main/wizardcoder-33b-v1.1.Q6_K.gguf"
],
"sha256": "98fa5bbf869c008d97e622776cd3d49c3aa3475bafb692b384fcbb41dc55f1cf"
},
{
"name": "DeepseekCoder-7b-instruct-v1.5",
"license_name": "Deepseek License",
"license_url": "https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL",
"prompt_template": "<|fim▁begin|>{prefix}<|fim▁hole|>{suffix}<|fim▁end|>",
"provider_url": "https://huggingface.co/LoneStriker/deepseek-coder-7b-instruct-v1.5-GGUF/",
"urls": [
"https://huggingface.co/LoneStriker/deepseek-coder-7b-instruct-v1.5-GGUF/resolve/main/deepseek-coder-7b-instruct-v1.5-Q8_0.gguf"
]
}
]