From 583bb3d7beb99cc714225f0923ea6cf27d50ebc6 Mon Sep 17 00:00:00 2001 From: Brian Newsom Date: Wed, 5 Aug 2026 14:47:44 -0600 Subject: [PATCH 1/3] fix(cli): expose intake commands Signed-off-by: Brian Newsom --- docs/cli/reference.mdx | 920 ++++++++++++++++++ docs/fern/snippets/_snippets/cli-summary.mdx | 2 +- .../cli/commands/api/__init__.py | 2 +- .../tests/cli/commands/test_agent.py | 1 + .../nemo_platform_ext/tests/cli/test_app.py | 4 + .../cli/commands/api/__init__.py | 2 +- .../cli/commands/test_agent.py | 1 + .../nemo_platform_ext/cli/test_app.py | 4 + .../sdk/cli_generator/cli_config.yaml | 1 - 9 files changed, 933 insertions(+), 4 deletions(-) diff --git a/docs/cli/reference.mdx b/docs/cli/reference.mdx index fd51f9326c..37e687ee69 100644 --- a/docs/cli/reference.mdx +++ b/docs/cli/reference.mdx @@ -5911,3 +5911,923 @@ nemo guardrail configs update [OPTIONS] NAME **Output Options:** * `--output-format, -f `: Output format for an entity. [possible values: json, yaml, raw, code] + +### nemo intake + +Intake operations. + +**Usage:** + +```shell +nemo intake [OPTIONS] COMMAND [ARGS]... +``` + +**Help:** + +* `--help, -h`: Show this message and exit. + +**Commands:** + +* `annotations`: Manage annotations +* `evaluator-results`: Manage evaluator_results +* `ingest`: Ingest operations +* `sessions`: Manage sessions +* `spans`: Manage spans +* `traces`: Manage traces + +#### nemo intake annotations + +Manage annotations + +**Usage:** + +```shell +nemo intake annotations [OPTIONS] COMMAND [ARGS]... +``` + +**Help:** + +* `--help, -h`: Show this message and exit. + +**Commands:** + +* `create`: Create annotations. +* `delete`: Delete Annotation +* `list`: List Annotations +* `get`: Get Annotation + +##### nemo intake annotations create + +Create annotations. + +**Required fields:** kind, session_id + +**Examples:** + +```shell +nemo intake annotations create --input-file config.json +nemo intake annotations create --input-data '{"kind": "value", "session_id": "value"}' +echo '{"json": "data"}' | nemo intake annotations create --input-file - +nemo intake annotations create --