@bendyline/gilde 0.1.52 → 0.1.54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bendyline/gilde",
3
- "version": "0.1.52",
3
+ "version": "0.1.54",
4
4
  "description": "The gilde catalog: model manifests, toolsets, craftbooks, roles, and project types for gezel.",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -5138,7 +5138,13 @@
5138
5138
  "copilot.builtin.denied",
5139
5139
  "credential.used",
5140
5140
  "eval.trial.started",
5141
- "eval.trial.completed"
5141
+ "eval.trial.completed",
5142
+ "knowledge.catalog.installed",
5143
+ "knowledge.catalog.updated",
5144
+ "knowledge.catalog.enabled",
5145
+ "knowledge.catalog.disabled",
5146
+ "knowledge.catalog.removed",
5147
+ "knowledge.catalog.install_failed"
5142
5148
  ]
5143
5149
  },
5144
5150
  "minEntries": {
@@ -0,0 +1,122 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://gezelgilde.com/schemas/knowledge-catalog-identity.schema.json",
4
+ "type": "object",
5
+ "properties": {
6
+ "minGezelVersion": {
7
+ "type": "string"
8
+ },
9
+ "schemaVersion": {
10
+ "type": "number",
11
+ "const": 1
12
+ },
13
+ "id": {
14
+ "type": "string",
15
+ "pattern": "^[a-z0-9]([a-z0-9-]{0,62}[a-z0-9])?$"
16
+ },
17
+ "name": {
18
+ "type": "string",
19
+ "minLength": 1
20
+ },
21
+ "description": {
22
+ "type": "string"
23
+ },
24
+ "tags": {
25
+ "default": [],
26
+ "type": "array",
27
+ "items": {
28
+ "type": "string"
29
+ }
30
+ },
31
+ "maintainer": {
32
+ "type": "object",
33
+ "properties": {
34
+ "name": {
35
+ "type": "string"
36
+ },
37
+ "url": {
38
+ "type": "string",
39
+ "format": "uri"
40
+ }
41
+ },
42
+ "required": [
43
+ "name"
44
+ ]
45
+ },
46
+ "logo": {
47
+ "type": "string"
48
+ },
49
+ "license": {
50
+ "type": "string"
51
+ },
52
+ "licenseClass": {
53
+ "type": "string",
54
+ "enum": [
55
+ "open",
56
+ "commercial-restricted",
57
+ "custom-restricted"
58
+ ]
59
+ },
60
+ "licenseShortName": {
61
+ "type": "string"
62
+ },
63
+ "licenseUrl": {
64
+ "type": "string",
65
+ "format": "uri"
66
+ },
67
+ "recoScore": {
68
+ "type": "integer",
69
+ "exclusiveMinimum": 0,
70
+ "maximum": 9007199254740991
71
+ },
72
+ "yankedVersions": {
73
+ "default": [],
74
+ "type": "array",
75
+ "items": {
76
+ "type": "string"
77
+ }
78
+ },
79
+ "minSupportedVersion": {
80
+ "type": "string"
81
+ },
82
+ "kind": {
83
+ "type": "string",
84
+ "const": "knowledge-catalog"
85
+ },
86
+ "publisherId": {
87
+ "type": "string",
88
+ "pattern": "^[a-z0-9]([a-z0-9-]{0,62}[a-z0-9])?$"
89
+ },
90
+ "language": {
91
+ "type": "string",
92
+ "minLength": 2
93
+ },
94
+ "category": {
95
+ "type": "string",
96
+ "enum": [
97
+ "encyclopedia",
98
+ "reference",
99
+ "science",
100
+ "history",
101
+ "technology",
102
+ "culture",
103
+ "manuals",
104
+ "other"
105
+ ]
106
+ },
107
+ "upstream": {
108
+ "type": "string",
109
+ "format": "uri"
110
+ }
111
+ },
112
+ "required": [
113
+ "schemaVersion",
114
+ "id",
115
+ "name",
116
+ "description",
117
+ "maintainer",
118
+ "kind",
119
+ "publisherId",
120
+ "language"
121
+ ]
122
+ }
@@ -0,0 +1,169 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://gezelgilde.com/schemas/knowledge-catalog-version.schema.json",
4
+ "type": "object",
5
+ "properties": {
6
+ "minGezelVersion": {
7
+ "type": "string"
8
+ },
9
+ "schemaVersion": {
10
+ "type": "number",
11
+ "const": 1
12
+ },
13
+ "version": {
14
+ "type": "string",
15
+ "pattern": "^\\d+\\.\\d+\\.\\d+(?:-[0-9A-Za-z.-]+)?(?:\\+[0-9A-Za-z.-]+)?$"
16
+ },
17
+ "releasedAt": {
18
+ "type": "string"
19
+ },
20
+ "formatVersion": {
21
+ "type": "string",
22
+ "minLength": 1
23
+ },
24
+ "huggingface": {
25
+ "type": "object",
26
+ "properties": {
27
+ "repo": {
28
+ "type": "string",
29
+ "pattern": "^[A-Za-z0-9_\\-.]+\\/[A-Za-z0-9_\\-.]+$"
30
+ },
31
+ "revision": {
32
+ "type": "string",
33
+ "pattern": "^[0-9a-f]{40}$"
34
+ },
35
+ "path": {
36
+ "type": "string",
37
+ "minLength": 1
38
+ }
39
+ },
40
+ "required": [
41
+ "repo",
42
+ "revision",
43
+ "path"
44
+ ]
45
+ },
46
+ "sha256": {
47
+ "type": "string",
48
+ "pattern": "^[a-f0-9]{64}$"
49
+ },
50
+ "archiveBytes": {
51
+ "type": "integer",
52
+ "exclusiveMinimum": 0,
53
+ "maximum": 9007199254740991
54
+ },
55
+ "uncompressedBytes": {
56
+ "type": "integer",
57
+ "exclusiveMinimum": 0,
58
+ "maximum": 9007199254740991
59
+ },
60
+ "documents": {
61
+ "type": "integer",
62
+ "minimum": 0,
63
+ "maximum": 9007199254740991
64
+ },
65
+ "chunks": {
66
+ "type": "integer",
67
+ "minimum": 0,
68
+ "maximum": 9007199254740991
69
+ },
70
+ "embeddingProfile": {
71
+ "type": "object",
72
+ "properties": {
73
+ "id": {
74
+ "type": "string",
75
+ "enum": [
76
+ "multilingual-e5-small@1",
77
+ "bge-small-en-v1.5@1"
78
+ ]
79
+ },
80
+ "modelRepo": {
81
+ "type": "string",
82
+ "minLength": 1
83
+ }
84
+ },
85
+ "required": [
86
+ "id",
87
+ "modelRepo"
88
+ ]
89
+ },
90
+ "topics": {
91
+ "minItems": 1,
92
+ "type": "array",
93
+ "items": {
94
+ "type": "object",
95
+ "properties": {
96
+ "id": {
97
+ "type": "string",
98
+ "pattern": "^[a-z0-9]([a-z0-9-]{0,62}[a-z0-9])?$"
99
+ },
100
+ "name": {
101
+ "type": "string",
102
+ "minLength": 1
103
+ }
104
+ },
105
+ "required": [
106
+ "id",
107
+ "name"
108
+ ]
109
+ }
110
+ },
111
+ "sourceSnapshot": {
112
+ "type": "object",
113
+ "properties": {
114
+ "name": {
115
+ "type": "string"
116
+ },
117
+ "date": {
118
+ "type": "string"
119
+ },
120
+ "taxonomyVersion": {
121
+ "type": "string"
122
+ }
123
+ },
124
+ "required": [
125
+ "name",
126
+ "date"
127
+ ]
128
+ },
129
+ "parquet": {
130
+ "type": "object",
131
+ "properties": {
132
+ "repo": {
133
+ "type": "string",
134
+ "pattern": "^[A-Za-z0-9_\\-.]+\\/[A-Za-z0-9_\\-.]+$"
135
+ },
136
+ "revision": {
137
+ "type": "string",
138
+ "pattern": "^[0-9a-f]{40}$"
139
+ },
140
+ "dir": {
141
+ "type": "string",
142
+ "minLength": 1
143
+ }
144
+ },
145
+ "required": [
146
+ "repo",
147
+ "revision",
148
+ "dir"
149
+ ]
150
+ },
151
+ "notes": {
152
+ "type": "string"
153
+ }
154
+ },
155
+ "required": [
156
+ "schemaVersion",
157
+ "version",
158
+ "releasedAt",
159
+ "formatVersion",
160
+ "huggingface",
161
+ "sha256",
162
+ "archiveBytes",
163
+ "uncompressedBytes",
164
+ "documents",
165
+ "chunks",
166
+ "embeddingProfile",
167
+ "topics"
168
+ ]
169
+ }