Skip to content

Commit 9ac13b5

Browse files
committed
feat(model): add Ollama models to database
1 parent ed20b4c commit 9ac13b5

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
2+
VALUES ('gpt-oss:20b', 'gpt-oss:20b', false, false, false,
3+
'OpenAI’s open-weight models designed for powerful reasoning, agentic tasks, and versatile developer use cases.');
4+
5+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
6+
VALUES ('gpt-oss:120b', 'gpt-oss:120b', false, false, false,
7+
'OpenAI’s open-weight models designed for powerful reasoning, agentic tasks, and versatile developer use cases.');
8+
9+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
10+
VALUES ('deepseek-r1:1.5b', 'deepseek-r1:1.5b', false, false, false,
11+
'DeepSeek-R1 is a family of open reasoning models with performance approaching that of leading models, such as O3 and Gemini 2.5 Pro.');
12+
13+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
14+
VALUES ('deepseek-r1:7b', 'deepseek-r1:7b', false, false, false,
15+
'DeepSeek-R1 is a family of open reasoning models with performance approaching that of leading models, such as O3 and Gemini 2.5 Pro.');
16+
17+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
18+
VALUES ('deepseek-r1:8b', 'deepseek-r1:8b', false, false, false,
19+
'DeepSeek-R1 is a family of open reasoning models with performance approaching that of leading models, such as O3 and Gemini 2.5 Pro.');
20+
21+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
22+
VALUES ('deepseek-r1:14b', 'deepseek-r1:14b', false, false, false,
23+
'DeepSeek-R1 is a family of open reasoning models with performance approaching that of leading models, such as O3 and Gemini 2.5 Pro.');
24+
25+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
26+
VALUES ('deepseek-r1:32b', 'deepseek-r1:32b', false, false, false,
27+
'DeepSeek-R1 is a family of open reasoning models with performance approaching that of leading models, such as O3 and Gemini 2.5 Pro.');
28+
29+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
30+
VALUES ('deepseek-r1:70b', 'deepseek-r1:70b', false, false, false,
31+
'DeepSeek-R1 is a family of open reasoning models with performance approaching that of leading models, such as O3 and Gemini 2.5 Pro.');
32+
33+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
34+
VALUES ('llama3.1:8b', 'llama3.1:8b', false, false, false,
35+
'Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.');
36+
37+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
38+
VALUES ('llama3.1:70b', 'llama3.1:70b', false, false, false,
39+
'Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes.');
40+
41+
INSERT INTO models ("name", code, is_default, is_download, is_downloading, description)
42+
VALUES ('mistral:7b', 'mistral:7b', false, false, false,
43+
'The 7B model released by Mistral AI, updated to version 0.3.');

0 commit comments

Comments
 (0)