@bendyline/gilde 0.1.13 → 0.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/chat-models/bt/btl4-35b-q4/manifest.json +147 -0
- package/data/chat-models/bt/btl4-35b-q4/versions/1.0.0/manifest.json +15 -0
- package/data/chat-models/bt/btl4-compact-iq2/manifest.json +147 -0
- package/data/chat-models/bt/btl4-compact-iq2/versions/1.0.0/manifest.json +15 -0
- package/data/chat-models/bt/btl4-compact-iq2/versions/1.0.1/manifest.json +15 -0
- package/data/chat-models/ge/gemma4-12b-q4/manifest.json +0 -25
- package/data/chat-models/index.json +1 -1
- package/data/chat-models/or/ornith-35b-q4/manifest.json +2 -0
- package/data/chat-models/or/ornith-35b-q8/manifest.json +2 -0
- package/data/chat-models/or/ornith-9b-q4/manifest.json +2 -0
- package/data/craftbook-templates/index.json +1 -1
- package/data/craftbook-templates/po/powerpoint-deck/versions/1.4.0/craftbook.json +200 -0
- package/data/craftbook-templates/po/powerpoint-deck/versions/1.4.0/test.json +175 -0
- package/package.json +1 -1
- package/schemas/chat-model-identity.schema.json +8 -0
- package/schemas/craftbook-doc.schema.json +68 -0
- package/schemas/craftbook-template-version.schema.json +68 -0
- package/schemas/craftbook-test.schema.json +68 -0
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"kind": "chat-model",
|
|
4
|
+
"id": "btl4-35b-q4",
|
|
5
|
+
"name": "BTL-4 (35B-A3B, Q4)",
|
|
6
|
+
"description": "Bad Theory Labs' agentic fine-tune of Ornith 1.0 35B, at 35B total parameters with ~2B active per token (Mixture-of-Experts: 256 experts, 8 routed). 30 of its 40 layers use linear attention, so the KV cache costs only ~20 KB/token and the full 256K context stays affordable. Q4_K_M quantization from bartowski — the full-quality companion to the 2.3-bit Compact build. The publisher's benchmark claims are not independently verified.",
|
|
7
|
+
"tags": [
|
|
8
|
+
"badtheorylabs",
|
|
9
|
+
"agentic",
|
|
10
|
+
"tools",
|
|
11
|
+
"code",
|
|
12
|
+
"reasoning",
|
|
13
|
+
"long-context",
|
|
14
|
+
"moe"
|
|
15
|
+
],
|
|
16
|
+
"category": "coding",
|
|
17
|
+
"maintainer": {
|
|
18
|
+
"name": "Bad Theory Labs",
|
|
19
|
+
"url": "https://huggingface.co/badtheorylabs"
|
|
20
|
+
},
|
|
21
|
+
"version": "1.0.0",
|
|
22
|
+
"updatedAt": "2026-08-06T00:00:00Z",
|
|
23
|
+
"license": "Apache-2.0",
|
|
24
|
+
"licenseClass": "open",
|
|
25
|
+
"licenseShortName": "Apache 2.0",
|
|
26
|
+
"recoScore": 10,
|
|
27
|
+
"parameterSize": "35B",
|
|
28
|
+
"approxSizeBytes": 21391448192,
|
|
29
|
+
"supportsTools": true,
|
|
30
|
+
"contextWindow": 262144,
|
|
31
|
+
"kvBytesPerTokenF16": 20480,
|
|
32
|
+
"kvFixedBytesF16": 64389120,
|
|
33
|
+
"upstream": "https://huggingface.co/badtheorylabs/BTL-4",
|
|
34
|
+
"style": {
|
|
35
|
+
"family": "qwen",
|
|
36
|
+
"reasoningFormat": "think",
|
|
37
|
+
"toolCallFormat": "function-call"
|
|
38
|
+
},
|
|
39
|
+
"behaviors": [
|
|
40
|
+
"reasoning.strip-think-tags",
|
|
41
|
+
"prompt.private-reasoning-guidance",
|
|
42
|
+
"prompt.tool-cookbook-condensed",
|
|
43
|
+
"fabrication.detect-past-tense-no-tools",
|
|
44
|
+
"turn.ollama-num-predict-bumped",
|
|
45
|
+
"turn.preamble-folding",
|
|
46
|
+
"mcp.compact-tool-schemas"
|
|
47
|
+
],
|
|
48
|
+
"tuning": {
|
|
49
|
+
"sampling": {
|
|
50
|
+
"temperature": 0.6,
|
|
51
|
+
"topP": 0.95,
|
|
52
|
+
"topK": 20,
|
|
53
|
+
"minP": 0,
|
|
54
|
+
"maxTokens": 16384
|
|
55
|
+
},
|
|
56
|
+
"samplingWhenThinking": {
|
|
57
|
+
"temperature": 0.6,
|
|
58
|
+
"topP": 0.95
|
|
59
|
+
},
|
|
60
|
+
"reasoning": {
|
|
61
|
+
"enableThinking": true,
|
|
62
|
+
"thinkingBudget": 8192
|
|
63
|
+
},
|
|
64
|
+
"promptTags": {
|
|
65
|
+
"enableThinkingTag": "/think",
|
|
66
|
+
"disableThinkingTag": "/no_think"
|
|
67
|
+
},
|
|
68
|
+
"profiles": {
|
|
69
|
+
"thinking-general": {
|
|
70
|
+
"sampling": {
|
|
71
|
+
"temperature": 0.6,
|
|
72
|
+
"topP": 0.95,
|
|
73
|
+
"topK": 20,
|
|
74
|
+
"minP": 0,
|
|
75
|
+
"repetitionPenalty": 1,
|
|
76
|
+
"maxTokens": 24576
|
|
77
|
+
},
|
|
78
|
+
"reasoning": {
|
|
79
|
+
"enableThinking": true,
|
|
80
|
+
"thinkingBudget": 8192
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"thinking-coding": {
|
|
84
|
+
"sampling": {
|
|
85
|
+
"temperature": 0.6,
|
|
86
|
+
"topP": 0.95,
|
|
87
|
+
"topK": 20,
|
|
88
|
+
"minP": 0,
|
|
89
|
+
"repetitionPenalty": 1,
|
|
90
|
+
"maxTokens": 32768
|
|
91
|
+
},
|
|
92
|
+
"reasoning": {
|
|
93
|
+
"enableThinking": true,
|
|
94
|
+
"thinkingBudget": 12288
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"thinking-precise": {
|
|
98
|
+
"sampling": {
|
|
99
|
+
"temperature": 0.4,
|
|
100
|
+
"topP": 0.9,
|
|
101
|
+
"topK": 20,
|
|
102
|
+
"minP": 0,
|
|
103
|
+
"seed": 0,
|
|
104
|
+
"maxTokens": 6144
|
|
105
|
+
},
|
|
106
|
+
"reasoning": {
|
|
107
|
+
"enableThinking": true,
|
|
108
|
+
"thinkingBudget": 4096
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"instruct": {
|
|
112
|
+
"sampling": {
|
|
113
|
+
"temperature": 0.7,
|
|
114
|
+
"topP": 0.8,
|
|
115
|
+
"topK": 20,
|
|
116
|
+
"minP": 0,
|
|
117
|
+
"presencePenalty": 1.5,
|
|
118
|
+
"repetitionPenalty": 1,
|
|
119
|
+
"maxTokens": 4096
|
|
120
|
+
},
|
|
121
|
+
"reasoning": {
|
|
122
|
+
"enableThinking": false
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"creative": {
|
|
126
|
+
"sampling": {
|
|
127
|
+
"temperature": 1.1,
|
|
128
|
+
"topP": 0.95,
|
|
129
|
+
"topK": 40,
|
|
130
|
+
"maxTokens": 8192
|
|
131
|
+
},
|
|
132
|
+
"reasoning": {
|
|
133
|
+
"enableThinking": false
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"llamaCpp": {
|
|
139
|
+
"huggingfaceRepo": "bartowski/badtheorylabs_BTL-4-GGUF",
|
|
140
|
+
"revision": "799d011b498e3287f514eb463ea04d6624ec945f",
|
|
141
|
+
"filename": "badtheorylabs_BTL-4-Q4_K_M.gguf",
|
|
142
|
+
"sha256": "75ce22e4f603bdf3f94c2b32151bb6d3492d2ab8a34ad8a4bfa2eaef0125c50f",
|
|
143
|
+
"approxSizeBytes": 21391448192,
|
|
144
|
+
"quantization": "Q4_K_M",
|
|
145
|
+
"residentBytes": 25669737830
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"releasedAt": "2026-08-07T00:00:00Z",
|
|
5
|
+
"approxSizeBytes": 21391448192,
|
|
6
|
+
"llamaCpp": {
|
|
7
|
+
"huggingfaceRepo": "bartowski/badtheorylabs_BTL-4-GGUF",
|
|
8
|
+
"revision": "799d011b498e3287f514eb463ea04d6624ec945f",
|
|
9
|
+
"filename": "badtheorylabs_BTL-4-Q4_K_M.gguf",
|
|
10
|
+
"sha256": "75ce22e4f603bdf3f94c2b32151bb6d3492d2ab8a34ad8a4bfa2eaef0125c50f",
|
|
11
|
+
"approxSizeBytes": 21391448192,
|
|
12
|
+
"quantization": "Q4_K_M",
|
|
13
|
+
"residentBytes": 25669737830
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"kind": "chat-model",
|
|
4
|
+
"id": "btl4-compact-iq2",
|
|
5
|
+
"name": "BTL-4 Compact (35B-A3B, IQ2_XXS)",
|
|
6
|
+
"description": "Bad Theory Labs' agentic fine-tune of Ornith 1.0 35B, at 35B total parameters with ~2B active per token (Mixture-of-Experts: 256 experts, 8 routed). 30 of its 40 layers use linear attention, so the KV cache costs only ~20 KB/token and the full 256K context stays affordable on a laptop. This is a 2.3 bit-per-weight imatrix quantization: expert tensors at IQ2_XXS, everything else at Q4_K_M, which fits the whole model in under 10 GB. The publisher's benchmark claims are not independently verified.",
|
|
7
|
+
"tags": [
|
|
8
|
+
"badtheorylabs",
|
|
9
|
+
"agentic",
|
|
10
|
+
"tools",
|
|
11
|
+
"code",
|
|
12
|
+
"reasoning",
|
|
13
|
+
"long-context",
|
|
14
|
+
"moe"
|
|
15
|
+
],
|
|
16
|
+
"category": "coding",
|
|
17
|
+
"maintainer": {
|
|
18
|
+
"name": "Bad Theory Labs",
|
|
19
|
+
"url": "https://huggingface.co/badtheorylabs"
|
|
20
|
+
},
|
|
21
|
+
"version": "1.0.1",
|
|
22
|
+
"updatedAt": "2026-08-06T00:00:00Z",
|
|
23
|
+
"license": "Apache-2.0",
|
|
24
|
+
"licenseClass": "open",
|
|
25
|
+
"licenseShortName": "Apache 2.0",
|
|
26
|
+
"recoScore": 10,
|
|
27
|
+
"parameterSize": "35B",
|
|
28
|
+
"approxSizeBytes": 9967966240,
|
|
29
|
+
"supportsTools": true,
|
|
30
|
+
"contextWindow": 262144,
|
|
31
|
+
"kvBytesPerTokenF16": 20480,
|
|
32
|
+
"kvFixedBytesF16": 64389120,
|
|
33
|
+
"upstream": "https://huggingface.co/badtheorylabs/BTL-4-Compact",
|
|
34
|
+
"style": {
|
|
35
|
+
"family": "qwen",
|
|
36
|
+
"reasoningFormat": "think",
|
|
37
|
+
"toolCallFormat": "function-call"
|
|
38
|
+
},
|
|
39
|
+
"behaviors": [
|
|
40
|
+
"reasoning.strip-think-tags",
|
|
41
|
+
"prompt.private-reasoning-guidance",
|
|
42
|
+
"prompt.tool-cookbook-condensed",
|
|
43
|
+
"fabrication.detect-past-tense-no-tools",
|
|
44
|
+
"turn.ollama-num-predict-bumped",
|
|
45
|
+
"turn.preamble-folding",
|
|
46
|
+
"mcp.compact-tool-schemas"
|
|
47
|
+
],
|
|
48
|
+
"tuning": {
|
|
49
|
+
"sampling": {
|
|
50
|
+
"temperature": 0.6,
|
|
51
|
+
"topP": 0.95,
|
|
52
|
+
"topK": 20,
|
|
53
|
+
"minP": 0,
|
|
54
|
+
"maxTokens": 16384
|
|
55
|
+
},
|
|
56
|
+
"samplingWhenThinking": {
|
|
57
|
+
"temperature": 0.6,
|
|
58
|
+
"topP": 0.95
|
|
59
|
+
},
|
|
60
|
+
"reasoning": {
|
|
61
|
+
"enableThinking": true,
|
|
62
|
+
"thinkingBudget": 8192
|
|
63
|
+
},
|
|
64
|
+
"promptTags": {
|
|
65
|
+
"enableThinkingTag": "/think",
|
|
66
|
+
"disableThinkingTag": "/no_think"
|
|
67
|
+
},
|
|
68
|
+
"profiles": {
|
|
69
|
+
"thinking-general": {
|
|
70
|
+
"sampling": {
|
|
71
|
+
"temperature": 0.6,
|
|
72
|
+
"topP": 0.95,
|
|
73
|
+
"topK": 20,
|
|
74
|
+
"minP": 0,
|
|
75
|
+
"repetitionPenalty": 1,
|
|
76
|
+
"maxTokens": 24576
|
|
77
|
+
},
|
|
78
|
+
"reasoning": {
|
|
79
|
+
"enableThinking": true,
|
|
80
|
+
"thinkingBudget": 8192
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"thinking-coding": {
|
|
84
|
+
"sampling": {
|
|
85
|
+
"temperature": 0.6,
|
|
86
|
+
"topP": 0.95,
|
|
87
|
+
"topK": 20,
|
|
88
|
+
"minP": 0,
|
|
89
|
+
"repetitionPenalty": 1,
|
|
90
|
+
"maxTokens": 32768
|
|
91
|
+
},
|
|
92
|
+
"reasoning": {
|
|
93
|
+
"enableThinking": true,
|
|
94
|
+
"thinkingBudget": 12288
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"thinking-precise": {
|
|
98
|
+
"sampling": {
|
|
99
|
+
"temperature": 0.4,
|
|
100
|
+
"topP": 0.9,
|
|
101
|
+
"topK": 20,
|
|
102
|
+
"minP": 0,
|
|
103
|
+
"seed": 0,
|
|
104
|
+
"maxTokens": 6144
|
|
105
|
+
},
|
|
106
|
+
"reasoning": {
|
|
107
|
+
"enableThinking": true,
|
|
108
|
+
"thinkingBudget": 4096
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"instruct": {
|
|
112
|
+
"sampling": {
|
|
113
|
+
"temperature": 0.7,
|
|
114
|
+
"topP": 0.8,
|
|
115
|
+
"topK": 20,
|
|
116
|
+
"minP": 0,
|
|
117
|
+
"presencePenalty": 1.5,
|
|
118
|
+
"repetitionPenalty": 1,
|
|
119
|
+
"maxTokens": 4096
|
|
120
|
+
},
|
|
121
|
+
"reasoning": {
|
|
122
|
+
"enableThinking": false
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"creative": {
|
|
126
|
+
"sampling": {
|
|
127
|
+
"temperature": 1.1,
|
|
128
|
+
"topP": 0.95,
|
|
129
|
+
"topK": 40,
|
|
130
|
+
"maxTokens": 8192
|
|
131
|
+
},
|
|
132
|
+
"reasoning": {
|
|
133
|
+
"enableThinking": false
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"llamaCpp": {
|
|
139
|
+
"huggingfaceRepo": "badtheorylabs/BTL-4-Compact",
|
|
140
|
+
"revision": "2a29bc80b0ebc80d6409fbad89f85d910dbb4aee",
|
|
141
|
+
"filename": "BTL-4-IQ2_XXS.gguf",
|
|
142
|
+
"sha256": "6b7c298cf909fc04428ecf360a29dcc578188b1c90aa6ed435159f5a0d351496",
|
|
143
|
+
"approxSizeBytes": 9967966240,
|
|
144
|
+
"quantization": "IQ2_XXS",
|
|
145
|
+
"residentBytes": 11961559488
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"releasedAt": "2026-08-06T00:00:00Z",
|
|
5
|
+
"approxSizeBytes": 9967966240,
|
|
6
|
+
"llamaCpp": {
|
|
7
|
+
"huggingfaceRepo": "badtheorylabs/BTL-4-Compact",
|
|
8
|
+
"revision": "2a29bc80b0ebc80d6409fbad89f85d910dbb4aee",
|
|
9
|
+
"filename": "BTL-4-IQ2_XXS.gguf",
|
|
10
|
+
"sha256": "6b7c298cf909fc04428ecf360a29dcc578188b1c90aa6ed435159f5a0d351496",
|
|
11
|
+
"approxSizeBytes": 9967966240,
|
|
12
|
+
"quantization": "IQ2_XXS",
|
|
13
|
+
"residentBytes": 11961559488
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"releasedAt": "2026-08-06T00:00:00Z",
|
|
5
|
+
"approxSizeBytes": 9967966240,
|
|
6
|
+
"llamaCpp": {
|
|
7
|
+
"huggingfaceRepo": "badtheorylabs/BTL-4-Compact",
|
|
8
|
+
"revision": "2a29bc80b0ebc80d6409fbad89f85d910dbb4aee",
|
|
9
|
+
"filename": "BTL-4-IQ2_XXS.gguf",
|
|
10
|
+
"sha256": "6b7c298cf909fc04428ecf360a29dcc578188b1c90aa6ed435159f5a0d351496",
|
|
11
|
+
"approxSizeBytes": 9967966240,
|
|
12
|
+
"quantization": "IQ2_XXS",
|
|
13
|
+
"residentBytes": 11961559488
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -81,11 +81,6 @@
|
|
|
81
81
|
"topK": 64,
|
|
82
82
|
"repetitionPenalty": 1.1,
|
|
83
83
|
"repetitionContext": 64,
|
|
84
|
-
"dry": {
|
|
85
|
-
"multiplier": 0.8,
|
|
86
|
-
"base": 1.75,
|
|
87
|
-
"allowedLength": 2
|
|
88
|
-
},
|
|
89
84
|
"maxTokens": 8192
|
|
90
85
|
},
|
|
91
86
|
"reasoning": {
|
|
@@ -100,11 +95,6 @@
|
|
|
100
95
|
"topK": 64,
|
|
101
96
|
"repetitionPenalty": 1.1,
|
|
102
97
|
"repetitionContext": 64,
|
|
103
|
-
"dry": {
|
|
104
|
-
"multiplier": 0.8,
|
|
105
|
-
"base": 1.75,
|
|
106
|
-
"allowedLength": 2
|
|
107
|
-
},
|
|
108
98
|
"maxTokens": 2048
|
|
109
99
|
}
|
|
110
100
|
},
|
|
@@ -115,11 +105,6 @@
|
|
|
115
105
|
"topK": 40,
|
|
116
106
|
"repetitionPenalty": 1.05,
|
|
117
107
|
"repetitionContext": 64,
|
|
118
|
-
"dry": {
|
|
119
|
-
"multiplier": 0.8,
|
|
120
|
-
"base": 1.75,
|
|
121
|
-
"allowedLength": 2
|
|
122
|
-
},
|
|
123
108
|
"maxTokens": 2048
|
|
124
109
|
}
|
|
125
110
|
},
|
|
@@ -130,11 +115,6 @@
|
|
|
130
115
|
"topK": 20,
|
|
131
116
|
"repetitionPenalty": 1.05,
|
|
132
117
|
"repetitionContext": 64,
|
|
133
|
-
"dry": {
|
|
134
|
-
"multiplier": 0.8,
|
|
135
|
-
"base": 1.75,
|
|
136
|
-
"allowedLength": 2
|
|
137
|
-
},
|
|
138
118
|
"maxTokens": 4096,
|
|
139
119
|
"seed": 0
|
|
140
120
|
}
|
|
@@ -146,11 +126,6 @@
|
|
|
146
126
|
"topK": 64,
|
|
147
127
|
"repetitionPenalty": 1.1,
|
|
148
128
|
"repetitionContext": 64,
|
|
149
|
-
"dry": {
|
|
150
|
-
"multiplier": 0.8,
|
|
151
|
-
"base": 1.75,
|
|
152
|
-
"allowedLength": 2
|
|
153
|
-
},
|
|
154
129
|
"maxTokens": 4096
|
|
155
130
|
}
|
|
156
131
|
},
|