alloy-runtime-cli 0.2.33__tar.gz → 0.2.35__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.
Files changed (475) hide show
  1. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/PKG-INFO +5 -4
  2. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/README.md +2 -1
  3. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/alloy_runtime_cli.egg-info/PKG-INFO +5 -4
  4. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/alloy_runtime_cli.egg-info/requires.txt +2 -2
  5. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/create/command.py +10 -10
  6. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/update/command.py +12 -12
  7. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/by_agent/command.py +3 -6
  8. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/by_model/command.py +3 -6
  9. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/daily/command.py +3 -7
  10. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/summary/command.py +3 -6
  11. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/get/command.py +3 -7
  12. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/text/command.py +4 -3
  13. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/bulk_metadata/command.py +2 -8
  14. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/ingest/command.py +9 -10
  15. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/reingest/command.py +2 -12
  16. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/ping/command.py +3 -0
  17. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/get/presenter.py +3 -0
  18. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/create/command.py +1 -1
  19. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/create/command.py +15 -1
  20. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/create/command.py +2 -2
  21. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/scope_utils.py +3 -3
  22. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/agent_form_modal.py +2 -2
  23. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/schema_create_modal.py +2 -2
  24. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/template_create_modal.py +12 -0
  25. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/tool_config_create_modal.py +2 -2
  26. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/pyproject.toml +3 -3
  27. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/MANIFEST.in +0 -0
  28. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/alloy_runtime_cli.egg-info/SOURCES.txt +0 -0
  29. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/alloy_runtime_cli.egg-info/dependency_links.txt +0 -0
  30. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/alloy_runtime_cli.egg-info/entry_points.txt +0 -0
  31. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/alloy_runtime_cli.egg-info/top_level.txt +0 -0
  32. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/__init__.py +0 -0
  33. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/__init__.py +0 -0
  34. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/__init__.py +0 -0
  35. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/bootstrap_command.py +0 -0
  36. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/__init__.py +0 -0
  37. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/create/__init__.py +0 -0
  38. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/create/command.py +0 -0
  39. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/create/presenter.py +0 -0
  40. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/grant/__init__.py +0 -0
  41. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/grant/command.py +0 -0
  42. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/grant/fields.py +0 -0
  43. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/admin/credentials/grant/presenter.py +0 -0
  44. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/__init__.py +0 -0
  45. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/create/__init__.py +0 -0
  46. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/create/fields.py +0 -0
  47. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/create/presenter.py +0 -0
  48. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/delete/__init__.py +0 -0
  49. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/delete/command.py +0 -0
  50. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/delete/presenter.py +0 -0
  51. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/get/command.py +0 -0
  52. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/get/presenter.py +0 -0
  53. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/list/__init__.py +0 -0
  54. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/list/command.py +0 -0
  55. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/list/presenter.py +0 -0
  56. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/update/__init__.py +0 -0
  57. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/update/fields.py +0 -0
  58. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/agents/update/presenter.py +0 -0
  59. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/api_keys/__init__.py +0 -0
  60. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/api_keys/create/__init__.py +0 -0
  61. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/api_keys/create/command.py +0 -0
  62. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/api_keys/create/presenter.py +0 -0
  63. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/audio/__init__.py +0 -0
  64. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/audio/transcribe/__init__.py +0 -0
  65. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/audio/transcribe/command.py +0 -0
  66. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/audio/transcribe/presenter.py +0 -0
  67. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/auth/__init__.py +0 -0
  68. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/auth/login/__init__.py +0 -0
  69. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/auth/login/command.py +0 -0
  70. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/auth/signup/__init__.py +0 -0
  71. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/auth/signup/command.py +0 -0
  72. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/__init__.py +0 -0
  73. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/__init__.py +0 -0
  74. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/by_agent/__init__.py +0 -0
  75. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/by_agent/presenter.py +0 -0
  76. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/by_model/__init__.py +0 -0
  77. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/by_model/presenter.py +0 -0
  78. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/daily/__init__.py +0 -0
  79. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/daily/presenter.py +0 -0
  80. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/summary/__init__.py +0 -0
  81. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/costs/summary/presenter.py +0 -0
  82. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/__init__.py +0 -0
  83. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/create/__init__.py +0 -0
  84. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/create/command.py +0 -0
  85. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/create/presenter.py +0 -0
  86. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/get/__init__.py +0 -0
  87. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/get/presenter.py +0 -0
  88. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/list/__init__.py +0 -0
  89. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/list/command.py +0 -0
  90. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/billing/projects/list/presenter.py +0 -0
  91. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/__init__.py +0 -0
  92. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/delete/__init__.py +0 -0
  93. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/delete/command.py +0 -0
  94. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/delete/presenter.py +0 -0
  95. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/edit/__init__.py +0 -0
  96. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/edit/command.py +0 -0
  97. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/edit/editor.py +0 -0
  98. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/edit/presenter.py +0 -0
  99. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/get/__init__.py +0 -0
  100. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/get/command.py +0 -0
  101. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/get/presenter.py +0 -0
  102. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/list/__init__.py +0 -0
  103. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/list/command.py +0 -0
  104. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/list/export_formatters.py +0 -0
  105. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/list/export_handler.py +0 -0
  106. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/content/list/presenter.py +0 -0
  107. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/__init__.py +0 -0
  108. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/create/__init__.py +0 -0
  109. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/create/command.py +0 -0
  110. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/create/fields.py +0 -0
  111. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/create/presenter.py +0 -0
  112. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/list/__init__.py +0 -0
  113. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/list/command.py +0 -0
  114. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/list/presenter.py +0 -0
  115. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/supported/command.py +0 -0
  116. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/supported/presenter.py +0 -0
  117. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/update/__init__.py +0 -0
  118. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/update/command.py +0 -0
  119. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/update/fields.py +0 -0
  120. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/credentials/update/presenter.py +0 -0
  121. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/flag_utils.py +0 -0
  122. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/__init__.py +0 -0
  123. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/cancel/__init__.py +0 -0
  124. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/cancel/command.py +0 -0
  125. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/cancel/presenter.py +0 -0
  126. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/status/__init__.py +0 -0
  127. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/status/command.py +0 -0
  128. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/status/presenter.py +0 -0
  129. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/text/__init__.py +0 -0
  130. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/text/concurrent_renderer.py +0 -0
  131. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/text/presenter.py +0 -0
  132. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/generate/text/stream_renderer.py +0 -0
  133. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/__init__.py +0 -0
  134. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/__init__.py +0 -0
  135. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/cluster/__init__.py +0 -0
  136. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/cluster/command.py +0 -0
  137. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/cluster/presenter.py +0 -0
  138. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/cluster_status/__init__.py +0 -0
  139. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/cluster_status/command.py +0 -0
  140. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/cluster_status/presenter.py +0 -0
  141. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/create/__init__.py +0 -0
  142. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/create/command.py +0 -0
  143. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/create/presenter.py +0 -0
  144. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/delete/__init__.py +0 -0
  145. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/delete/command.py +0 -0
  146. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/delete/presenter.py +0 -0
  147. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/get/__init__.py +0 -0
  148. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/get/command.py +0 -0
  149. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/get/presenter.py +0 -0
  150. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/list/__init__.py +0 -0
  151. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/list/command.py +0 -0
  152. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/list/presenter.py +0 -0
  153. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/update/__init__.py +0 -0
  154. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/update/command.py +0 -0
  155. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/collections/update/presenter.py +0 -0
  156. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/__init__.py +0 -0
  157. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/bulk_metadata/__init__.py +0 -0
  158. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/bulk_metadata/presenter.py +0 -0
  159. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/delete/__init__.py +0 -0
  160. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/delete/command.py +0 -0
  161. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/delete/presenter.py +0 -0
  162. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/get/__init__.py +0 -0
  163. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/get/command.py +0 -0
  164. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/get/presenter.py +0 -0
  165. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/ingest/__init__.py +0 -0
  166. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/ingest/presenter.py +0 -0
  167. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/list/__init__.py +0 -0
  168. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/list/command.py +0 -0
  169. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/list/presenter.py +0 -0
  170. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/reingest/__init__.py +0 -0
  171. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/reingest/presenter.py +0 -0
  172. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/update/__init__.py +0 -0
  173. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/update/command.py +0 -0
  174. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/documents/update/presenter.py +0 -0
  175. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/recover/__init__.py +0 -0
  176. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/recover/command.py +0 -0
  177. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/recover/presenter.py +0 -0
  178. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/search/__init__.py +0 -0
  179. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/search/command.py +0 -0
  180. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/search/presenter.py +0 -0
  181. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/__init__.py +0 -0
  182. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/create/__init__.py +0 -0
  183. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/create/command.py +0 -0
  184. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/create/presenter.py +0 -0
  185. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/delete/__init__.py +0 -0
  186. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/delete/command.py +0 -0
  187. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/delete/presenter.py +0 -0
  188. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/get/__init__.py +0 -0
  189. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/get/command.py +0 -0
  190. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/get/presenter.py +0 -0
  191. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/list/__init__.py +0 -0
  192. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/list/command.py +0 -0
  193. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/list/presenter.py +0 -0
  194. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/refresh/__init__.py +0 -0
  195. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/refresh/command.py +0 -0
  196. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/refresh/presenter.py +0 -0
  197. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/update/__init__.py +0 -0
  198. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/update/command.py +0 -0
  199. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/knowledge/synthesis/update/presenter.py +0 -0
  200. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/models/__init__.py +0 -0
  201. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/models/list/__init__.py +0 -0
  202. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/models/list/command.py +0 -0
  203. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/models/list/presenter.py +0 -0
  204. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/organizations/__init__.py +0 -0
  205. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/organizations/create/command.py +0 -0
  206. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/organizations/create/presenter.py +0 -0
  207. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/__init__.py +0 -0
  208. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/approvals/__init__.py +0 -0
  209. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/approvals/decide_command.py +0 -0
  210. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/approvals/get_command.py +0 -0
  211. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/approvals/presenter.py +0 -0
  212. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/costs/__init__.py +0 -0
  213. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/costs/command.py +0 -0
  214. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/costs/daily_command.py +0 -0
  215. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/costs/daily_presenter.py +0 -0
  216. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/costs/presenter.py +0 -0
  217. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/create/__init__.py +0 -0
  218. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/create/command.py +0 -0
  219. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/create/presenter.py +0 -0
  220. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/env_vars/__init__.py +0 -0
  221. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/env_vars/command.py +0 -0
  222. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/env_vars/presenter.py +0 -0
  223. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/execute/__init__.py +0 -0
  224. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/execute/command.py +0 -0
  225. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/execute/presenter.py +0 -0
  226. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/__init__.py +0 -0
  227. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs/__init__.py +0 -0
  228. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs/command.py +0 -0
  229. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs/presenter.py +0 -0
  230. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs_by_model/__init__.py +0 -0
  231. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs_by_model/command.py +0 -0
  232. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs_by_model/presenter.py +0 -0
  233. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/costs_by_step/__init__.py +0 -0
  234. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/get_command.py +0 -0
  235. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/list_command.py +0 -0
  236. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/presenter.py +0 -0
  237. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/rerun_command.py +0 -0
  238. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/update/__init__.py +0 -0
  239. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/update/command.py +0 -0
  240. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/executions/update/presenter.py +0 -0
  241. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/get/__init__.py +0 -0
  242. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/get/command.py +0 -0
  243. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/list/__init__.py +0 -0
  244. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/list/command.py +0 -0
  245. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/list/presenter.py +0 -0
  246. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/__init__.py +0 -0
  247. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/create_command.py +0 -0
  248. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/create_presenter.py +0 -0
  249. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/delete_command.py +0 -0
  250. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/env_vars_command.py +0 -0
  251. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/env_vars_presenter.py +0 -0
  252. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/get_command.py +0 -0
  253. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/list_command.py +0 -0
  254. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/once_command.py +0 -0
  255. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/once_presenter.py +0 -0
  256. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/presenter.py +0 -0
  257. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/update_command.py +0 -0
  258. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/schedules/update_presenter.py +0 -0
  259. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/update/__init__.py +0 -0
  260. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/pipelines/update/command.py +0 -0
  261. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/render/__init__.py +0 -0
  262. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/render/html_to_image/__init__.py +0 -0
  263. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/render/html_to_image/command.py +0 -0
  264. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/__init__.py +0 -0
  265. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/create/__init__.py +0 -0
  266. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/create/presenter.py +0 -0
  267. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/delete/command.py +0 -0
  268. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/delete/presenter.py +0 -0
  269. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/get/__init__.py +0 -0
  270. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/get/command.py +0 -0
  271. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/get/presenter.py +0 -0
  272. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/list/__init__.py +0 -0
  273. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/list/command.py +0 -0
  274. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/list/presenter.py +0 -0
  275. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/update/__init__.py +0 -0
  276. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/update/command.py +0 -0
  277. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/schemas/update/presenter.py +0 -0
  278. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/__init__.py +0 -0
  279. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/delete/__init__.py +0 -0
  280. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/delete/command.py +0 -0
  281. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/delete/presenter.py +0 -0
  282. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/get/__init__.py +0 -0
  283. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/get/command.py +0 -0
  284. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/get/presenter.py +0 -0
  285. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/list/__init__.py +0 -0
  286. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/list/command.py +0 -0
  287. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/list/presenter.py +0 -0
  288. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/messages/__init__.py +0 -0
  289. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/messages/command.py +0 -0
  290. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sessions/messages/presenter.py +0 -0
  291. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/shared_flags.py +0 -0
  292. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sync/__init__.py +0 -0
  293. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sync/command.py +0 -0
  294. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/sync/presenter.py +0 -0
  295. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/__init__.py +0 -0
  296. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/create/__init__.py +0 -0
  297. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/create/command.py +0 -0
  298. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/delete/__init__.py +0 -0
  299. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/delete/command.py +0 -0
  300. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/delete/presenter.py +0 -0
  301. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/get/command.py +0 -0
  302. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/get/presenter.py +0 -0
  303. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/list/__init__.py +0 -0
  304. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/list/command.py +0 -0
  305. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/list/presenter.py +0 -0
  306. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/update/command.py +0 -0
  307. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tags/update/presenter.py +0 -0
  308. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/__init__.py +0 -0
  309. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/create/__init__.py +0 -0
  310. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/create/presenter.py +0 -0
  311. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/delete/__init__.py +0 -0
  312. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/delete/command.py +0 -0
  313. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/delete/presenter.py +0 -0
  314. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/get/__init__.py +0 -0
  315. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/get/command.py +0 -0
  316. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/get/presenter.py +0 -0
  317. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/get_by_version/command.py +0 -0
  318. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/get_by_version/presenter.py +0 -0
  319. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/list/__init__.py +0 -0
  320. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/list/command.py +0 -0
  321. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/list/presenter.py +0 -0
  322. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/render/__init__.py +0 -0
  323. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/render/command.py +0 -0
  324. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/render/presenter.py +0 -0
  325. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/update/__init__.py +0 -0
  326. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/update/command.py +0 -0
  327. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/update/presenter.py +0 -0
  328. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/version/__init__.py +0 -0
  329. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/version/command.py +0 -0
  330. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/templates/version/presenter.py +0 -0
  331. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/__init__.py +0 -0
  332. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/create/__init__.py +0 -0
  333. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/create/presenter.py +0 -0
  334. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/delete/__init__.py +0 -0
  335. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/delete/command.py +0 -0
  336. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/delete/presenter.py +0 -0
  337. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/get/__init__.py +0 -0
  338. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/get/command.py +0 -0
  339. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/get/presenter.py +0 -0
  340. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/list/__init__.py +0 -0
  341. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/list/command.py +0 -0
  342. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/list/presenter.py +0 -0
  343. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/update/__init__.py +0 -0
  344. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/update/command.py +0 -0
  345. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tool_configs/update/presenter.py +0 -0
  346. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/__init__.py +0 -0
  347. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/get/__init__.py +0 -0
  348. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/get/command.py +0 -0
  349. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/get/presenter.py +0 -0
  350. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/list/__init__.py +0 -0
  351. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/list/command.py +0 -0
  352. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/tools/list/presenter.py +0 -0
  353. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/users/__init__.py +0 -0
  354. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/users/create/command.py +0 -0
  355. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/users/create/presenter.py +0 -0
  356. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/commands/whoami/__init__.py +0 -0
  357. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/__init__.py +0 -0
  358. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/auth_storage.py +0 -0
  359. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/client_factory.py +0 -0
  360. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/command.py +0 -0
  361. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/config.py +0 -0
  362. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/console.py +0 -0
  363. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/editor.py +0 -0
  364. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/error_display.py +0 -0
  365. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/field_extractor.py +0 -0
  366. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/file_content.py +0 -0
  367. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/filter_parser.py +0 -0
  368. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatters/__init__.py +0 -0
  369. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatters/base.py +0 -0
  370. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatters/compact_formatter.py +0 -0
  371. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatters/json_formatter.py +0 -0
  372. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatters/table_formatter.py +0 -0
  373. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatting/__init__.py +0 -0
  374. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/formatting/fields.py +0 -0
  375. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/__init__.py +0 -0
  376. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/agent_picker.py +0 -0
  377. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/agent_tool_editor.py +0 -0
  378. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/agent_tools_manager.py +0 -0
  379. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/base_picker.py +0 -0
  380. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/components.py +0 -0
  381. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/json_schema_builder.py +0 -0
  382. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/model_picker.py +0 -0
  383. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/parsers.py +0 -0
  384. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/resolution_modal.py +0 -0
  385. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/schema_picker.py +0 -0
  386. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/tag_management_modal.py +0 -0
  387. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/tag_picker.py +0 -0
  388. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/template_picker.py +0 -0
  389. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/tool_config_picker.py +0 -0
  390. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/forms/tool_picker.py +0 -0
  391. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/help_json.py +0 -0
  392. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/help_markdown.py +0 -0
  393. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/help_toon.py +0 -0
  394. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/injection/__init__.py +0 -0
  395. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/injection/parser.py +0 -0
  396. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/injection/resolver.py +0 -0
  397. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/kv_parser.py +0 -0
  398. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/local_storage.py +0 -0
  399. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/macro_parser.py +0 -0
  400. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/output.py +0 -0
  401. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/provider_setup.py +0 -0
  402. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/renderers/__init__.py +0 -0
  403. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/renderers/entity_renderer.py +0 -0
  404. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/renderers/list_renderer.py +0 -0
  405. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/spinner.py +0 -0
  406. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/tui/__init__.py +0 -0
  407. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/tui/clipboard.py +0 -0
  408. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/tui/formatters.py +0 -0
  409. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/tui/preview.py +0 -0
  410. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/tui/selectable.py +0 -0
  411. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/validation/__init__.py +0 -0
  412. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/infrastructure/validation/tag_validation.py +0 -0
  413. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/main.py +0 -0
  414. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/__init__.py +0 -0
  415. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/app.py +0 -0
  416. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/app_store.py +0 -0
  417. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/__init__.py +0 -0
  418. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/__init__.py +0 -0
  419. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/base.py +0 -0
  420. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/create_session.py +0 -0
  421. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/load_session.py +0 -0
  422. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/regenerate.py +0 -0
  423. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/reload_session.py +0 -0
  424. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/send_message.py +0 -0
  425. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/commands/undo.py +0 -0
  426. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/editor.py +0 -0
  427. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/messages.py +0 -0
  428. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/pane.py +0 -0
  429. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/renderers/__init__.py +0 -0
  430. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/renderers/base.py +0 -0
  431. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/renderers/markdown.py +0 -0
  432. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/renderers/plain.py +0 -0
  433. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/screen.py +0 -0
  434. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/services/__init__.py +0 -0
  435. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/services/injection.py +0 -0
  436. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/services/name_generator.py +0 -0
  437. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/slash_commands.py +0 -0
  438. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/store.py +0 -0
  439. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/types.py +0 -0
  440. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/__init__.py +0 -0
  441. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/chat_header.py +0 -0
  442. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/chat_input.py +0 -0
  443. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/injection_popup.py +0 -0
  444. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/message_display.py +0 -0
  445. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/session_sidebar.py +0 -0
  446. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/chat/widgets/welcome_screen.py +0 -0
  447. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/__init__.py +0 -0
  448. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/agents.py +0 -0
  449. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/base.py +0 -0
  450. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/content.py +0 -0
  451. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/dashboard.py +0 -0
  452. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/models.py +0 -0
  453. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/nav_screen.py +0 -0
  454. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/schemas.py +0 -0
  455. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/templates.py +0 -0
  456. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/screens/tool_configs.py +0 -0
  457. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/__init__.py +0 -0
  458. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/app.tcss +0 -0
  459. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/browser.tcss +0 -0
  460. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/chat.tcss +0 -0
  461. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/dashboard.tcss +0 -0
  462. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/forms.tcss +0 -0
  463. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/styles/modals.tcss +0 -0
  464. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/__init__.py +0 -0
  465. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/agent_create_modal.py +0 -0
  466. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/agent_update_modal.py +0 -0
  467. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/base_form_modal.py +0 -0
  468. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/confirm_modal.py +0 -0
  469. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/help_modal.py +0 -0
  470. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/new_session_modal.py +0 -0
  471. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/schema_update_modal.py +0 -0
  472. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/status_footer.py +0 -0
  473. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/template_update_modal.py +0 -0
  474. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/cli/tui/widgets/tool_config_update_modal.py +0 -0
  475. {alloy_runtime_cli-0.2.33 → alloy_runtime_cli-0.2.35}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alloy-runtime-cli
