adpt 0.13.6

A tool for interacting with the Adaptive platform
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
# Command-Line Help for `adpt`

This document contains the help content for the `adpt` command-line program.

**Command Overview:**

* [`adpt`]#adpt
* [`adpt cancel`]#adpt-cancel
* [`adpt config`]#adpt-config
* [`adpt job`]#adpt-job
* [`adpt jobs`]#adpt-jobs
* [`adpt models`]#adpt-models
* [`adpt upload`]#adpt-upload
* [`adpt publish`]#adpt-publish
* [`adpt recipes`]#adpt-recipes
* [`adpt run`]#adpt-run
* [`adpt schema`]#adpt-schema
* [`adpt set-api-key`]#adpt-set-api-key
* [`adpt role`]#adpt-role
* [`adpt role create`]#adpt-role-create
* [`adpt role describe`]#adpt-role-describe
* [`adpt role list`]#adpt-role-list
* [`adpt user`]#adpt-user
* [`adpt user create`]#adpt-user-create
* [`adpt user delete`]#adpt-user-delete
* [`adpt user describe`]#adpt-user-describe
* [`adpt user list`]#adpt-user-list
* [`adpt team`]#adpt-team
* [`adpt team create`]#adpt-team-create
* [`adpt team add-member`]#adpt-team-add-member
* [`adpt team remove-member`]#adpt-team-remove-member
* [`adpt team list`]#adpt-team-list

## `adpt`

A tool interacting with the Adaptive platform

**Usage:** `adpt <COMMAND>`

###### **Subcommands:**

* `cancel` — Cancel a job
* `config` — Configure adpt interactively
* `job` — Inspect job
* `jobs` — List currently running jobs
* `models` — List models
* `upload` — Upload dataset
* `publish` — Upload recipe
* `recipes` — List recipes
* `run` — Run recipe
* `schema` — Display the schema for inputs for a recipe
* `set-api-key` — Store your API key in the OS keyring
* `role` — Manage roles
* `user` — Manage users
* `team` — Manage teams



## `adpt cancel`

Cancel a job

**Usage:** `adpt cancel <ID>`

###### **Arguments:**

* `<ID>`



## `adpt config`

Configure adpt interactively

**Usage:** `adpt config`



## `adpt job`

Inspect job

**Usage:** `adpt job [OPTIONS] <ID>`

###### **Arguments:**

* `<ID>`

###### **Options:**

* `-f`, `--follow` — Follow job status updates until completion



## `adpt jobs`

List currently running jobs

**Usage:** `adpt jobs`



## `adpt models`

List models

**Usage:** `adpt models [OPTIONS]`

###### **Options:**

* `-p`, `--project <PROJECT>`
* `-a`, `--all` — List all models in the global model registry



## `adpt upload`

Upload dataset

**Usage:** `adpt upload [OPTIONS] <DATASET>`

###### **Arguments:**

* `<DATASET>`

###### **Options:**

* `-p`, `--project <PROJECT>`
* `-n`, `--name <NAME>` — Dataset name



## `adpt publish`

Upload recipe

**Usage:** `adpt publish [OPTIONS] <RECIPE>`

###### **Arguments:**

* `<RECIPE>`

###### **Options:**

* `-p`, `--project <PROJECT>`
* `-n`, `--name <NAME>` — Recipe name
* `-k`, `--key <KEY>` — Recipe key
* `-f`, `--force` — Update existing recipe if it exists



## `adpt recipes`

List recipes

**Usage:** `adpt recipes [OPTIONS]`

###### **Options:**

* `-p`, `--project <PROJECT>`



## `adpt run`

Run recipe

**Usage:** `adpt run [OPTIONS] <RECIPE> [-- <ARGS>...]`

###### **Arguments:**

* `<RECIPE>` — Recipe ID or key
* `<ARGS>`

###### **Options:**

