Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,44 @@ This command will print the `id` and `name` of the modeloutput. If developer mod
}
```

### model output update

Update specific fields for an existing model output ID

```shell
meorg output update [OPTIONS] $MODEL_OUTPUT_ID
```

Some of the available options as flags are:

```shell
--name
--model-profile-id
--state-selection
--parameter-selection
--comments
--is-bundle
--benchmarks
```


This command will print the `id` for the updated copy of modeloutput. If developer mode is enabled, print the JSON representation for the data section of the response. An example model output data response would be:

```json
{
"id": "MnCj3tMzGx3NsuzwS",
"created": false,
}
```

### model output delete

Remove a model output entity

```shell
meorg output delete $MODEL_OUTPUT_ID
```

### analysis status

To query the status of an analysis, execute the following command:
Expand Down
Loading