3
- Version: 0.2.33
3
+ Version: 0.2.35
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>=0.47.0
16
16
  Requires-Dist: genson>=1.3.0
17
17
  Requires-Dist: pyperclip>=1.8.0
18
18
  Requires-Dist: prompt-toolkit>=3.0.0
19
- Requires-Dist: alloy-runtime-sdk==0.2.33
20
- Requires-Dist: alloy-runtime-types==0.2.33
19
+ Requires-Dist: alloy-runtime-sdk==0.2.35
20
+ Requires-Dist: alloy-runtime-types==0.2.35
21
21
  Requires-Dist: trogon
22
22
 
23
23
  # alloy-runtime-cli
@@ -59,6 +59,8 @@ Use `alloy --help-markdown` for the same help tree rendered as Markdown.
59
59
  Use `alloy --help-toon` for the same help tree rendered as TOON.
60
60
  For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json`, `ALLOY_RUNTIME_HELP_FORMAT=markdown`, or `ALLOY_RUNTIME_HELP_FORMAT=toon` and run `alloy --help`.
61
61
 
62
+ For scoped create commands such as `agents create`, `schemas create`, `tool-configs create`, and `templates create`, the CLI now defaults omitted ownership scope to **organization**. Pass `--scope user` only when you want a personal resource.
63
+
62
64
  Use `alloy --format compact` for the existing psql-style human-readable record view.
63
65
  Use `alloy --format table` for Rich table output in the non-TUI CLI.
64
66
  Use `alloy --format json` for automation-friendly machine-readable output.
@@ -77,4 +79,3 @@ The CLI reads configuration in this order:
77
79
 
78
80
  Use `alloy login` to save an API key locally, or set the environment variables when
79
81
  running on a VPS.
80
-
@@ -37,6 +37,8 @@ Use `alloy --help-markdown` for the same help tree rendered as Markdown.
37
37
  Use `alloy --help-toon` for the same help tree rendered as TOON.
38
38
  For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json`, `ALLOY_RUNTIME_HELP_FORMAT=markdown`, or `ALLOY_RUNTIME_HELP_FORMAT=toon` and run `alloy --help`.