* `-p`, `--project <PROJECT>`
* `--parameters <PARAMETERS>` — A file containing a JSON object of parameters for the recipe
* `-n`, `--name <NAME>` — The name of the run
* `-c`, `--compute-pool <COMPUTE_POOL>` — The compute pool to run the recipe on
* `-g`, `--gpus <GPUS>` — The number of GPUs to run the recipe on



## `adpt schema`

Display the schema for inputs for a recipe

**Usage:** `adpt schema [OPTIONS] <RECIPE>`

###### **Arguments:**

* `<RECIPE>`

###### **Options:**

* `-p`, `--project <PROJECT>`



## `adpt set-api-key`

Store your API key in the OS keyring

**Usage:** `adpt set-api-key <API_KEY>`

###### **Arguments:**

* `<API_KEY>`



## `adpt role`

Manage roles

**Usage:** `adpt role <COMMAND>`

###### **Subcommands:**

* `create` — Create a new role
* `describe` — Describe a role
* `list` — List all roles



## `adpt role create`

Create a new role

**Usage:** `adpt role create [OPTIONS] --permissions <PERMISSIONS>... <NAME>`

###### **Arguments:**

* `<NAME>` — Role name

###### **Options:**

* `-k`, `--key <KEY>` — Role key (auto-generated from name if not provided)
* `-p`, `--permissions <PERMISSIONS>` — Permissions to assign to the role



## `adpt role describe`

Describe a role

**Usage:** `adpt role describe <ID_OR_KEY>`

###### **Arguments:**

* `<ID_OR_KEY>` — Role ID (UUID) or key



## `adpt role list`

List all roles

**Usage:** `adpt role list`



## `adpt user`

Manage users

**Usage:** `adpt user <COMMAND>`

###### **Subcommands:**

* `create` — Create a new user
* `delete` — Delete a user
* `describe` — Describe a user
* `list` — List all users



## `adpt user create`

Create a new user

**Usage:** `adpt user create [OPTIONS] <NAME>`

###### **Arguments:**

* `<NAME>` — User name

###### **Options:**

* `-e`, `--email <EMAIL>` — User email (required for human users)
* `-t`, `--user-type <USER_TYPE>` — User type

  Default value: `human`

  Possible values: `human`, `system`




## `adpt user delete`

Delete a user

**Usage:** `adpt user delete <ID_OR_EMAIL>`

###### **Arguments:**

* `<ID_OR_EMAIL>` — User ID or email



## `adpt user describe`

Describe a user

**Usage:** `adpt user describe <ID_OR_EMAIL>`

###### **Arguments:**

* `<ID_OR_EMAIL>` — User ID or email



## `adpt user list`

List all users

**Usage:** `adpt user list`



## `adpt team`

Manage teams

**Usage:** `adpt team <COMMAND>`

###### **Subcommands:**

* `create` — Create a new team
* `add-member` — Add a user to a team
* `remove-member` — Remove a user from a team
* `list` — List all teams



## `adpt team create`

Create a new team

**Usage:** `adpt team create [OPTIONS] <NAME>`

###### **Arguments:**

* `<NAME>` — Team name

###### **Options:**

* `-k`, `--key <KEY>` — Team key (auto-generated from name if not provided)



## `adpt team add-member`

Add a user to a team

**Usage:** `adpt team add-member <USER> <TEAM> <ROLE>`

###### **Arguments:**

* `<USER>` — User ID or email
* `<TEAM>` — Team ID or key
* `<ROLE>` — Role ID or key



## `adpt team remove-member`

Remove a user from a team

**Usage:** `adpt team remove-member <USER> <TEAM>`

###### **Arguments:**

* `<USER>` — User ID or email
* `<TEAM>` — Team ID or key



## `adpt team list`

List all teams

**Usage:** `adpt team list`



<hr/>

<small><i>
    This document was generated automatically by
    <a href="https://crates.io/crates/clap-markdown"><code>clap-markdown</code></a>.
</i></small>