Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 6,604 Bytes
5916048 6294700 5916048 5be784e 5916048 ff1a29c 5916048 5be784e 4cef696 5be784e 5916048 6294700 4cef696 6294700 5916048 7eb6d57 5916048 6294700 5916048 6294700 5916048 6294700 5916048 6294700 4cef696 6294700 5916048 6294700 5916048 6294700 03ce1cf 570e2d9 03ce1cf 1ce932e 03ce1cf 1ce932e 03ce1cf 6294700 5916048 6294700 bb2b3b2 f803d8b 8f469b4 f803d8b 0e22598 f803d8b 0e22598 f803d8b 6294700 |
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 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
import { ApiCollection } from "@/utils/type";
export const API_COLLECTIONS: Array<ApiCollection> = [{
key: 'search',
endpoints: [
{
method: 'GET',
path: '/api/models',
parameters: {
search: "",
author: "",
filter: "",
sort: "",
direction: "",
limit: 5,
full: true,
config: true
},
tooltips: {
search: "Filter based on substrings for repos and their usernames, such as resnet or microsoft",
full: "Whether to fetch most model data, such as all tags, the files, etc.",
config: "Whether to also fetch the repo config.",
filter: "Filter based on tags, such as text-classification or spacy."
}
}, {
method: 'GET',
path: '/api/models/{repo_id}'
}, {
method: 'GET',
path: '/api/models-tags-by-type'
}, {
method: 'GET',
path: '/api/datasets',
parameters: {
search: "",
author: "",
filter: "",
sort: "",
direction: "",
limit: 5,
full: true,
},
tooltips: {
search: "Filter based on substrings for repos and their usernames, such as pets or microsoft",
full: "Whether to fetch most model data, such as all tags, the files, etc.",
config: "Whether to also fetch the repo config.",
filter: "Filter based on tags, such as task_categories:text-classification or languages:en."
}
}, {
method: 'GET',
path: '/api/datasets/{repo_id}',
parameters: {
full: true,
},
tooltips: {
full: "Whether to fetch most dataset data, such as all tags, the files, etc.",
}
}, {
method: 'GET',
path: '/api/datasets/{repo_id}/croissant'
},{
method: 'GET',
path: '/api/datasets/{repo_id}/parquet'
}, {
method: 'GET',
path: '/api/datasets/{repo_id}/parquet/{config}/{split}/{n}.parquet'
}, {
method: 'GET',
path: '/api/datasets-tags-by-type'
}, {
method: 'GET',
path: '/api/spaces',
parameters: {
search: "",
author: "",
filter: "",
sort: "",
direction: "",
limit: 5,
full: true,
},
tooltips: {
search: "Filter based on substrings for repos and their usernames, such as resnet or microsoft",
full: "Whether to fetch most model data, such as all tags, the files, etc.",
config: "Whether to also fetch the repo config.",
filter: "Filter based on tags, such as text-classification or spacy."
}
}, {
method: 'GET',
path: '/api/spaces/{repo_id}'
}, {
method: 'GET',
path: '/api/metrics'
}],
},
{
key: 'repo',
endpoints: [{
method: 'POST',
path: '/api/repos/create',
body: [
{
label: "Type of repo (dataset or space; model by default)",
key: "type",
required: true,
},
{
label: "Name of repo",
key: "name",
required: true,
},
{
label: "Name of organization (optional)",
required: true,
key: "organization",
},
{
label: "SDK (if type is space)",
key: "sdk",
},
{
label: "Whether the repo is private",
required: true,
key: "private",
defaultValue: false,
},
]
}, {
method: 'DELETE',
path: '/api/repos/delete',
body: [{
label: "Type of repo (dataset or space; model by default)",
key: "type",
required: true,
},
{
label: "Name of repo",
key: "name",
required: true,
},
{
label: "Name of organization (optional)",
required: true,
key: "organization",
}]
}, {
method: 'POST',
path: '/api/repos/move',
body: [{
label: "From which repo",
key: "fromRepo",
required: true,
},
{
label: "To which repo",
key: "toRepo",
required: true,
}]
}],
},
{
key: 'user',
endpoints: [{
method: 'GET',
path: '/api/whoami-v2',
}],
},
{
key: 'organizations',
endpoints: [{
method: 'GET',
path: '/api/organizations/{organization_name}/members'
}],
},
{
key: 'collection',
endpoints: [{
method: 'POST',
path: '/api/collections',
body: [{
label: "Title of collection",
key: "title",
required: true,
}, {
label: "Namespace",
key: "namespace",
required: true,
}, {
label: "Description of collection",
key: "description",
required: true,
}, {
label: "Type",
key: "item.type",
required: true,
}, {
label: "RepoId/PaperId",
key: "item.id",
required: true,
}, {
label: "Whether the repo is private",
required: true,
key: "private",
defaultValue: false,
}]
}, {
method: "GET",
path: '/api/collections',
parameters: {
owner: "",
sort: "",
item: "",
limit: 5,
q: ""
},
tooltips: {
item: "filter collections containing a specific item. Value must be the item_type and item_id concatenated. Example: \"models/teknium/OpenHermes-2.5-Mistral-7B\", \"datasets/squad\" or \"papers/2311.12983\".",
q: "Filter based on substrings for titles & descriptions."
}
}, {
method: 'GET',
path: '/api/collections/{namespace}/{slug-id}',
},{
method: 'PATCH',
path: '/api/collections/{namespace}/{slug-id}',
body: [{
label: "Title of collection",
key: "title",
required: true,
}, {
label: "Namespace",
key: "namespace",
required: true,
}, {
label: "Position",
required: true,
key: "position",
defaultValue: 0,
}, {
label: "Theme",
required: true,
key: "theme",
}, {
label: "Whether the repo is private",
required: true,
key: "private",
defaultValue: false,
}]
}, {
method: 'DELETE',
path: '/api/collections/{namespace}/{slug-id}',
}, {
method: 'POST',
path: '/api/collections/{namespace}/{slug-id}/item',
body: [{
label: "Type",
key: "item.type",
required: true,
}, {
label: "RepoId/PaperId",
key: "item.id",
required: true,
}, {
label: "Note",
key: "note",
required: true,
}]
}, {
method: 'PATCH',
path: '/api/collections/{namespace}/{slug-id}/item/{itemId}',
body: [{
label: "Position",
key: "position",
defaultValue: 0,
required: true,
}, {
label: "Note",
key: "note",
required: true,
}]
}, {
method: 'DELETE',
path: '/api/collections/{namespace}/{slug-id}/item/{itemId}',
}]
}
] |