39
39
 
40
+ For scoped create commands such as `agents create`, `schemas create`, `tool-configs create`, and `templates create`, the CLI now defaults omitted ownership scope to **organization**. Pass `--scope user` only when you want a personal resource.
41
+
40
42
  Use `alloy --format compact` for the existing psql-style human-readable record view.
41
43
  Use `alloy --format table` for Rich table output in the non-TUI CLI.
42
44
  Use `alloy --format json` for automation-friendly machine-readable output.
@@ -55,4 +57,3 @@ The CLI reads configuration in this order:
55
57
 
56
58
  Use `alloy login` to save an API key locally, or set the environment variables when
57
59
  running on a VPS.
58
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alloy-runtime-cli
3
- Version: 0.2.33
3
+ Version: 0.2.35
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>=0.47.0
16
16
  Requires-Dist: genson>=1.3.0
17
17
  Requires-Dist: pyperclip>=1.8.0
18
18
  Requires-Dist: prompt-toolkit>=3.0.0
19
- Requires-Dist: alloy-runtime-sdk==0.2.33
20
- Requires-Dist: alloy-runtime-types==0.2.33
19
+ Requires-Dist: alloy-runtime-sdk==0.2.35
20
+ Requires-Dist: alloy-runtime-types==0.2.35
21
21
  Requires-Dist: trogon
