-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApprovedExtensions.json
More file actions
138 lines (138 loc) · 4.8 KB
/
Copy pathApprovedExtensions.json
File metadata and controls
138 lines (138 loc) · 4.8 KB
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
{
"schemaVersion": 1,
"lastUpdated": "2025-01-15T00:00:00Z",
"description": "Curated list of verified Dataset Studio extensions",
"extensions": [
{
"id": "CoreViewer",
"name": "Core Viewer",
"author": "Hartsy AI",
"description": "Essential dataset viewing with grid, list, and masonry layouts. Provides foundational viewing capabilities for all dataset types.",
"repositoryUrl": "https://github.com/hartsy-ai/ds-ext-coreviewer",
"category": "BuiltIn",
"verified": true,
"isOfficial": true,
"minCoreVersion": "1.0.0",
"latestVersion": "1.0.0",
"downloadCount": 0,
"rating": 5.0,
"tags": ["viewer", "grid", "list", "masonry", "official", "essential"],
"permissions": [
"datasets.read"
],
"screenshots": [],
"documentation": "https://github.com/hartsy-ai/ds-ext-coreviewer/blob/main/README.md"
},
{
"id": "Creator",
"name": "Dataset Creator",
"author": "Hartsy AI",
"description": "Create datasets from multiple sources: CSV, TSV, JSON, JSONL, ZIP archives, folders, and HuggingFace. Supports both streaming and download modes for HuggingFace datasets.",
"repositoryUrl": "https://github.com/hartsy-ai/ds-ext-creator",
"category": "BuiltIn",
"verified": true,
"isOfficial": true,
"minCoreVersion": "1.0.0",
"latestVersion": "1.0.0",
"downloadCount": 0,
"rating": 5.0,
"tags": ["creator", "upload", "import", "huggingface", "official", "essential"],
"permissions": [
"datasets.write",
"filesystem.read",
"network.external"
],
"screenshots": [],
"documentation": "https://github.com/hartsy-ai/ds-ext-creator/blob/main/README.md"
},
{
"id": "Editor",
"name": "Advanced Editor",
"author": "Hartsy AI",
"description": "Advanced dataset editing with bulk operations, batch tagging, metadata editor, and powerful search/filter capabilities. Perfect for dataset curation and refinement.",
"repositoryUrl": "https://github.com/hartsy-ai/ds-ext-editor",
"category": "BuiltIn",
"verified": true,
"isOfficial": true,
"minCoreVersion": "1.0.0",
"latestVersion": "1.0.0",
"downloadCount": 0,
"rating": 5.0,
"tags": ["editor", "bulk-edit", "curation", "official"],
"permissions": [
"datasets.read",
"datasets.write",
"items.edit",
"items.bulk_edit",
"items.delete"
],
"screenshots": [],
"documentation": "https://github.com/hartsy-ai/ds-ext-editor/blob/main/README.md"
},
{
"id": "AITools",
"name": "AI Tools",
"author": "Hartsy AI",
"description": "AI-powered caption generation, image tagging, and quality scoring using BLIP, CLIP, and other vision models. Supports OpenAI and Anthropic API integration.",
"repositoryUrl": "https://github.com/hartsy-ai/ds-ext-aitools",
"category": "BuiltIn",
"verified": true,
"isOfficial": true,
"minCoreVersion": "1.0.0",
"latestVersion": "1.0.0",
"downloadCount": 0,
"rating": 5.0,
"tags": ["ai", "caption", "tagging", "machine-learning", "official"],
"permissions": [
"datasets.read",
"datasets.write",
"items.edit",
"network.external",
"ai.inference"
],
"screenshots": [],
"documentation": "https://github.com/hartsy-ai/ds-ext-aitools/blob/main/README.md"
}
],
"categories": [
{
"id": "BuiltIn",
"name": "Built-In",
"description": "Official extensions maintained by the Dataset Studio team"
},
{
"id": "Community",
"name": "Community",
"description": "Third-party extensions developed by the community"
},
{
"id": "Tools",
"name": "Tools",
"description": "Utility extensions for dataset manipulation and analysis"
},
{
"id": "Integrations",
"name": "Integrations",
"description": "Extensions that integrate with external services"
},
{
"id": "Visualization",
"name": "Visualization",
"description": "Extensions for advanced dataset visualization"
}
],
"permissionDescriptions": {
"datasets.read": "View datasets and items",
"datasets.write": "Create and update datasets",
"datasets.delete": "Delete datasets",
"items.edit": "Edit individual items",
"items.bulk_edit": "Bulk edit multiple items",
"items.delete": "Delete items",
"filesystem.read": "Read files from local filesystem",
"filesystem.write": "Write files to local filesystem",
"network.external": "Make requests to external APIs",
"ai.inference": "Run AI model inference",
"extensions.manage": "Install and uninstall extensions",
"users.manage": "Manage users and permissions"
}
}