alloy-runtime-cli 0.2.69__tar.gz → 0.2.70__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/PKG-INFO +3 -3
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/PKG-INFO +3 -3
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/requires.txt +2 -2
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/edit/presenter.py +21 -14
- alloy_runtime_cli-0.2.70/cli/commands/content/get/presenter.py +139 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/command.py +2 -2
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/export_formatters.py +31 -8
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/presenter.py +12 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/field_extractor.py +1 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/main.py +1 -1
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/content.py +12 -10
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/models.py +5 -1
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/pyproject.toml +3 -3
- alloy_runtime_cli-0.2.69/cli/commands/content/get/presenter.py +0 -105
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/MANIFEST.in +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/README.md +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/SOURCES.txt +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/dependency_links.txt +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/entry_points.txt +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/top_level.txt +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/bootstrap_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/grant/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/grant/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/grant/fields.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/grant/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/create/fields.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/tool_formatting.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/update/fields.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/agents/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/api_keys/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/api_keys/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/api_keys/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/api_keys/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/audio/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/audio/transcribe/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/audio/transcribe/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/audio/transcribe/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/auth/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/auth/login/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/auth/login/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/auth/signup/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/auth/signup/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/by_agent/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/by_agent/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/by_agent/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/by_model/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/by_model/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/by_model/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/daily/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/daily/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/daily/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/summary/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/summary/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/costs/summary/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/billing/projects/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/edit/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/edit/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/edit/editor.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/export_handler.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/create/fields.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/supported/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/supported/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/update/fields.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/credentials/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/executions/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/executions/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/executions/get/transcript_renderer.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/flag_utils.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/cancel/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/cancel/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/cancel/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/status/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/status/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/status/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/text/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/text/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/text/concurrent_renderer.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/text/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/generate/text/stream_renderer.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/cluster/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/cluster/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/cluster/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/cluster_status/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/cluster_status/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/cluster_status/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/status/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/status/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/status/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/collections/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_metadata/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_metadata/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_metadata/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_reingest_failed/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_reingest_failed/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_reingest_failed_status/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/bulk_reingest_failed_status/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/count/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/count/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/count/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/ingest/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/ingest/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/ingest/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/reingest/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/reingest/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/reingest/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/documents/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/recover/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/recover/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/recover/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/search/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/search/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/search/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/refresh/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/refresh/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/refresh/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/knowledge/synthesis/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/models/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/models/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/models/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/models/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/organizations/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/organizations/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/organizations/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/ping/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/approvals/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/approvals/decide_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/approvals/get_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/approvals/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/costs/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/costs/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/costs/daily_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/costs/daily_presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/costs/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/env_vars/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/env_vars/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/env_vars/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/execute/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/execute/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/execute/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs_by_model/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs_by_model/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs_by_model/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/costs_by_step/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/get_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/list_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/rerun_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/executions/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/create_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/create_presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/delete_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/env_vars_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/env_vars_presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/get_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/list_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/once_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/once_presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/update_command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/schedules/update_presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/pipelines/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/render/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/render/html_to_image/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/render/html_to_image/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/schemas/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/messages/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/messages/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sessions/messages/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/shared_flags.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sync/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sync/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/sync/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tags/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/get_by_version/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/get_by_version/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/render/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/render/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/render/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/validate/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/validate/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/validate/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/version/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/version/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/templates/version/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/create/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/delete/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/delete/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/delete/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/update/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/update/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tool_configs/update/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/get/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/get/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/get/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/list/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/list/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/tools/list/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/users/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/users/create/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/users/create/presenter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/whoami/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/auth_storage.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/client_factory.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/command.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/config.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/console.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/editor.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/error_display.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/file_content.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/filter_parser.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatters/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatters/base.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatters/compact_formatter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatters/json_formatter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatters/table_formatter.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatting/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/formatting/fields.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/agent_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/agent_tool_editor.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/agent_tools_manager.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/base_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/components.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/json_schema_builder.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/model_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/parsers.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/resolution_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/schema_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/tag_management_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/tag_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/template_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/tool_config_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/forms/tool_picker.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/help_json.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/help_markdown.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/help_toon.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/injection/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/injection/parser.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/injection/resolver.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/kv_parser.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/local_storage.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/macro_parser.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/output.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/provider_setup.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/renderers/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/renderers/entity_renderer.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/renderers/list_renderer.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/scope_utils.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/spinner.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/tui/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/tui/clipboard.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/tui/formatters.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/tui/preview.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/tui/selectable.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/validation/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/infrastructure/validation/tag_validation.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/app.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/app_store.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/base.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/create_session.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/load_session.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/regenerate.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/reload_session.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/send_message.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/commands/undo.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/editor.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/messages.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/pane.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/renderers/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/renderers/base.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/renderers/markdown.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/renderers/plain.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/screen.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/services/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/services/injection.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/services/name_generator.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/slash_commands.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/store.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/types.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/chat_header.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/chat_input.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/injection_popup.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/message_display.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/session_sidebar.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/chat/widgets/welcome_screen.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/agents.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/base.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/dashboard.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/nav_screen.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/schemas.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/templates.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/screens/tool_configs.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/app.tcss +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/browser.tcss +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/chat.tcss +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/dashboard.tcss +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/forms.tcss +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/styles/modals.tcss +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/__init__.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/agent_create_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/agent_form_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/agent_update_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/base_form_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/confirm_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/help_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/new_session_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/schema_create_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/schema_update_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/status_footer.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/template_create_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/template_update_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/tool_config_create_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/tui/widgets/tool_config_update_modal.py +0 -0
- {alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: alloy-runtime-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.70
|
|
4
4
|
Summary: Alloy Runtime CLI - Command-line interface for Alloy Runtime server
|
|
5
5
|
Keywords: alloy,cli,python,terminal,workflow
|
|
6
6
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -16,8 +16,8 @@ Requires-Dist: textual==8.2.3
|
|
|
16
16
|
Requires-Dist: genson==1.3.0
|
|
17
17
|
Requires-Dist: pyperclip==1.11.0
|
|
18
18
|
Requires-Dist: prompt-toolkit==3.0.52
|
|
19
|
-
Requires-Dist: alloy-runtime-sdk==0.2.
|
|
20
|
-
Requires-Dist: alloy-runtime-types==0.2.
|
|
19
|
+
Requires-Dist: alloy-runtime-sdk==0.2.70
|
|
20
|
+
Requires-Dist: alloy-runtime-types==0.2.70
|
|
21
21
|
Requires-Dist: trogon==0.6.0
|
|
22
22
|
|
|
23
23
|
# alloy-runtime-cli
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: alloy-runtime-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.70
|
|
4
4
|
Summary: Alloy Runtime CLI - Command-line interface for Alloy Runtime server
|
|
5
5
|
Keywords: alloy,cli,python,terminal,workflow
|
|
6
6
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -16,8 +16,8 @@ Requires-Dist: textual==8.2.3
|
|
|
16
16
|
Requires-Dist: genson==1.3.0
|
|
17
17
|
Requires-Dist: pyperclip==1.11.0
|
|
18
18
|
Requires-Dist: prompt-toolkit==3.0.52
|
|
19
|
-
Requires-Dist: alloy-runtime-sdk==0.2.
|
|
20
|
-
Requires-Dist: alloy-runtime-types==0.2.
|
|
19
|
+
Requires-Dist: alloy-runtime-sdk==0.2.70
|
|
20
|
+
Requires-Dist: alloy-runtime-types==0.2.70
|
|
21
21
|
Requires-Dist: trogon==0.6.0
|
|
22
22
|
|
|
23
23
|
# alloy-runtime-cli
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/edit/presenter.py
RENAMED
|
@@ -11,7 +11,10 @@ from cli.infrastructure.formatting.fields import (
|
|
|
11
11
|
)
|
|
12
12
|
from cli.infrastructure.output import OutputService
|
|
13
13
|
from cli.infrastructure.renderers.entity_renderer import FieldConfig
|
|
14
|
-
from alloy_runtime_types.dtos.content import
|
|
14
|
+
from alloy_runtime_types.dtos.content import (
|
|
15
|
+
ExecutionMetadataResponse,
|
|
16
|
+
UpdateContentPartResponse,
|
|
17
|
+
)
|
|
15
18
|
from alloy_runtime_types.dtos.templates import TagResponse
|
|
16
19
|
|
|
17
20
|
|
|
@@ -19,6 +22,7 @@ def present_content_edit_success(
|
|
|
19
22
|
response: UpdateContentPartResponse, updated_content: bool, updated_tags: bool
|
|
20
23
|
) -> None:
|
|
21
24
|
output = OutputService.get()
|
|
25
|
+
execution_metadata = _require_assistant_execution_metadata(response)
|
|
22
26
|
|
|
23
27
|
updates: list[str] = []
|
|
24
28
|
if updated_content:
|
|
@@ -53,29 +57,23 @@ def present_content_edit_success(
|
|
|
53
57
|
FieldConfig(
|
|
54
58
|
"id",
|
|
55
59
|
"Execution ID",
|
|
56
|
-
lambda _: format_uuid(
|
|
57
|
-
response.execution_metadata.agent_execution_id, short=True
|
|
58
|
-
),
|
|
60
|
+
lambda _: format_uuid(execution_metadata.agent_execution_id, short=True),
|
|
59
61
|
),
|
|
60
62
|
FieldConfig(
|
|
61
63
|
"id",
|
|
62
64
|
"Agent",
|
|
63
65
|
lambda _: format_optional(
|
|
64
|
-
|
|
66
|
+
execution_metadata.agent_name,
|
|
65
67
|
placeholder="(direct model call)",
|
|
66
68
|
),
|
|
67
69
|
),
|
|
68
|
-
FieldConfig(
|
|
69
|
-
|
|
70
|
-
),
|
|
71
|
-
FieldConfig(
|
|
72
|
-
"id", "Model", lambda _: response.execution_metadata.provider_model_name
|
|
73
|
-
),
|
|
70
|
+
FieldConfig("id", "Provider", lambda _: execution_metadata.provider_key),
|
|
71
|
+
FieldConfig("id", "Model", lambda _: execution_metadata.provider_model_name),
|
|
74
72
|
FieldConfig(
|
|
75
73
|
"id",
|
|
76
74
|
"Cost",
|
|
77
75
|
lambda _: format_optional(
|
|
78
|
-
|
|
76
|
+
execution_metadata.total_cost_usd,
|
|
79
77
|
formatter=format_cost,
|
|
80
78
|
),
|
|
81
79
|
),
|
|
@@ -83,14 +81,14 @@ def present_content_edit_success(
|
|
|
83
81
|
"id",
|
|
84
82
|
"Tokens",
|
|
85
83
|
lambda _: format_optional(
|
|
86
|
-
|
|
84
|
+
execution_metadata.total_tokens,
|
|
87
85
|
formatter=format_tokens,
|
|
88
86
|
),
|
|
89
87
|
),
|
|
90
88
|
FieldConfig(
|
|
91
89
|
"id",
|
|
92
90
|
"Queued At",
|
|
93
|
-
lambda _: format_datetime(
|
|
91
|
+
lambda _: format_datetime(execution_metadata.queued_at),
|
|
94
92
|
),
|
|
95
93
|
]
|
|
96
94
|
output.entity(
|
|
@@ -123,3 +121,12 @@ def _format_content(response: UpdateContentPartResponse) -> str:
|
|
|
123
121
|
if response.content_structured is not None:
|
|
124
122
|
return json.dumps(response.content_structured, indent=2, ensure_ascii=False)
|
|
125
123
|
return "(no content)"
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
def _require_assistant_execution_metadata(
|
|
127
|
+
response: UpdateContentPartResponse,
|
|
128
|
+
) -> ExecutionMetadataResponse:
|
|
129
|
+
assert response.message_role == "assistant"
|
|
130
|
+
execution_metadata = response.execution_metadata
|
|
131
|
+
assert execution_metadata is not None
|
|
132
|
+
return execution_metadata
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import json
|
|
2
|
+
|
|
3
|
+
from cli.infrastructure.formatting.fields import (
|
|
4
|
+
format_cost,
|
|
5
|
+
format_datetime,
|
|
6
|
+
format_optional,
|
|
7
|
+
format_tokens,
|
|
8
|
+
format_uuid,
|
|
9
|
+
)
|
|
10
|
+
from cli.infrastructure.output import OutputFormat, OutputService
|
|
11
|
+
from cli.infrastructure.renderers.entity_renderer import FieldConfig
|
|
12
|
+
from alloy_runtime_types.dtos.content import ContentPartItemResponse
|
|
13
|
+
from alloy_runtime_types.dtos.templates import TagResponse
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def present_content_part(response: ContentPartItemResponse) -> None:
|
|
17
|
+
output = OutputService.get()
|
|
18
|
+
|
|
19
|
+
if getattr(output, "format", OutputFormat.COMPACT) == OutputFormat.JSON:
|
|
20
|
+
output.raw(response)
|
|
21
|
+
return
|
|
22
|
+
|
|
23
|
+
metadata_fields = [
|
|
24
|
+
FieldConfig("id", "ID", str),
|
|
25
|
+
FieldConfig(
|
|
26
|
+
"message_id", "Message ID", lambda value: format_uuid(value, short=True)
|
|
27
|
+
),
|
|
28
|
+
FieldConfig("message_role", "Message Role"),
|
|
29
|
+
FieldConfig("part_index", "Part Index", str),
|
|
30
|
+
FieldConfig("content_type_id", "Content Type"),
|
|
31
|
+
FieldConfig(
|
|
32
|
+
"content_structured",
|
|
33
|
+
"Storage Type",
|
|
34
|
+
lambda value: "structured" if value else "text",
|
|
35
|
+
),
|
|
36
|
+
FieldConfig("created_at", "Created", format_datetime),
|
|
37
|
+
FieldConfig("tags", "Tags", _format_tags),
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
session = response.session
|
|
41
|
+
if session is not None:
|
|
42
|
+
metadata_fields.extend(
|
|
43
|
+
[
|
|
44
|
+
FieldConfig(
|
|
45
|
+
"id",
|
|
46
|
+
"Session ID",
|
|
47
|
+
lambda _: format_uuid(session.id, short=True),
|
|
48
|
+
),
|
|
49
|
+
FieldConfig(
|
|
50
|
+
"id",
|
|
51
|
+
"Session Name",
|
|
52
|
+
lambda _: format_optional(
|
|
53
|
+
session.name,
|
|
54
|
+
placeholder="(unnamed session)",
|
|
55
|
+
),
|
|
56
|
+
),
|
|
57
|
+
FieldConfig(
|
|
58
|
+
"id",
|
|
59
|
+
"Session Activity",
|
|
60
|
+
lambda _: format_datetime(session.last_activity_at),
|
|
61
|
+
),
|
|
62
|
+
]
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
execution_metadata = response.execution_metadata
|
|
66
|
+
if execution_metadata is not None:
|
|
67
|
+
metadata_fields.extend(
|
|
68
|
+
[
|
|
69
|
+
FieldConfig(
|
|
70
|
+
"id",
|
|
71
|
+
"Execution ID",
|
|
72
|
+
lambda _: format_uuid(
|
|
73
|
+
execution_metadata.agent_execution_id, short=True
|
|
74
|
+
),
|
|
75
|
+
),
|
|
76
|
+
FieldConfig(
|
|
77
|
+
"id",
|
|
78
|
+
"Agent",
|
|
79
|
+
lambda _: format_optional(
|
|
80
|
+
execution_metadata.agent_name,
|
|
81
|
+
placeholder="(direct model call)",
|
|
82
|
+
),
|
|
83
|
+
),
|
|
84
|
+
FieldConfig(
|
|
85
|
+
"id",
|
|
86
|
+
"Provider",
|
|
87
|
+
lambda _: execution_metadata.provider_key,
|
|
88
|
+
),
|
|
89
|
+
FieldConfig(
|
|
90
|
+
"id",
|
|
91
|
+
"Model",
|
|
92
|
+
lambda _: execution_metadata.provider_model_name,
|
|
93
|
+
),
|
|
94
|
+
FieldConfig(
|
|
95
|
+
"id",
|
|
96
|
+
"Cost",
|
|
97
|
+
lambda _: format_optional(
|
|
98
|
+
execution_metadata.total_cost_usd,
|
|
99
|
+
formatter=format_cost,
|
|
100
|
+
),
|
|
101
|
+
),
|
|
102
|
+
FieldConfig(
|
|
103
|
+
"id",
|
|
104
|
+
"Tokens",
|
|
105
|
+
lambda _: format_optional(
|
|
106
|
+
execution_metadata.total_tokens,
|
|
107
|
+
formatter=format_tokens,
|
|
108
|
+
),
|
|
109
|
+
),
|
|
110
|
+
FieldConfig(
|
|
111
|
+
"id",
|
|
112
|
+
"Queued At",
|
|
113
|
+
lambda _: format_datetime(execution_metadata.queued_at),
|
|
114
|
+
),
|
|
115
|
+
]
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
output.entity(response, "Content Part", metadata_fields, raw_payload=response)
|
|
119
|
+
|
|
120
|
+
content_fields = [
|
|
121
|
+
FieldConfig("id", "Content", lambda _: _format_content(response)),
|
|
122
|
+
]
|
|
123
|
+
output.entity(response, "Content Body", content_fields)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
def _format_tags(tags: list[TagResponse]) -> str:
|
|
127
|
+
if not tags:
|
|
128
|
+
return "(no tags)"
|
|
129
|
+
|
|
130
|
+
tag_paths = [t.tag_path for t in tags]
|
|
131
|
+
return ", ".join(tag_paths)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
def _format_content(response: ContentPartItemResponse) -> str:
|
|
135
|
+
if response.content_text is not None:
|
|
136
|
+
return response.content_text
|
|
137
|
+
if response.content_structured is not None:
|
|
138
|
+
return json.dumps(response.content_structured, indent=2, ensure_ascii=False)
|
|
139
|
+
return "(no content)"
|
|
@@ -40,7 +40,7 @@ def content_list_command(
|
|
|
40
40
|
None,
|
|
41
41
|
"-a",
|
|
42
42
|
"--agent",
|
|
43
|
-
help="Filter by agent UUID",
|
|
43
|
+
help="Filter by agent UUID (assistant-only)",
|
|
44
44
|
),
|
|
45
45
|
session: Optional[str] = typer.Option(
|
|
46
46
|
None,
|
|
@@ -163,7 +163,7 @@ def content_list_command(
|
|
|
163
163
|
help="Fields output: tsv, csv, json, jsonl, values",
|
|
164
164
|
),
|
|
165
165
|
) -> None:
|
|
166
|
-
"""List
|
|
166
|
+
"""List content parts from user and assistant messages.
|
|
167
167
|
|
|
168
168
|
Examples:
|
|
169
169
|
alloy content list
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/export_formatters.py
RENAMED
|
@@ -48,6 +48,18 @@ class ContentExportFormatter(ABC):
|
|
|
48
48
|
return json.dumps(item.content_structured, ensure_ascii=False)
|
|
49
49
|
return ""
|
|
50
50
|
|
|
51
|
+
def _format_role_label(self, item: ContentPartItemResponse) -> str:
|
|
52
|
+
"""Return the explicit plain-text role label."""
|
|
53
|
+
return item.message_role
|
|
54
|
+
|
|
55
|
+
def _format_role_header_label(self, item: ContentPartItemResponse) -> str:
|
|
56
|
+
"""Return the title-cased role label for markdown headers."""
|
|
57
|
+
return self._format_role_label(item).capitalize()
|
|
58
|
+
|
|
59
|
+
def _format_labeled_content(self, item: ContentPartItemResponse) -> str:
|
|
60
|
+
"""Prefix content with its role label."""
|
|
61
|
+
return f"[{self._format_role_label(item)}] {self._get_content(item)}"
|
|
62
|
+
|
|
51
63
|
def _group_items(
|
|
52
64
|
self, items: list[ContentPartItemResponse], group_by: str
|
|
53
65
|
) -> dict[str, list[ContentPartItemResponse]]:
|
|
@@ -140,7 +152,9 @@ class MarkdownFormatter(ContentExportFormatter):
|
|
|
140
152
|
sections: list[str] = []
|
|
141
153
|
for i, item in enumerate(items, 1):
|
|
142
154
|
content = self._get_content(item)
|
|
143
|
-
sections.append(
|
|
155
|
+
sections.append(
|
|
156
|
+
f"## {self._format_role_header_label(item)} Item {i}\n\n{content}"
|
|
157
|
+
)
|
|
144
158
|
return "\n\n".join(sections)
|
|
145
159
|
|
|
146
160
|
def _format_grouped(
|
|
@@ -153,7 +167,9 @@ class MarkdownFormatter(ContentExportFormatter):
|
|
|
153
167
|
group_sections: list[str] = [f"## {group_name}"]
|
|
154
168
|
for i, item in enumerate(group_items, 1):
|
|
155
169
|
content = self._get_content(item)
|
|
156
|
-
group_sections.append(
|
|
170
|
+
group_sections.append(
|
|
171
|
+
f"### {self._format_role_header_label(item)} Item {i}\n\n{content}"
|
|
172
|
+
)
|
|
157
173
|
sections.append("\n\n".join(group_sections))
|
|
158
174
|
return "\n\n".join(sections)
|
|
159
175
|
|
|
@@ -211,7 +227,10 @@ class XmlFormatter(ContentExportFormatter):
|
|
|
211
227
|
tag_name = (
|
|
212
228
|
self._safe_tag_name(item.tags[0].tag_path) if item.tags else "item"
|
|
213
229
|
)
|
|
214
|
-
|
|
230
|
+
role = self._format_role_label(item)
|
|
231
|
+
lines.append(
|
|
232
|
+
f' <{tag_name} role="{role}">{self._wrap_cdata(content)}</{tag_name}>'
|
|
233
|
+
)
|
|
215
234
|
lines.append("</content_items>")
|
|
216
235
|
return "\n".join(lines)
|
|
217
236
|
|
|
@@ -226,7 +245,10 @@ class XmlFormatter(ContentExportFormatter):
|
|
|
226
245
|
lines.append(f" <{safe_name}>")
|
|
227
246
|
for item in group_items:
|
|
228
247
|
content = self._get_content(item)
|
|
229
|
-
|
|
248
|
+
role = self._format_role_label(item)
|
|
249
|
+
lines.append(
|
|
250
|
+
f' <item role="{role}">{self._wrap_cdata(content)}</item>'
|
|
251
|
+
)
|
|
230
252
|
lines.append(f" </{safe_name}>")
|
|
231
253
|
lines.append("</content_items>")
|
|
232
254
|
return "\n".join(lines)
|
|
@@ -255,7 +277,7 @@ class NumberedFormatter(ContentExportFormatter):
|
|
|
255
277
|
"""Format items as a flat numbered list."""
|
|
256
278
|
lines: list[str] = []
|
|
257
279
|
for i, item in enumerate(items, 1):
|
|
258
|
-
content = self.
|
|
280
|
+
content = self._format_labeled_content(item)
|
|
259
281
|
# Handle multi-line content
|
|
260
282
|
content_lines = content.split("\n")
|
|
261
283
|
if len(content_lines) == 1:
|
|
@@ -276,7 +298,7 @@ class NumberedFormatter(ContentExportFormatter):
|
|
|
276
298
|
for group_name, group_items in groups.items():
|
|
277
299
|
lines.append(f"[{group_name}]")
|
|
278
300
|
for i, item in enumerate(group_items, 1):
|
|
279
|
-
content = self.
|
|
301
|
+
content = self._format_labeled_content(item)
|
|
280
302
|
content_lines = content.split("\n")
|
|
281
303
|
if len(content_lines) == 1:
|
|
282
304
|
lines.append(f" {i}. {content}")
|
|
@@ -314,7 +336,7 @@ class PlainFormatter(ContentExportFormatter):
|
|
|
314
336
|
"""Format items as plain text."""
|
|
315
337
|
lines: list[str] = []
|
|
316
338
|
for item in items:
|
|
317
|
-
content = self.
|
|
339
|
+
content = self._format_labeled_content(item)
|
|
318
340
|
lines.append(content)
|
|
319
341
|
return "\n".join(lines)
|
|
320
342
|
|
|
@@ -327,7 +349,7 @@ class PlainFormatter(ContentExportFormatter):
|
|
|
327
349
|
for group_items in groups.values():
|
|
328
350
|
section_lines: list[str] = []
|
|
329
351
|
for item in group_items:
|
|
330
|
-
content = self.
|
|
352
|
+
content = self._format_labeled_content(item)
|
|
331
353
|
section_lines.append(content)
|
|
332
354
|
sections.append("\n".join(section_lines))
|
|
333
355
|
return "\n\n".join(sections)
|
|
@@ -356,6 +378,7 @@ class JsonExportFormatter(ContentExportFormatter):
|
|
|
356
378
|
"""Convert content item to dictionary for JSON serialization."""
|
|
357
379
|
return {
|
|
358
380
|
"id": str(item.id),
|
|
381
|
+
"message_role": item.message_role,
|
|
359
382
|
"content_type": item.content_type_id,
|
|
360
383
|
"content": item.content_text or item.content_structured,
|
|
361
384
|
"tags": [t.tag_path for t in item.tags],
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/content/list/presenter.py
RENAMED
|
@@ -74,6 +74,11 @@ def _format_model_info(part: Any) -> str:
|
|
|
74
74
|
return "-"
|
|
75
75
|
|
|
76
76
|
|
|
77
|
+
def _format_role(part: Any) -> str:
|
|
78
|
+
"""Format the message role for display."""
|
|
79
|
+
return str(part.message_role)
|
|
80
|
+
|
|
81
|
+
|
|
77
82
|
def _format_created_at(created_at: datetime | None) -> str:
|
|
78
83
|
"""Format creation timestamp for display.
|
|
79
84
|
|
|
@@ -106,6 +111,12 @@ def present_content_list(response: ListContentPartsResponse) -> None:
|
|
|
106
111
|
compact_line=1,
|
|
107
112
|
compact_style="cyan",
|
|
108
113
|
),
|
|
114
|
+
ColumnConfig(
|
|
115
|
+
source_field="_role",
|
|
116
|
+
header_label="Role",
|
|
117
|
+
compact_line=1,
|
|
118
|
+
compact_style="yellow",
|
|
119
|
+
),
|
|
109
120
|
ColumnConfig(
|
|
110
121
|
source_field="content_type_id",
|
|
111
122
|
header_label="Type",
|
|
@@ -153,6 +164,7 @@ def present_content_list(response: ListContentPartsResponse) -> None:
|
|
|
153
164
|
self.tags = part.tags
|
|
154
165
|
self.created_at = part.created_at
|
|
155
166
|
# Add computed fields
|
|
167
|
+
self._role = _format_role(part)
|
|
156
168
|
self._content_preview = _format_content_preview(
|
|
157
169
|
part.content_text, part.content_structured
|
|
158
170
|
)
|
|
@@ -318,6 +318,7 @@ Available fields for --fields/-F option:
|
|
|
318
318
|
Top-level fields:
|
|
319
319
|
id Content part UUID
|
|
320
320
|
message_id Parent message UUID
|
|
321
|
+
message_role Role: user or assistant
|
|
321
322
|
part_index Index within message (0-based)
|
|
322
323
|
content_type_id Content type (text, code, json, etc.)
|
|
323
324
|
content_text Plain text content
|
|
@@ -678,7 +678,7 @@ generate_app.command("cancel")(generate_cancel_command)
|
|
|
678
678
|
|
|
679
679
|
# Content command group
|
|
680
680
|
content_app = typer.Typer(
|
|
681
|
-
help="Query and manage
|
|
681
|
+
help="Query and manage content from user and assistant messages",
|
|
682
682
|
no_args_is_help=True,
|
|
683
683
|
)
|
|
684
684
|
|
|
@@ -45,7 +45,7 @@ class ContentWidget(BrowserWidget[ContentPartView]):
|
|
|
45
45
|
app: "AlloyRuntimeApp"
|
|
46
46
|
|
|
47
47
|
TITLE = "Content"
|
|
48
|
-
TABLE_COLUMNS = ["Type", "Content", "Tags", "Model", "Updated"]
|
|
48
|
+
TABLE_COLUMNS = ["Role", "Type", "Content", "Tags", "Model", "Updated"]
|
|
49
49
|
|
|
50
50
|
def __init__(self, **kwargs: Any) -> None:
|
|
51
51
|
"""Initialize the content widget."""
|
|
@@ -124,6 +124,7 @@ class ContentWidget(BrowserWidget[ContentPartView]):
|
|
|
124
124
|
"""Format a content part as a table row."""
|
|
125
125
|
tags_dicts = [{"tag_path": t.tag_path} for t in item.tags]
|
|
126
126
|
return (
|
|
127
|
+
item.message_role,
|
|
127
128
|
item.content_type_id,
|
|
128
129
|
self._format_content_preview(item),
|
|
129
130
|
format_tags_list(tags_dicts, max_display=2),
|
|
@@ -193,15 +194,16 @@ class ContentWidget(BrowserWidget[ContentPartView]):
|
|
|
193
194
|
external_id_display = item.external_id or "-"
|
|
194
195
|
|
|
195
196
|
preview_text = f"""[bold]External ID:[/] {external_id_display}
|
|
196
|
-
[bold]ID:[/] {item.id}
|
|
197
|
-
[bold]
|
|
198
|
-
[bold]
|
|
199
|
-
[bold]
|
|
200
|
-
[bold]
|
|
201
|
-
[bold]
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
197
|
+
[bold]ID:[/] {item.id}
|
|
198
|
+
[bold]Role:[/] {item.message_role}
|
|
199
|
+
[bold]Type:[/] {item.content_type_id}
|
|
200
|
+
[bold]Storage:[/] {storage}
|
|
201
|
+
[bold]Model:[/] {model_info}
|
|
202
|
+
[bold]Tags:[/] {tags_display}
|
|
203
|
+
[bold]Created:[/] {created_at}
|
|
204
|
+
|
|
205
|
+
[bold]Content:[/]
|
|
206
|
+
{content_display}"""
|
|
205
207
|
|
|
206
208
|
preview.update(preview_text)
|
|
207
209
|
|
|
@@ -5,7 +5,7 @@ data in a structured, type-safe manner.
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
from datetime import datetime
|
|
8
|
-
from typing import Any, cast
|
|
8
|
+
from typing import Any, Literal, cast
|
|
9
9
|
|
|
10
10
|
from pydantic import BaseModel, Field
|
|
11
11
|
|
|
@@ -36,6 +36,9 @@ class ContentPartView(BaseModel):
|
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
38
|
id: str = Field(description="Content part UUID as string")
|
|
39
|
+
message_role: Literal["user", "assistant"] = Field(
|
|
40
|
+
description="Parent message role for the content part"
|
|
41
|
+
)
|
|
39
42
|
content_type_id: str = Field(description="Content type (text, code, json, etc.)")
|
|
40
43
|
content_text: str | None = Field(
|
|
41
44
|
default=None, description="Plain text content (null for structured/media types)"
|
|
@@ -86,6 +89,7 @@ class ContentPartView(BaseModel):
|
|
|
86
89
|
|
|
87
90
|
return cls(
|
|
88
91
|
id=str(part.id),
|
|
92
|
+
message_role=part.message_role,
|
|
89
93
|
content_type_id=part.content_type_id,
|
|
90
94
|
content_text=part.content_text,
|
|
91
95
|
content_structured=part.content_structured,
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "alloy-runtime-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.70"
|
|
8
8
|
description = "Alloy Runtime CLI - Command-line interface for Alloy Runtime server"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.13"
|
|
@@ -23,8 +23,8 @@ dependencies = [
|
|
|
23
23
|
"genson==1.3.0",
|
|
24
24
|
"pyperclip==1.11.0",
|
|
25
25
|
"prompt-toolkit==3.0.52",
|
|
26
|
-
"alloy-runtime-sdk==0.2.
|
|
27
|
-
"alloy-runtime-types==0.2.
|
|
26
|
+
"alloy-runtime-sdk==0.2.70",
|
|
27
|
+
"alloy-runtime-types==0.2.70",
|
|
28
28
|
"trogon==0.6.0",
|
|
29
29
|
]
|
|
30
30
|
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
|
|
3
|
-
from cli.infrastructure.formatting.fields import (
|
|
4
|
-
format_cost,
|
|
5
|
-
format_datetime,
|
|
6
|
-
format_optional,
|
|
7
|
-
format_tokens,
|
|
8
|
-
format_uuid,
|
|
9
|
-
)
|
|
10
|
-
from cli.infrastructure.output import OutputFormat, OutputService
|
|
11
|
-
from cli.infrastructure.renderers.entity_renderer import FieldConfig
|
|
12
|
-
from alloy_runtime_types.dtos.content import ContentPartItemResponse
|
|
13
|
-
from alloy_runtime_types.dtos.templates import TagResponse
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
def present_content_part(response: ContentPartItemResponse) -> None:
|
|
17
|
-
output = OutputService.get()
|
|
18
|
-
|
|
19
|
-
if getattr(output, "format", OutputFormat.COMPACT) == OutputFormat.JSON:
|
|
20
|
-
output.raw(response)
|
|
21
|
-
return
|
|
22
|
-
|
|
23
|
-
metadata_fields = [
|
|
24
|
-
FieldConfig("id", "ID", str),
|
|
25
|
-
FieldConfig(
|
|
26
|
-
"message_id", "Message ID", lambda value: format_uuid(value, short=True)
|
|
27
|
-
),
|
|
28
|
-
FieldConfig("part_index", "Part Index", str),
|
|
29
|
-
FieldConfig("content_type_id", "Content Type"),
|
|
30
|
-
FieldConfig(
|
|
31
|
-
"content_structured",
|
|
32
|
-
"Storage Type",
|
|
33
|
-
lambda value: "structured" if value else "text",
|
|
34
|
-
),
|
|
35
|
-
FieldConfig("created_at", "Created", format_datetime),
|
|
36
|
-
FieldConfig("tags", "Tags", _format_tags),
|
|
37
|
-
FieldConfig(
|
|
38
|
-
"id",
|
|
39
|
-
"Execution ID",
|
|
40
|
-
lambda _: format_uuid(
|
|
41
|
-
response.execution_metadata.agent_execution_id, short=True
|
|
42
|
-
),
|
|
43
|
-
),
|
|
44
|
-
FieldConfig(
|
|
45
|
-
"id",
|
|
46
|
-
"Agent",
|
|
47
|
-
lambda _: format_optional(
|
|
48
|
-
response.execution_metadata.agent_name,
|
|
49
|
-
placeholder="(direct model call)",
|
|
50
|
-
),
|
|
51
|
-
),
|
|
52
|
-
FieldConfig(
|
|
53
|
-
"id",
|
|
54
|
-
"Provider",
|
|
55
|
-
lambda _: response.execution_metadata.provider_key,
|
|
56
|
-
),
|
|
57
|
-
FieldConfig(
|
|
58
|
-
"id",
|
|
59
|
-
"Model",
|
|
60
|
-
lambda _: response.execution_metadata.provider_model_name,
|
|
61
|
-
),
|
|
62
|
-
FieldConfig(
|
|
63
|
-
"id",
|
|
64
|
-
"Cost",
|
|
65
|
-
lambda _: format_optional(
|
|
66
|
-
response.execution_metadata.total_cost_usd,
|
|
67
|
-
formatter=format_cost,
|
|
68
|
-
),
|
|
69
|
-
),
|
|
70
|
-
FieldConfig(
|
|
71
|
-
"id",
|
|
72
|
-
"Tokens",
|
|
73
|
-
lambda _: format_optional(
|
|
74
|
-
response.execution_metadata.total_tokens,
|
|
75
|
-
formatter=format_tokens,
|
|
76
|
-
),
|
|
77
|
-
),
|
|
78
|
-
FieldConfig(
|
|
79
|
-
"id",
|
|
80
|
-
"Queued At",
|
|
81
|
-
lambda _: format_datetime(response.execution_metadata.queued_at),
|
|
82
|
-
),
|
|
83
|
-
]
|
|
84
|
-
output.entity(response, "Content Part", metadata_fields, raw_payload=response)
|
|
85
|
-
|
|
86
|
-
content_fields = [
|
|
87
|
-
FieldConfig("id", "Content", lambda _: _format_content(response)),
|
|
88
|
-
]
|
|
89
|
-
output.entity(response, "Content Body", content_fields)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
def _format_tags(tags: list[TagResponse]) -> str:
|
|
93
|
-
if not tags:
|
|
94
|
-
return "(no tags)"
|
|
95
|
-
|
|
96
|
-
tag_paths = [t.tag_path for t in tags]
|
|
97
|
-
return ", ".join(tag_paths)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
def _format_content(response: ContentPartItemResponse) -> str:
|
|
101
|
-
if response.content_text is not None:
|
|
102
|
-
return response.content_text
|
|
103
|
-
if response.content_structured is not None:
|
|
104
|
-
return json.dumps(response.content_structured, indent=2, ensure_ascii=False)
|
|
105
|
-
return "(no content)"
|
|
File without changes
|
|
File without changes
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/alloy_runtime_cli.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/bootstrap_command.py
RENAMED
|
File without changes
|
{alloy_runtime_cli-0.2.69 → alloy_runtime_cli-0.2.70}/cli/commands/admin/credentials/__init__.py
RENAMED
|
File without changes
|