22
22
 
23
23
  # alloy-runtime-cli
@@ -59,6 +59,8 @@ Use `alloy --help-markdown` for the same help tree rendered as Markdown.
59
59
  Use `alloy --help-toon` for the same help tree rendered as TOON.
60
60
  For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json`, `ALLOY_RUNTIME_HELP_FORMAT=markdown`, or `ALLOY_RUNTIME_HELP_FORMAT=toon` and run `alloy --help`.
61
61
 
62
+ For scoped create commands such as `agents create`, `schemas create`, `tool-configs create`, and `templates create`, the CLI now defaults omitted ownership scope to **organization**. Pass `--scope user` only when you want a personal resource.
63
+
62
64
  Use `alloy --format compact` for the existing psql-style human-readable record view.
63
65
  Use `alloy --format table` for Rich table output in the non-TUI CLI.
64
66
  Use `alloy --format json` for automation-friendly machine-readable output.
@@ -77,4 +79,3 @@ The CLI reads configuration in this order:
77
79
 
78
80
  Use `alloy login` to save an API key locally, or set the environment variables when
79
81
  running on a VPS.
80
-
@@ -4,6 +4,6 @@ textual>=0.47.0
4
4
  genson>=1.3.0
5
5
  pyperclip>=1.8.0
6
6
  prompt-toolkit>=3.0.0
7
- alloy-runtime-sdk==0.2.33
8
- alloy-runtime-types==0.2.33
7
+ alloy-runtime-sdk==0.2.35
8
+ alloy-runtime-types==0.2.35
9
9
  trogon
@@ -99,25 +99,25 @@ def agents_create_command(
99
99
  exists=True,
100
100
  readable=True,
101
101
  ),
102
- base_agent: Optional[UUID] = typer.Option(
102
+ base_agent: Optional[str] = typer.Option(
103
103
  None,
104
104
  "--base-agent",
105
- help="Base agent UUID to inherit configuration from",
105
+ help="Base agent name or UUID to inherit configuration from",
106
106
  ),
107
107
  system_version: Optional[UUID] = typer.Option(
108
108
  None,
109
109
  "--system-version",
110
110
  help="Specific system instruction version UUID",
111
111
  ),
112
- input_schema: Optional[UUID] = typer.Option(
112
+ input_schema: Optional[str] = typer.Option(
113
113
  None,
114
114
  "--input-schema",
115
- help="Input schema UUID",
115
+ help="Input schema name or UUID",
116
116
  ),
117
- output_schema: Optional[UUID] = typer.Option(
117
+ output_schema: Optional[str] = typer.Option(
118
118
  None,
119
119
  "--output-schema",
120
- help="Output schema UUID (mutually exclusive with --output-schema-def)",
120
+ help="Output schema name or UUID (mutually exclusive with --output-schema-def)",
121
121
  ),
122
122
  output_schema_def: Optional[str] = typer.Option(
123
123
  None,
@@ -388,10 +388,10 @@ def _execute_create_from_flags(
388
388
  system_template: Optional[str],
389
389
  tools: Optional[str],
390
390
  tools_file: Optional[Path],
391
- base_agent: Optional[UUID],
391
+ base_agent: Optional[str],
392
392
  system_version: Optional[UUID],
393
- input_schema: Optional[UUID],
394
- output_schema: Optional[UUID],
393
+ input_schema: Optional[str],
394
+ output_schema: Optional[str],
395
395
  output_schema_def: Optional[str],
396
396
  headers: Optional[list[str]],
397
397
  top_p: Optional[float],
@@ -415,7 +415,7 @@ def _execute_create_from_flags(
415
415
  preference_order=0,
416
416
  )
417
417
 
418
- ownership_scope = OwnershipScope.USER
418
+ ownership_scope = OwnershipScope.ORGANIZATION
419
419
  if scope:
420
420
  ownership_scope = validate_scope(scope)
421
421
 
@@ -129,25 +129,25 @@ def agents_update_command(
129
129
  "--user",
130
130
  help="End-user ID for tracking",
131
131
  ),
132
- system_template_id: Optional[UUID] = typer.Option(
132
+ system_template_id: Optional[str] = typer.Option(
133
133
  None,
134
134
  "--system-template",
135
- help="System template UUID",
135
+ help="System template name or UUID",
136
136
  ),
137
137
  system_version_id: Optional[UUID] = typer.Option(
138
138
  None,
139
139
  "--system-version",
140
140
  help="System instruction version UUID",
141
141
  ),
142
- input_schema_id: Optional[UUID] = typer.Option(
142
+ input_schema_id: Optional[str] = typer.Option(
143
143
  None,
144
144
  "--input-schema",
145
- help="Input schema UUID",
145
+ help="Input schema name or UUID",
146
146
  ),
147
- output_schema_id: Optional[UUID] = typer.Option(
147
+ output_schema_id: Optional[str] = typer.Option(
148
148
  None,
149
149
  "--output-schema",
150
- help="Output schema UUID (mutually exclusive with --output-schema-def)",
150
+ help="Output schema name or UUID (mutually exclusive with --output-schema-def)",
151
151
  ),
152
152
  output_schema_def: Optional[str] = typer.Option(
153
153
  None,
@@ -338,10 +338,10 @@ async def _execute_update(
338
338
  logprobs: Optional[bool],
339
339
  top_logprobs: Optional[int],
340
340
  user: Optional[str],
341
- system_template_id: Optional[UUID],
341
+ system_template_id: Optional[str],
342
342
  system_version_id: Optional[UUID],
343
- input_schema_id: Optional[UUID],
344
- output_schema_id: Optional[UUID],
343
+ input_schema_id: Optional[str],
344
+ output_schema_id: Optional[str],
345
345
  output_schema_dict: dict[str, Any] | None,
346
346
  clear_description: bool,
347
347
  headers: dict[str, str] | None,
@@ -380,16 +380,16 @@ async def _execute_update(
380
380
  request_data["tags"] = parse_tags(tags)
381
381
 
382
382
  if system_template_id is not None:
383
- request_data["system_instruction_template"] = str(system_template_id)
383
+ request_data["system_instruction_template"] = system_template_id
384
384
 
385
385
  if system_version_id is not None:
386
386
  request_data["system_instruction_version_id"] = str(system_version_id)
387
387
 
388
388
  if input_schema_id is not None:
389
- request_data["input_schema_id"] = str(input_schema_id)
389
+ request_data["input_schema_id"] = input_schema_id
390
390
 
391
391
  if output_schema_id is not None:
392
- request_data["output_schema_id"] = str(output_schema_id)
392
+ request_data["output_schema_id"] = output_schema_id
393
393
 
394
394
  if output_schema_dict is not None:
395
395
  request_data["output_schema"] = output_schema_dict
@@ -1,19 +1,17 @@
1
1
  """Billing project costs by agent command implementation."""
2
2
 
3
3
  from typing import Optional
4
- from uuid import UUID
5
4
 
6
5
  import typer
7
6
 
8
7
  from cli.commands.billing.costs.by_agent.presenter import present_billing_costs_by_agent
9
- from cli.commands.flag_utils import validate_uuid
10
8
  from cli.infrastructure.command import async_command, authenticated_client
11
9
 
12
10
 
13
11
  def billing_costs_by_agent_command(
14
12
  project_id: str = typer.Argument(
15
13
  ...,
16
- help="Billing project UUID",
14
+ help="Billing project name or UUID",
17
15
  ),
18
16
  start_date: Optional[str] = typer.Option(
19
17
  None,
@@ -32,9 +30,8 @@ def billing_costs_by_agent_command(
32
30
  alloy billing costs by-agent 123e4567-89ab...
33
31
  alloy billing costs by-agent 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
34
32
  """
35
- project_uuid = validate_uuid(project_id, "billing project")
36
33
  _execute_costs_by_agent(
37
- project_id=project_uuid,
34
+ project_id=project_id,
38
35
  start_date=start_date,
39
36
  end_date=end_date,
40
37
  )
@@ -42,7 +39,7 @@ def billing_costs_by_agent_command(
42
39
 
43
40
  @async_command
44
41
  async def _execute_costs_by_agent(
45
- project_id: UUID,
42
+ project_id: str,
46
43
  start_date: Optional[str],
47
44
  end_date: Optional[str],
48
45
  ) -> None:
@@ -1,19 +1,17 @@
1
1
  """Billing project costs by model command implementation."""
2
2
 
3
3
  from typing import Optional
4
- from uuid import UUID
5
4
 
6
5
  import typer
7
6
 
8
7
  from cli.commands.billing.costs.by_model.presenter import present_billing_costs_by_model
9
- from cli.commands.flag_utils import validate_uuid
10
8
  from cli.infrastructure.command import async_command, authenticated_client
11
9
 
12
10
 
13
11
  def billing_costs_by_model_command(
14
12
  project_id: str = typer.Argument(
15
13
  ...,
16
- help="Billing project UUID",
14
+ help="Billing project name or UUID",
17
15
  ),
18
16
  start_date: Optional[str] = typer.Option(
19
17
  None,
@@ -32,9 +30,8 @@ def billing_costs_by_model_command(
32
30
  alloy billing costs by-model 123e4567-89ab...
33
31
  alloy billing costs by-model 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
34
32
  """
35
- project_uuid = validate_uuid(project_id, "billing project")
36
33
  _execute_costs_by_model(
37
- project_id=project_uuid,
34
+ project_id=project_id,
38
35
  start_date=start_date,
39
36
  end_date=end_date,
40
37
  )
@@ -42,7 +39,7 @@ def billing_costs_by_model_command(
42
39
 
43
40
  @async_command
44
41
  async def _execute_costs_by_model(
45
- project_id: UUID,
42
+ project_id: str,
46
43
  start_date: Optional[str],
47
44
  end_date: Optional[str],
48
45
  ) -> None:
@@ -1,18 +1,15 @@
1
1
  """Billing project daily costs command implementation."""
2
2
 
3
- from uuid import UUID
4
-
5
3
  import typer
6
4
 
7
5
  from cli.commands.billing.costs.daily.presenter import present_billing_daily_costs
8
- from cli.commands.flag_utils import validate_uuid
9
6
  from cli.infrastructure.command import async_command, authenticated_client
10
7
 
11
8
 
12
9
  def billing_costs_daily_command(
13
10
  project_id: str = typer.Argument(
14
11
  ...,
15
- help="Billing project UUID",
12
+ help="Billing project name or UUID",
16
13
  ),
17
14
  start_date: str = typer.Option(
18
15
  ...,
@@ -30,9 +27,8 @@ def billing_costs_daily_command(
30
27
  Examples:
31
28
  alloy billing costs daily 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
32
29
  """
33
- project_uuid = validate_uuid(project_id, "billing project")
34
30
  _execute_daily_costs(
35
- project_id=project_uuid,
31
+ project_id=project_id,
36
32
  start_date=start_date,
37
33
  end_date=end_date,
38
34
  )
@@ -40,7 +36,7 @@ def billing_costs_daily_command(
40
36
 
41
37
  @async_command
42
38
  async def _execute_daily_costs(
43
- project_id: UUID,
39
+ project_id: str,
44
40
  start_date: str,
45
41
  end_date: str,
46
42
  ) -> None:
@@ -1,19 +1,17 @@
1
1
  """Billing project cost summary command implementation."""
2
2
 
3
3
  from typing import Optional
4
- from uuid import UUID
5
4
 
6
5
  import typer
7
6
 
8
7
  from cli.commands.billing.costs.summary.presenter import present_billing_cost_summary
9
- from cli.commands.flag_utils import validate_uuid
10
8
  from cli.infrastructure.command import async_command, authenticated_client
11
9
 
12
10
 
13
11
  def billing_costs_summary_command(
14
12
  project_id: str = typer.Argument(
15
13
  ...,
16
- help="Billing project UUID",
14
+ help="Billing project name or UUID",
17
15
  ),
18
16
  start_date: Optional[str] = typer.Option(
19
17
  None,
@@ -32,9 +30,8 @@ def billing_costs_summary_command(
32
30
  alloy billing costs summary 123e4567-89ab...
33
31
  alloy billing costs summary 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
34
32
  """
35
- project_uuid = validate_uuid(project_id, "billing project")
36
33
  _execute_cost_summary(
37
- project_id=project_uuid,
34
+ project_id=project_id,
38
35
  start_date=start_date,
39
36
  end_date=end_date,
40
37
  )
@@ -42,7 +39,7 @@ def billing_costs_summary_command(
42
39
 
43
40
  @async_command
44
41
  async def _execute_cost_summary(
45
- project_id: UUID,
42
+ project_id: str,
46
43
  start_date: Optional[str],
47
44
  end_date: Optional[str],
48
45
  ) -> None:
@@ -1,18 +1,15 @@
1
1
  """Billing project get command implementation."""
2
2
 
3
- from uuid import UUID
4
-
5
3
  import typer
6
4
 
7
5
  from cli.commands.billing.projects.get.presenter import present_billing_project
8
- from cli.commands.flag_utils import validate_uuid
9
6
  from cli.infrastructure.command import async_command, authenticated_client
10
7
 
11
8
 
12
9
  def billing_projects_get_command(
13
10
  project_id: str = typer.Argument(
14
11
  ...,
15
- help="Billing project UUID",
12
+ help="Billing project name or UUID",
16
13
  ),
17
14
  ) -> None:
18
15
  """Get details of a billing project.
@@ -20,12 +17,11 @@ def billing_projects_get_command(
20
17
  Examples:
21
18
  alloy billing projects get 123e4567-89ab-cdef-0123-456789abcdef
22
19
  """
23
- project_uuid = validate_uuid(project_id, "billing project")
24
- _execute_get(project_id=project_uuid)
20
+ _execute_get(project_id=project_id)
25
21
 
26
22
 
27
23
  @async_command
28
- async def _execute_get(project_id: UUID) -> None:
24
+ async def _execute_get(project_id: str) -> None:
29
25
  """Execute get billing project operation."""
30
26
  async with authenticated_client() as (_config, client):
31
27
  response = await client.get_billing_project(project_id)
@@ -226,10 +226,10 @@ def generate_text_command(
226
226
  "--external-id",
227
227
  help="External identifier for idempotency and tracking",
228
228
  ),
229
- billing_project_id: Optional[UUID] = typer.Option(
229
+ billing_project_id: Optional[str] = typer.Option(
230
230
  None,
231
231
  "--billing-project",
232
- help="Billing project ID for cost tracking",
232
+ help="Billing project name or UUID for cost tracking",
233
233
  ),
234
234
  parent_execution_id: Optional[UUID] = typer.Option(
235
235
  None,
@@ -839,7 +839,7 @@ async def _execute_generate_text(
839
839
  request_headers: dict[str, str] | None = None,
840
840
  run_async: bool = False,
841
841
  external_id: str | None = None,
842
- billing_project_id: UUID | None = None,
842
+ billing_project_id: str | None = None,
843
843
  max_history_messages: int | None = None,
844
844
  regenerate: bool = False,
845
845
  chat_history: list[dict[str, str]] | None = None,
@@ -1024,6 +1024,7 @@ async def _execute_generate_text(
1024
1024
  tags=tag_list,
1025
1025
  stream=stream,
1026
1026
  output_schema=output_schema,
1027
+ billing_project_id=billing_project_id,
1027
1028
  parent_execution_id=parent_execution_id,
1028
1029
  execution_purpose=execution_purpose,
1029
1030
  )
@@ -2,14 +2,12 @@
2
2
 
3
3
  import json
4
4
  from typing import Any, Optional, cast
5
- from uuid import UUID
6
5
 
7
6
  import typer
8
7
 
9
8
  from cli.commands.knowledge.documents.bulk_metadata.presenter import (
10
9
  present_bulk_metadata_result,
11
10
  )
12
- from cli.commands.flag_utils import validate_uuid
13
11
  from cli.infrastructure.command import async_command, authenticated_client
14
12
  from cli.infrastructure.file_content import resolve_content_or_raise
15
13
  from alloy_runtime_types.dtos.knowledge import BulkUpdateDocumentMetadataRequest
@@ -35,7 +33,7 @@ def knowledge_documents_bulk_metadata_command(
35
33
  None,
36
34
  "-C",
37
35
  "--collection",
38
- help="Optional collection UUID to scope the update",
36
+ help="Optional collection name or UUID to scope the update",
39
37
  ),
40
38
  dry_run: bool = typer.Option(
41
39
  False,
@@ -101,15 +99,11 @@ async def _execute_bulk_metadata(
101
99
  filter_dict = _parse_json_option(filter_raw, "--filter")
102
100
  metadata_dict = _parse_json_option(metadata_raw, "--metadata")
103
101
 
104
- collection_id: UUID | None = None
105
- if collection is not None:
106
- collection_id = validate_uuid(collection, "collection")
107
-
108
102
  request = BulkUpdateDocumentMetadataRequest(
109
103
  filter=filter_dict,
110
104
  patch=metadata_dict,
111
105
  metadata_mode=metadata_mode, # type: ignore[arg-type]
112
- collection_id=collection_id,
106
+ collection_id=collection,
113
107
  dry_run=dry_run,
114
108
  )
115
109
 
@@ -2,7 +2,6 @@
2
2
 
3
3
  from pathlib import Path
4
4
  from typing import Annotated, Optional
5
- from uuid import UUID
6
5
 
7
6
  import typer
8
7
 
@@ -19,11 +18,11 @@ from alloy_runtime_types.dtos.knowledge import IngestDocumentRequest
19
18
 
20
19
 
21
20
  def knowledge_documents_ingest_command(
22
- collection: UUID = typer.Option(
21
+ collection: str = typer.Option(
23
22
  ...,
24
23
  "-C",
25
24
  "--collection",
26
- help="Target collection UUID",
25
+ help="Target collection name or UUID",
27
26
  ),
28
27
  title: str = typer.Option(
29
28
  ...,
@@ -45,17 +44,17 @@ def knowledge_documents_ingest_command(
45
44
  "--content",
46
45
  help="Document content (or @file, or @- for stdin)",
47
46
  ),
48
- question_agent: Optional[UUID] = typer.Option(
47
+ question_agent: Optional[str] = typer.Option(
49
48
  None,
50
49
  "-Q",
51
50
  "--question-agent",
52
- help="Agent UUID for question generation (required unless --skip-question-gen)",
51
+ help="Agent name or UUID for question generation (required unless --skip-question-gen)",
53
52
  ),
54
- question_template: Optional[UUID] = typer.Option(
53
+ question_template: Optional[str] = typer.Option(
55
54
  None,
56
55
  "-T",
57
56
  "--question-template",
58
- help="Template UUID for question generation (required unless --skip-question-gen)",
57
+ help="Template name or UUID for question generation (required unless --skip-question-gen)",
59
58
  ),
60
59
  source_type: str = typer.Option(
61
60
  "upload",
@@ -140,12 +139,12 @@ def knowledge_documents_ingest_command(
140
139
 
141
140
 
142
141
  def _execute_ingest_from_flags(
143
- collection: UUID,
142
+ collection: str,
144
143
  title: str,
145
144
  file: Optional[Path],
146
145
  content: Optional[str],
147
- question_agent: Optional[UUID],
148
- question_template: Optional[UUID],
146
+ question_agent: Optional[str],
147
+ question_template: Optional[str],
149
148
  source_type: str,
150
149
  metadata: Optional[list[str]],
151
150
  tag: Optional[list[str]],
@@ -1,11 +1,9 @@
1
1
  """Knowledge documents reingest command implementation."""
2
2
 
3
3
  from typing import Optional
4
- from uuid import UUID
5
4
 
6
5
  import typer
7
6
 
8
- from cli.commands.flag_utils import validate_uuid
9
7
  from cli.commands.knowledge.documents.reingest.presenter import (
10
8
  present_reingest_result,
11
9
  )
@@ -71,14 +69,6 @@ async def _execute_reingest(
71
69
  ) -> None:
72
70
  """Execute document reingest operation."""
73
71
 
74
- agent_id: UUID | None = None
75
- if question_gen_agent is not None:
76
- agent_id = validate_uuid(question_gen_agent, "question-gen-agent")
77
-
78
- template_id: UUID | None = None
79
- if question_gen_template is not None:
80
- template_id = validate_uuid(question_gen_template, "question-gen-template")
81
-
82
72
  valid_types = ("transcript", "markdown", "document")
83
73
  if document_type is not None and document_type not in valid_types:
84
74
  raise typer.BadParameter(
@@ -87,8 +77,8 @@ async def _execute_reingest(
87
77
  )
88
78
 
89
79
  request = ReingestDocumentRequest(
90
- question_gen_agent_id=agent_id,
91
- question_gen_template_id=template_id,
80
+ question_gen_agent_id=question_gen_agent,
81
+ question_gen_template_id=question_gen_template,
92
82
  document_type=document_type, # type: ignore[arg-type]
93
83
  dry_run=dry_run,
94
84
  )
@@ -14,6 +14,7 @@ class PingOutput(BaseModel):
14
14
  system_admin: str
15
15
  api_host: str
16
16
  api_key: str
17
+ scopes: str
17
18
  http_status: str
18
19
  http_version: str
19
20
  tls_version: str
@@ -84,6 +85,7 @@ async def _execute_ping() -> None:
84
85
  system_admin="yes" if ping.is_system_admin else "no",
85
86
  api_host=ping.api_host or "n/a",
86
87
  api_key=api_key_prefix,
88
+ scopes=", ".join(scope.value for scope in ping.scopes),
87
89
  http_status=str(ping.http_status) if ping.http_status is not None else "n/a",
88
90
  http_version=ping.http_version or "n/a",
89
91
  tls_version=ping.tls_version or "n/a",
@@ -112,6 +114,7 @@ async def _execute_ping() -> None:
112
114
  FieldConfig("system_admin", "System Admin"),
113
115
  FieldConfig("api_host", "API Host"),
114
116
  FieldConfig("api_key", "API Key"),
117
+ FieldConfig("scopes", "Scopes"),
115
118
  FieldConfig("http_status", "HTTP Status"),
116
119
  FieldConfig("http_version", "HTTP Version"),
117
120
  FieldConfig("tls_version", "TLS Version"),
@@ -31,6 +31,9 @@ def present_pipeline(response: GetPipelineResponse | UpdatePipelineResponse) ->
31
31
  FieldConfig("updated_at", "Updated", format_datetime),
32
32
  ]
33
33
 
34
+ if isinstance(response, GetPipelineResponse):
35
+ fields.insert(3, FieldConfig("source_hash", "Source Hash", format_optional))
36
+
34
37
  output.entity(response, f"Pipeline: {response.name}", fields, raw_payload=response)
35
38
 
36
39
  if response.input_schema:
@@ -107,7 +107,7 @@ def _execute_create_from_flags(
107
107
  if not schema_definition.strip():
108
108
  raise typer.BadParameter("Schema definition cannot be empty")
109
109
 
110
- ownership_scope = OwnershipScope.USER
110
+ ownership_scope = OwnershipScope.ORGANIZATION
111
111
  if scope:
112
112
  ownership_scope = validate_scope(scope)
113
113