alloy-runtime-cli 0.2.2__tar.gz → 0.2.3__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 (472) hide show
  1. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/PKG-INFO +10 -3
  2. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/README.md +7 -0
  3. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/alloy_runtime_cli.egg-info/PKG-INFO +10 -3
  4. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/alloy_runtime_cli.egg-info/SOURCES.txt +5 -0
  5. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/alloy_runtime_cli.egg-info/requires.txt +2 -2
  6. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/create/command.py +2 -2
  7. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/grant/command.py +2 -2
  8. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/create/command.py +6 -6
  9. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/delete/command.py +2 -2
  10. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/get/command.py +2 -2
  11. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/list/command.py +4 -4
  12. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/update/command.py +13 -13
  13. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/audio/transcribe/command.py +99 -17
  14. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/auth/signup/command.py +3 -3
  15. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/by_agent/command.py +2 -2
  16. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/by_model/command.py +2 -2
  17. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/daily/command.py +1 -1
  18. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/summary/command.py +2 -2
  19. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/create/command.py +2 -2
  20. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/get/command.py +1 -1
  21. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/list/command.py +2 -2
  22. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/delete/command.py +2 -2
  23. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/edit/command.py +5 -5
  24. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/get/command.py +3 -3
  25. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/list/command.py +7 -7
  26. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/list/presenter.py +1 -1
  27. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/create/command.py +3 -3
  28. alloy_runtime_cli-0.2.3/cli/commands/credentials/list/command.py +17 -0
  29. alloy_runtime_cli-0.2.3/cli/commands/credentials/list/presenter.py +96 -0
  30. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/update/command.py +2 -2
  31. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/cancel/command.py +2 -2
  32. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/status/command.py +3 -3
  33. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/text/command.py +11 -11
  34. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/models/list/command.py +6 -6
  35. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/organizations/create/command.py +1 -1
  36. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/approvals/decide_command.py +3 -3
  37. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/approvals/get_command.py +1 -1
  38. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/costs/command.py +2 -2
  39. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/costs/daily_command.py +1 -1
  40. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/create/command.py +3 -3
  41. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/env_vars/command.py +4 -4
  42. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/execute/command.py +5 -5
  43. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs/command.py +1 -1
  44. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs_by_model/command.py +1 -1
  45. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs_by_step/command.py +1 -1
  46. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/get_command.py +1 -1
  47. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/list_command.py +4 -4
  48. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/rerun_command.py +1 -1
  49. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/update/command.py +3 -3
  50. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/get/command.py +1 -1
  51. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/list/command.py +3 -3
  52. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/create_command.py +3 -3
  53. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/delete_command.py +2 -2
  54. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/env_vars_command.py +3 -3
  55. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/get_command.py +1 -1
  56. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/list_command.py +1 -1
  57. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/once_command.py +3 -3
  58. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/update_command.py +3 -3
  59. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/render/html_to_image/command.py +6 -6
  60. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/create/command.py +3 -3
  61. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/delete/command.py +3 -3
  62. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/get/command.py +5 -5
  63. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/list/command.py +4 -4
  64. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/update/command.py +6 -6
  65. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/delete/command.py +2 -2
  66. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/get/command.py +2 -2
  67. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/list/command.py +3 -3
  68. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/messages/command.py +3 -3
  69. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/create/command.py +2 -2
  70. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/delete/command.py +2 -2
  71. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/get/command.py +1 -1
  72. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/list/command.py +2 -2
  73. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/update/command.py +2 -2
  74. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/create/command.py +3 -3
  75. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/delete/command.py +2 -2
  76. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/get/command.py +4 -4
  77. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/get_by_version/command.py +1 -1
  78. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/list/command.py +5 -5
  79. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/list/presenter.py +1 -1
  80. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/render/command.py +5 -5
  81. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/update/command.py +6 -6
  82. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/version/command.py +5 -5
  83. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/create/command.py +3 -3
  84. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/delete/command.py +3 -3
  85. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/get/command.py +3 -3
  86. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/list/command.py +3 -3
  87. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/update/command.py +5 -5
  88. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/get/command.py +2 -2
  89. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/list/command.py +3 -3
  90. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/users/create/command.py +2 -2
  91. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/whoami/command.py +1 -1
  92. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/tool_picker.py +19 -13
  93. alloy_runtime_cli-0.2.3/cli/infrastructure/help_json.py +116 -0
  94. alloy_runtime_cli-0.2.3/cli/infrastructure/help_markdown.py +98 -0
  95. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/main.py +92 -6
  96. alloy_runtime_cli-0.2.3/cli/tui/widgets/__init__.py +0 -0
  97. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/pyproject.toml +3 -3
  98. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/MANIFEST.in +0 -0
  99. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/alloy_runtime_cli.egg-info/dependency_links.txt +0 -0
  100. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/alloy_runtime_cli.egg-info/entry_points.txt +0 -0
  101. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/alloy_runtime_cli.egg-info/top_level.txt +0 -0
  102. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/__init__.py +0 -0
  103. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/__init__.py +0 -0
  104. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/__init__.py +0 -0
  105. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/bootstrap_command.py +0 -0
  106. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/__init__.py +0 -0
  107. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/create/__init__.py +0 -0
  108. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/create/presenter.py +0 -0
  109. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/grant/__init__.py +0 -0
  110. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/grant/fields.py +0 -0
  111. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/admin/credentials/grant/presenter.py +0 -0
  112. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/__init__.py +0 -0
  113. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/create/__init__.py +0 -0
  114. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/create/fields.py +0 -0
  115. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/create/presenter.py +0 -0
  116. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/delete/__init__.py +0 -0
  117. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/delete/presenter.py +0 -0
  118. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/get/presenter.py +0 -0
  119. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/list/__init__.py +0 -0
  120. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/list/presenter.py +0 -0
  121. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/update/__init__.py +0 -0
  122. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/update/fields.py +0 -0
  123. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/agents/update/presenter.py +0 -0
  124. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/api_keys/__init__.py +0 -0
  125. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/api_keys/create/__init__.py +0 -0
  126. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/api_keys/create/command.py +0 -0
  127. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/api_keys/create/presenter.py +0 -0
  128. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/audio/__init__.py +0 -0
  129. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/audio/transcribe/__init__.py +0 -0
  130. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/audio/transcribe/presenter.py +0 -0
  131. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/auth/__init__.py +0 -0
  132. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/auth/login/__init__.py +0 -0
  133. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/auth/login/command.py +0 -0
  134. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/auth/signup/__init__.py +0 -0
  135. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/__init__.py +0 -0
  136. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/__init__.py +0 -0
  137. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/by_agent/__init__.py +0 -0
  138. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/by_agent/presenter.py +0 -0
  139. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/by_model/__init__.py +0 -0
  140. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/by_model/presenter.py +0 -0
  141. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/daily/__init__.py +0 -0
  142. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/daily/presenter.py +0 -0
  143. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/summary/__init__.py +0 -0
  144. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/costs/summary/presenter.py +0 -0
  145. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/__init__.py +0 -0
  146. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/create/__init__.py +0 -0
  147. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/create/presenter.py +0 -0
  148. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/get/__init__.py +0 -0
  149. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/get/presenter.py +0 -0
  150. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/list/__init__.py +0 -0
  151. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/billing/projects/list/presenter.py +0 -0
  152. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/__init__.py +0 -0
  153. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/delete/__init__.py +0 -0
  154. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/delete/presenter.py +0 -0
  155. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/edit/__init__.py +0 -0
  156. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/edit/editor.py +0 -0
  157. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/edit/presenter.py +0 -0
  158. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/get/__init__.py +0 -0
  159. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/get/presenter.py +0 -0
  160. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/list/__init__.py +0 -0
  161. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/list/export_formatters.py +0 -0
  162. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/content/list/export_handler.py +0 -0
  163. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/__init__.py +0 -0
  164. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/create/__init__.py +0 -0
  165. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/create/fields.py +0 -0
  166. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/create/presenter.py +0 -0
  167. {alloy_runtime_cli-0.2.2/cli/commands/credentials/update → alloy_runtime_cli-0.2.3/cli/commands/credentials/list}/__init__.py +0 -0
  168. {alloy_runtime_cli-0.2.2/cli/commands/generate → alloy_runtime_cli-0.2.3/cli/commands/credentials/update}/__init__.py +0 -0
  169. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/update/fields.py +0 -0
  170. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/credentials/update/presenter.py +0 -0
  171. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/flag_utils.py +0 -0
  172. {alloy_runtime_cli-0.2.2/cli/commands/generate/text → alloy_runtime_cli-0.2.3/cli/commands/generate}/__init__.py +0 -0
  173. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/cancel/__init__.py +0 -0
  174. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/cancel/presenter.py +0 -0
  175. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/status/__init__.py +0 -0
  176. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/status/presenter.py +0 -0
  177. {alloy_runtime_cli-0.2.2/cli/commands/knowledge → alloy_runtime_cli-0.2.3/cli/commands/generate/text}/__init__.py +0 -0
  178. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/text/concurrent_renderer.py +0 -0
  179. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/text/presenter.py +0 -0
  180. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/generate/text/stream_renderer.py +0 -0
  181. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/collections → alloy_runtime_cli-0.2.3/cli/commands/knowledge}/__init__.py +0 -0
  182. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/collections/cluster → alloy_runtime_cli-0.2.3/cli/commands/knowledge/collections}/__init__.py +0 -0
  183. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/collections/cluster_status → alloy_runtime_cli-0.2.3/cli/commands/knowledge/collections/cluster}/__init__.py +0 -0
  184. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/cluster/command.py +0 -0
  185. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/cluster/presenter.py +0 -0
  186. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/collections/create → alloy_runtime_cli-0.2.3/cli/commands/knowledge/collections/cluster_status}/__init__.py +0 -0
  187. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/cluster_status/command.py +0 -0
  188. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/cluster_status/presenter.py +0 -0
  189. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/collections/update → alloy_runtime_cli-0.2.3/cli/commands/knowledge/collections/create}/__init__.py +0 -0
  190. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/create/command.py +0 -0
  191. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/create/presenter.py +0 -0
  192. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/delete/__init__.py +0 -0
  193. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/delete/command.py +0 -0
  194. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/delete/presenter.py +0 -0
  195. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/get/__init__.py +0 -0
  196. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/get/command.py +0 -0
  197. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/get/presenter.py +0 -0
  198. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/list/__init__.py +0 -0
  199. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/list/command.py +0 -0
  200. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/list/presenter.py +0 -0
  201. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents → alloy_runtime_cli-0.2.3/cli/commands/knowledge/collections/update}/__init__.py +0 -0
  202. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/update/command.py +0 -0
  203. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/collections/update/presenter.py +0 -0
  204. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/bulk_metadata → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents}/__init__.py +0 -0
  205. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/delete → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/bulk_metadata}/__init__.py +0 -0
  206. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/bulk_metadata/command.py +0 -0
  207. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/bulk_metadata/presenter.py +0 -0
  208. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/get → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/delete}/__init__.py +0 -0
  209. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/delete/command.py +0 -0
  210. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/delete/presenter.py +0 -0
  211. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/ingest → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/get}/__init__.py +0 -0
  212. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/get/command.py +0 -0
  213. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/get/presenter.py +0 -0
  214. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/list → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/ingest}/__init__.py +0 -0
  215. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/ingest/command.py +0 -0
  216. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/ingest/presenter.py +0 -0
  217. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/reingest → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/list}/__init__.py +0 -0
  218. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/list/command.py +0 -0
  219. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/list/presenter.py +0 -0
  220. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/documents/update → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/reingest}/__init__.py +0 -0
  221. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/reingest/command.py +0 -0
  222. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/reingest/presenter.py +0 -0
  223. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/recover → alloy_runtime_cli-0.2.3/cli/commands/knowledge/documents/update}/__init__.py +0 -0
  224. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/update/command.py +0 -0
  225. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/documents/update/presenter.py +0 -0
  226. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/search → alloy_runtime_cli-0.2.3/cli/commands/knowledge/recover}/__init__.py +0 -0
  227. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/recover/command.py +0 -0
  228. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/recover/presenter.py +0 -0
  229. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis → alloy_runtime_cli-0.2.3/cli/commands/knowledge/search}/__init__.py +0 -0
  230. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/search/command.py +0 -0
  231. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/search/presenter.py +0 -0
  232. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis/create → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis}/__init__.py +0 -0
  233. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis/delete → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis/create}/__init__.py +0 -0
  234. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/create/command.py +0 -0
  235. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/create/presenter.py +0 -0
  236. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis/get → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis/delete}/__init__.py +0 -0
  237. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/delete/command.py +0 -0
  238. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/delete/presenter.py +0 -0
  239. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis/list → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis/get}/__init__.py +0 -0
  240. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/get/command.py +0 -0
  241. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/get/presenter.py +0 -0
  242. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis/refresh → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis/list}/__init__.py +0 -0
  243. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/list/command.py +0 -0
  244. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/list/presenter.py +0 -0
  245. {alloy_runtime_cli-0.2.2/cli/commands/knowledge/synthesis/update → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis/refresh}/__init__.py +0 -0
  246. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/refresh/command.py +0 -0
  247. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/refresh/presenter.py +0 -0
  248. {alloy_runtime_cli-0.2.2/cli/commands/models → alloy_runtime_cli-0.2.3/cli/commands/knowledge/synthesis/update}/__init__.py +0 -0
  249. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/update/command.py +0 -0
  250. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/knowledge/synthesis/update/presenter.py +0 -0
  251. {alloy_runtime_cli-0.2.2/cli/commands/models/list → alloy_runtime_cli-0.2.3/cli/commands/models}/__init__.py +0 -0
  252. {alloy_runtime_cli-0.2.2/cli/commands/organizations → alloy_runtime_cli-0.2.3/cli/commands/models/list}/__init__.py +0 -0
  253. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/models/list/presenter.py +0 -0
  254. {alloy_runtime_cli-0.2.2/cli/commands/render → alloy_runtime_cli-0.2.3/cli/commands/organizations}/__init__.py +0 -0
  255. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/organizations/create/presenter.py +0 -0
  256. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/__init__.py +0 -0
  257. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/approvals/__init__.py +0 -0
  258. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/approvals/presenter.py +0 -0
  259. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/costs/__init__.py +0 -0
  260. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/costs/daily_presenter.py +0 -0
  261. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/costs/presenter.py +0 -0
  262. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/create/__init__.py +0 -0
  263. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/create/presenter.py +0 -0
  264. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/env_vars/__init__.py +0 -0
  265. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/env_vars/presenter.py +0 -0
  266. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/execute/__init__.py +0 -0
  267. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/execute/presenter.py +0 -0
  268. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/__init__.py +0 -0
  269. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs/__init__.py +0 -0
  270. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs/presenter.py +0 -0
  271. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs_by_model/__init__.py +0 -0
  272. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs_by_model/presenter.py +0 -0
  273. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs_by_step/__init__.py +0 -0
  274. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/costs_by_step/presenter.py +0 -0
  275. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/presenter.py +0 -0
  276. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/update/__init__.py +0 -0
  277. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/executions/update/presenter.py +0 -0
  278. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/get/__init__.py +0 -0
  279. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/get/presenter.py +0 -0
  280. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/list/__init__.py +0 -0
  281. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/list/presenter.py +0 -0
  282. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/__init__.py +0 -0
  283. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/create_presenter.py +0 -0
  284. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/env_vars_presenter.py +0 -0
  285. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/once_presenter.py +0 -0
  286. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/presenter.py +0 -0
  287. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/pipelines/schedules/update_presenter.py +0 -0
  288. {alloy_runtime_cli-0.2.2/cli/commands/render/html_to_image → alloy_runtime_cli-0.2.3/cli/commands/render}/__init__.py +0 -0
  289. {alloy_runtime_cli-0.2.2/cli/commands/schemas → alloy_runtime_cli-0.2.3/cli/commands/render/html_to_image}/__init__.py +0 -0
  290. {alloy_runtime_cli-0.2.2/cli/commands/schemas/create → alloy_runtime_cli-0.2.3/cli/commands/schemas}/__init__.py +0 -0
  291. {alloy_runtime_cli-0.2.2/cli/commands/schemas/get → alloy_runtime_cli-0.2.3/cli/commands/schemas/create}/__init__.py +0 -0
  292. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/create/presenter.py +0 -0
  293. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/delete/presenter.py +0 -0
  294. {alloy_runtime_cli-0.2.2/cli/commands/schemas/list → alloy_runtime_cli-0.2.3/cli/commands/schemas/get}/__init__.py +0 -0
  295. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/get/presenter.py +0 -0
  296. {alloy_runtime_cli-0.2.2/cli/commands/schemas/update → alloy_runtime_cli-0.2.3/cli/commands/schemas/list}/__init__.py +0 -0
  297. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/list/presenter.py +0 -0
  298. {alloy_runtime_cli-0.2.2/cli/commands/sync → alloy_runtime_cli-0.2.3/cli/commands/schemas/update}/__init__.py +0 -0
  299. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/schemas/update/presenter.py +0 -0
  300. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/__init__.py +0 -0
  301. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/delete/__init__.py +0 -0
  302. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/delete/presenter.py +0 -0
  303. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/get/__init__.py +0 -0
  304. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/get/presenter.py +0 -0
  305. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/list/__init__.py +0 -0
  306. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/list/presenter.py +0 -0
  307. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/messages/__init__.py +0 -0
  308. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sessions/messages/presenter.py +0 -0
  309. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/shared_flags.py +0 -0
  310. {alloy_runtime_cli-0.2.2/cli/commands/templates → alloy_runtime_cli-0.2.3/cli/commands/sync}/__init__.py +0 -0
  311. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sync/command.py +0 -0
  312. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/sync/presenter.py +0 -0
  313. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/__init__.py +0 -0
  314. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/create/__init__.py +0 -0
  315. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/delete/__init__.py +0 -0
  316. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/delete/presenter.py +0 -0
  317. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/get/presenter.py +0 -0
  318. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/list/__init__.py +0 -0
  319. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/list/presenter.py +0 -0
  320. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tags/update/presenter.py +0 -0
  321. {alloy_runtime_cli-0.2.2/cli/commands/templates/create → alloy_runtime_cli-0.2.3/cli/commands/templates}/__init__.py +0 -0
  322. {alloy_runtime_cli-0.2.2/cli/commands/templates/delete → alloy_runtime_cli-0.2.3/cli/commands/templates/create}/__init__.py +0 -0
  323. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/create/presenter.py +0 -0
  324. {alloy_runtime_cli-0.2.2/cli/commands/templates/get → alloy_runtime_cli-0.2.3/cli/commands/templates/delete}/__init__.py +0 -0
  325. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/delete/presenter.py +0 -0
  326. {alloy_runtime_cli-0.2.2/cli/commands/templates/render → alloy_runtime_cli-0.2.3/cli/commands/templates/get}/__init__.py +0 -0
  327. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/get/presenter.py +0 -0
  328. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/get_by_version/presenter.py +0 -0
  329. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/list/__init__.py +0 -0
  330. {alloy_runtime_cli-0.2.2/cli/commands/templates/update → alloy_runtime_cli-0.2.3/cli/commands/templates/render}/__init__.py +0 -0
  331. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/render/presenter.py +0 -0
  332. {alloy_runtime_cli-0.2.2/cli/commands/tool_configs → alloy_runtime_cli-0.2.3/cli/commands/templates/update}/__init__.py +0 -0
  333. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/update/presenter.py +0 -0
  334. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/version/__init__.py +0 -0
  335. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/templates/version/presenter.py +0 -0
  336. {alloy_runtime_cli-0.2.2/cli/commands/tool_configs/create → alloy_runtime_cli-0.2.3/cli/commands/tool_configs}/__init__.py +0 -0
  337. {alloy_runtime_cli-0.2.2/cli/commands/tool_configs/delete → alloy_runtime_cli-0.2.3/cli/commands/tool_configs/create}/__init__.py +0 -0
  338. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/create/presenter.py +0 -0
  339. {alloy_runtime_cli-0.2.2/cli/commands/tool_configs/get → alloy_runtime_cli-0.2.3/cli/commands/tool_configs/delete}/__init__.py +0 -0
  340. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/delete/presenter.py +0 -0
  341. {alloy_runtime_cli-0.2.2/cli/commands/tool_configs/list → alloy_runtime_cli-0.2.3/cli/commands/tool_configs/get}/__init__.py +0 -0
  342. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/get/presenter.py +0 -0
  343. {alloy_runtime_cli-0.2.2/cli/commands/tool_configs/update → alloy_runtime_cli-0.2.3/cli/commands/tool_configs/list}/__init__.py +0 -0
  344. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/list/presenter.py +0 -0
  345. {alloy_runtime_cli-0.2.2/cli/commands/users → alloy_runtime_cli-0.2.3/cli/commands/tool_configs/update}/__init__.py +0 -0
  346. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tool_configs/update/presenter.py +0 -0
  347. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/__init__.py +0 -0
  348. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/get/__init__.py +0 -0
  349. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/get/presenter.py +0 -0
  350. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/list/__init__.py +0 -0
  351. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/tools/list/presenter.py +0 -0
  352. {alloy_runtime_cli-0.2.2/cli/commands/whoami → alloy_runtime_cli-0.2.3/cli/commands/users}/__init__.py +0 -0
  353. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/commands/users/create/presenter.py +0 -0
  354. {alloy_runtime_cli-0.2.2/cli/infrastructure → alloy_runtime_cli-0.2.3/cli/commands/whoami}/__init__.py +0 -0
  355. {alloy_runtime_cli-0.2.2/cli/infrastructure/formatters → alloy_runtime_cli-0.2.3/cli/infrastructure}/__init__.py +0 -0
  356. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/auth_storage.py +0 -0
  357. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/client_factory.py +0 -0
  358. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/command.py +0 -0
  359. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/config.py +0 -0
  360. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/console.py +0 -0
  361. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/editor.py +0 -0
  362. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/error_display.py +0 -0
  363. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/field_extractor.py +0 -0
  364. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/file_content.py +0 -0
  365. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/filter_parser.py +0 -0
  366. {alloy_runtime_cli-0.2.2/cli/infrastructure/formatting → alloy_runtime_cli-0.2.3/cli/infrastructure/formatters}/__init__.py +0 -0
  367. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/formatters/base.py +0 -0
  368. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/formatters/compact_formatter.py +0 -0
  369. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/formatters/json_formatter.py +0 -0
  370. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/formatters/lines_formatter.py +0 -0
  371. {alloy_runtime_cli-0.2.2/cli/infrastructure/forms → alloy_runtime_cli-0.2.3/cli/infrastructure/formatting}/__init__.py +0 -0
  372. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/formatting/fields.py +0 -0
  373. {alloy_runtime_cli-0.2.2/cli/infrastructure/injection → alloy_runtime_cli-0.2.3/cli/infrastructure/forms}/__init__.py +0 -0
  374. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/agent_picker.py +0 -0
  375. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/agent_tool_editor.py +0 -0
  376. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/agent_tools_manager.py +0 -0
  377. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/base_picker.py +0 -0
  378. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/components.py +0 -0
  379. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/json_schema_builder.py +0 -0
  380. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/model_picker.py +0 -0
  381. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/parsers.py +0 -0
  382. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/resolution_modal.py +0 -0
  383. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/schema_picker.py +0 -0
  384. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/tag_management_modal.py +0 -0
  385. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/tag_picker.py +0 -0
  386. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/template_picker.py +0 -0
  387. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/forms/tool_config_picker.py +0 -0
  388. {alloy_runtime_cli-0.2.2/cli/infrastructure/renderers → alloy_runtime_cli-0.2.3/cli/infrastructure/injection}/__init__.py +0 -0
  389. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/injection/parser.py +0 -0
  390. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/injection/resolver.py +0 -0
  391. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/kv_parser.py +0 -0
  392. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/local_storage.py +0 -0
  393. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/macro_parser.py +0 -0
  394. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/output.py +0 -0
  395. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/provider_setup.py +0 -0
  396. {alloy_runtime_cli-0.2.2/cli/infrastructure/tui → alloy_runtime_cli-0.2.3/cli/infrastructure/renderers}/__init__.py +0 -0
  397. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/renderers/entity_renderer.py +0 -0
  398. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/renderers/list_renderer.py +0 -0
  399. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/scope_utils.py +0 -0
  400. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/spinner.py +0 -0
  401. {alloy_runtime_cli-0.2.2/cli/infrastructure/validation → alloy_runtime_cli-0.2.3/cli/infrastructure/tui}/__init__.py +0 -0
  402. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/tui/clipboard.py +0 -0
  403. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/tui/formatters.py +0 -0
  404. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/tui/preview.py +0 -0
  405. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/tui/selectable.py +0 -0
  406. {alloy_runtime_cli-0.2.2/cli/tui → alloy_runtime_cli-0.2.3/cli/infrastructure/validation}/__init__.py +0 -0
  407. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/infrastructure/validation/tag_validation.py +0 -0
  408. {alloy_runtime_cli-0.2.2/cli/tui/chat → alloy_runtime_cli-0.2.3/cli/tui}/__init__.py +0 -0
  409. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/app.py +0 -0
  410. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/app_store.py +0 -0
  411. {alloy_runtime_cli-0.2.2/cli/tui/chat/commands → alloy_runtime_cli-0.2.3/cli/tui/chat}/__init__.py +0 -0
  412. {alloy_runtime_cli-0.2.2/cli/tui/chat/renderers → alloy_runtime_cli-0.2.3/cli/tui/chat/commands}/__init__.py +0 -0
  413. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/base.py +0 -0
  414. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/create_session.py +0 -0
  415. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/load_session.py +0 -0
  416. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/regenerate.py +0 -0
  417. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/reload_session.py +0 -0
  418. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/send_message.py +0 -0
  419. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/commands/undo.py +0 -0
  420. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/editor.py +0 -0
  421. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/messages.py +0 -0
  422. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/pane.py +0 -0
  423. {alloy_runtime_cli-0.2.2/cli/tui/chat/services → alloy_runtime_cli-0.2.3/cli/tui/chat/renderers}/__init__.py +0 -0
  424. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/renderers/base.py +0 -0
  425. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/renderers/markdown.py +0 -0
  426. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/renderers/plain.py +0 -0
  427. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/screen.py +0 -0
  428. {alloy_runtime_cli-0.2.2/cli/tui/chat/widgets → alloy_runtime_cli-0.2.3/cli/tui/chat/services}/__init__.py +0 -0
  429. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/services/injection.py +0 -0
  430. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/services/name_generator.py +0 -0
  431. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/slash_commands.py +0 -0
  432. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/store.py +0 -0
  433. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/types.py +0 -0
  434. {alloy_runtime_cli-0.2.2/cli/tui/screens → alloy_runtime_cli-0.2.3/cli/tui/chat/widgets}/__init__.py +0 -0
  435. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/widgets/chat_header.py +0 -0
  436. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/widgets/chat_input.py +0 -0
  437. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/widgets/injection_popup.py +0 -0
  438. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/widgets/message_display.py +0 -0
  439. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/widgets/session_sidebar.py +0 -0
  440. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/chat/widgets/welcome_screen.py +0 -0
  441. {alloy_runtime_cli-0.2.2/cli/tui/styles → alloy_runtime_cli-0.2.3/cli/tui/screens}/__init__.py +0 -0
  442. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/agents.py +0 -0
  443. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/base.py +0 -0
  444. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/content.py +0 -0
  445. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/dashboard.py +0 -0
  446. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/models.py +0 -0
  447. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/nav_screen.py +0 -0
  448. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/schemas.py +0 -0
  449. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/templates.py +0 -0
  450. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/screens/tool_configs.py +0 -0
  451. {alloy_runtime_cli-0.2.2/cli/tui/widgets → alloy_runtime_cli-0.2.3/cli/tui/styles}/__init__.py +0 -0
  452. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/styles/app.tcss +0 -0
  453. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/styles/browser.tcss +0 -0
  454. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/styles/chat.tcss +0 -0
  455. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/styles/dashboard.tcss +0 -0
  456. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/styles/forms.tcss +0 -0
  457. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/styles/modals.tcss +0 -0
  458. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/agent_create_modal.py +0 -0
  459. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/agent_form_modal.py +0 -0
  460. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/agent_update_modal.py +0 -0
  461. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/base_form_modal.py +0 -0
  462. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/confirm_modal.py +0 -0
  463. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/help_modal.py +0 -0
  464. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/new_session_modal.py +0 -0
  465. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/schema_create_modal.py +0 -0
  466. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/schema_update_modal.py +0 -0
  467. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/status_footer.py +0 -0
  468. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/template_create_modal.py +0 -0
  469. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/template_update_modal.py +0 -0
  470. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/tool_config_create_modal.py +0 -0
  471. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/cli/tui/widgets/tool_config_update_modal.py +0 -0
  472. {alloy_runtime_cli-0.2.2 → alloy_runtime_cli-0.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alloy-runtime-cli
3
- Version: 0.2.2
3
+ Version: 0.2.3
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.2
20
- Requires-Dist: alloy-runtime-types==0.2.2
19
+ Requires-Dist: alloy-runtime-sdk==0.2.3
20
+ Requires-Dist: alloy-runtime-types==0.2.3
21
21
  Requires-Dist: trogon
22
22
 
23
23
  # alloy-runtime-cli
@@ -42,11 +42,17 @@ The installed command is `alloy`.
42
42
 
43
43
  ```bash
44
44
  alloy --help
45
+ alloy --help-json
46
+ alloy --help-markdown
45
47
  alloy login
46
48
  alloy --api-url https://your-alloy-runtime-host whoami
47
49
  alloy api-keys create --scope read --scope update --scope use --description "automation key"
48
50
  ```
49
51
 
52
+ Use `alloy --help-json` when automation or agents need recursive machine-readable CLI help as JSON.
53
+ Use `alloy --help-markdown` for the same help tree rendered as Markdown.
54
+ For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json` or `ALLOY_RUNTIME_HELP_FORMAT=markdown` and run `alloy --help`.
55
+
50
56
  ## Configuration
51
57
 
52
58
  The CLI reads configuration in this order:
@@ -57,3 +63,4 @@ The CLI reads configuration in this order:
57
63
 
58
64
  Use `alloy login` to save an API key locally, or set the environment variables when
59
65
  running on a VPS.
66
+
@@ -20,11 +20,17 @@ The installed command is `alloy`.
20
20
 
21
21
  ```bash
22
22
  alloy --help
23
+ alloy --help-json
24
+ alloy --help-markdown
23
25
  alloy login
24
26
  alloy --api-url https://your-alloy-runtime-host whoami
25
27
  alloy api-keys create --scope read --scope update --scope use --description "automation key"
26
28
  ```
27
29
 
30
+ Use `alloy --help-json` when automation or agents need recursive machine-readable CLI help as JSON.
31
+ Use `alloy --help-markdown` for the same help tree rendered as Markdown.
32
+ For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json` or `ALLOY_RUNTIME_HELP_FORMAT=markdown` and run `alloy --help`.
33
+
28
34
  ## Configuration
29
35
 
30
36
  The CLI reads configuration in this order:
@@ -35,3 +41,4 @@ The CLI reads configuration in this order:
35
41
 
36
42
  Use `alloy login` to save an API key locally, or set the environment variables when
37
43
  running on a VPS.
44
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alloy-runtime-cli
3
- Version: 0.2.2
3
+ Version: 0.2.3
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.2
20
- Requires-Dist: alloy-runtime-types==0.2.2
19
+ Requires-Dist: alloy-runtime-sdk==0.2.3
20
+ Requires-Dist: alloy-runtime-types==0.2.3
21
21
  Requires-Dist: trogon
22
22
 
23
23
  # alloy-runtime-cli
@@ -42,11 +42,17 @@ The installed command is `alloy`.
42
42
 
43
43
  ```bash
44
44
  alloy --help
45
+ alloy --help-json
46
+ alloy --help-markdown
45
47
  alloy login
46
48
  alloy --api-url https://your-alloy-runtime-host whoami
47
49
  alloy api-keys create --scope read --scope update --scope use --description "automation key"
48
50
  ```
49
51
 
52
+ Use `alloy --help-json` when automation or agents need recursive machine-readable CLI help as JSON.
53
+ Use `alloy --help-markdown` for the same help tree rendered as Markdown.
54
+ For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json` or `ALLOY_RUNTIME_HELP_FORMAT=markdown` and run `alloy --help`.
55
+
50
56
  ## Configuration
51
57
 
52
58
  The CLI reads configuration in this order:
@@ -57,3 +63,4 @@ The CLI reads configuration in this order:
57
63
 
58
64
  Use `alloy login` to save an API key locally, or set the environment variables when
59
65
  running on a VPS.
66
+
@@ -97,6 +97,9 @@ cli/commands/credentials/create/__init__.py
97
97
  cli/commands/credentials/create/command.py
98
98
  cli/commands/credentials/create/fields.py
99
99
  cli/commands/credentials/create/presenter.py
100
+ cli/commands/credentials/list/__init__.py
101
+ cli/commands/credentials/list/command.py
102
+ cli/commands/credentials/list/presenter.py
100
103
  cli/commands/credentials/update/__init__.py
101
104
  cli/commands/credentials/update/command.py
102
105
  cli/commands/credentials/update/fields.py
@@ -355,6 +358,8 @@ cli/infrastructure/error_display.py
355
358
  cli/infrastructure/field_extractor.py
356
359
  cli/infrastructure/file_content.py
357
360
  cli/infrastructure/filter_parser.py
361
+ cli/infrastructure/help_json.py
362
+ cli/infrastructure/help_markdown.py
358
363
  cli/infrastructure/kv_parser.py
359
364
  cli/infrastructure/local_storage.py
360
365
  cli/infrastructure/macro_parser.py
@@ -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.2
8
- alloy-runtime-types==0.2.2
7
+ alloy-runtime-sdk==0.2.3
8
+ alloy-runtime-types==0.2.3
9
9
  trogon
@@ -61,8 +61,8 @@ def admin_credentials_create_command(
61
61
 
62
62
  Examples:
63
63
 
64
- ai admin credentials create --type system_provider -n "OpenAI" --value "sk-..." -p openai
65
- ai admin credentials create --type system_provider -n "Default" --value "sk-..." -p openrouter --default
64
+ alloy admin credentials create --type system_provider -n "OpenAI" --value "sk-..." -p openai
65
+ alloy admin credentials create --type system_provider -n "Default" --value "sk-..." -p openrouter --default
66
66
  """
67
67
  _execute_create(
68
68
  credential_type_id=credential_type_id,
@@ -40,8 +40,8 @@ def admin_credentials_grant_command(
40
40
 
41
41
  Examples:
42
42
 
43
- ai admin credentials grant --credential <id> --org <org-id>
44
- ai admin credentials grant --credential <id> --user <user-id>
43
+ alloy admin credentials grant --credential <id> --org <org-id>
44
+ alloy admin credentials grant --credential <id> --user <user-id>
45
45
  """
46
46
  _execute_grant(
47
47
  credential_id=credential_id,
@@ -174,12 +174,12 @@ def agents_create_command(
174
174
  """Create a new AI agent.
175
175
 
176
176
  Examples:
177
- ai agents create -n "My Agent" -p openai -M gpt-4o -t "agent.llm"
178
- ai agents create -n "Writer" -p anthropic -M claude-3-sonnet -t "agent.creative" -d "Creative writer" -T 0.9
179
- ai agents create -n "Org Agent" -p openai -M gpt-4o -t "agent.llm,team.backend" --scope organization
180
- ai agents create -n "With Tools" -p openai -M gpt-4o -t "agent" --tools '[{"tool_id": "web_search"}]'
181
- ai agents create -n "With Tools" -p openai -M gpt-4o -t "agent" --tools-file tools.json
182
- ai agents create -n "With Headers" -p openai -M gpt-4o -t "agent" -H 'anthropic-beta:context-1m-2025-08-07'
177
+ alloy agents create -n "My Agent" -p openai -M gpt-4o -t "agent.llm"
178
+ alloy agents create -n "Writer" -p anthropic -M claude-3-sonnet -t "agent.creative" -d "Creative writer" -T 0.9
179
+ alloy agents create -n "Org Agent" -p openai -M gpt-4o -t "agent.llm,team.backend" --scope organization
180
+ alloy agents create -n "With Tools" -p openai -M gpt-4o -t "agent" --tools '[{"tool_id": "web_search"}]'
181
+ alloy agents create -n "With Tools" -p openai -M gpt-4o -t "agent" --tools-file tools.json
182
+ alloy agents create -n "With Headers" -p openai -M gpt-4o -t "agent" -H 'anthropic-beta:context-1m-2025-08-07'
183
183
  """
184
184
  require_exclusive(("--tools", tools), ("--tools-file", tools_file))
185
185
  require_exclusive(
@@ -25,8 +25,8 @@ def agents_delete_command(
25
25
  Agents referenced by pipeline steps cannot be deleted.
26
26
 
27
27
  Examples:
28
- ai agents delete my-agent
29
- ai agents delete 550e8400-e29b-41d4-a716-446655440000 -y
28
+ alloy agents delete my-agent
29
+ alloy agents delete 550e8400-e29b-41d4-a716-446655440000 -y
30
30
  """
31
31
  _execute_delete(agent_identifier=agent, skip_confirm=yes)
32
32
 
@@ -18,8 +18,8 @@ def agents_get_command(
18
18
  The agent can be specified by name or UUID.
19
19
 
20
20
  Examples:
21
- ai agents get my-agent
22
- ai agents get 123e4567-89ab-cdef-0123-456789abcdef
21
+ alloy agents get my-agent
22
+ alloy agents get 123e4567-89ab-cdef-0123-456789abcdef
23
23
  """
24
24
  _execute_get(agent_identifier=agent)
25
25
 
@@ -33,10 +33,10 @@ def agents_list_command(
33
33
  """List agents accessible to you.
34
34
 
35
35
  Examples:
36
- ai agents list
37
- ai agents list -s "claude opus"
38
- ai agents list -l 20
39
- ai agents list -s bot -l 10 --offset 20
36
+ alloy agents list
37
+ alloy agents list -s "claude opus"
38
+ alloy agents list -l 20
39
+ alloy agents list -s bot -l 10 --offset 20
40
40
  """
41
41
  _execute_list(search=search, limit=limit, offset=offset)
42
42
 
@@ -181,18 +181,18 @@ def agents_update_command(
181
181
  To update the model, provide both --provider and --model.
182
182
 
183
183
  Examples:
184
- ai agents update my-agent -n "New Name"
185
- ai agents update my-agent -d "Updated description"
186
- ai agents update my-agent --clear-description
187
- ai agents update my-agent -p anthropic -M claude-3-5-sonnet-20241022
188
- ai agents update my-agent -T 0.9 --max-tokens 2000
189
- ai agents update my-agent -t "new,tags"
190
- ai agents update my-agent --clear-tags
191
- ai agents update my-agent --tools '[{"tool_id": "web_search"}]'
192
- ai agents update my-agent --clear-tools
193
- ai agents update my-agent --top-p 0.9 --frequency-penalty 0.5
194
- ai agents update my-agent --output-schema-def '{"type": "object"}'
195
- ai agents update my-agent -H 'anthropic-beta:context-1m-2025-08-07'
184
+ alloy agents update my-agent -n "New Name"
185
+ alloy agents update my-agent -d "Updated description"
186
+ alloy agents update my-agent --clear-description
187
+ alloy agents update my-agent -p anthropic -M claude-3-5-sonnet-20241022
188
+ alloy agents update my-agent -T 0.9 --max-tokens 2000
189
+ alloy agents update my-agent -t "new,tags"
190
+ alloy agents update my-agent --clear-tags
191
+ alloy agents update my-agent --tools '[{"tool_id": "web_search"}]'
192
+ alloy agents update my-agent --clear-tools
193
+ alloy agents update my-agent --top-p 0.9 --frequency-penalty 0.5
194
+ alloy agents update my-agent --output-schema-def '{"type": "object"}'
195
+ alloy agents update my-agent -H 'anthropic-beta:context-1m-2025-08-07'
196
196
  """
197
197
  require_together(("--provider", provider), ("--model", model))
198
198
 
@@ -427,7 +427,7 @@ async def _execute_update(
427
427
  agent_data = await client.get_agent(agent_identifier)
428
428
  except NotFoundError:
429
429
  raise typer.BadParameter(
430
- f"Agent '{agent_identifier}' not found. Use 'ai agents list' to see available agents."
430
+ f"Agent '{agent_identifier}' not found. Use 'alloy agents list' to see available agents."
431
431
  )
432
432
 
433
433
  response = await client.update_agent(agent_data.id, request)
@@ -3,8 +3,14 @@
3
3
  import mimetypes
4
4
  import sys
5
5
  from pathlib import Path
6
+ from typing import Literal, Protocol, cast
6
7
 
7
8
  import typer
9
+ from alloy_runtime_types.dtos.audio import (
10
+ AudioTranscriptionJSONOutput,
11
+ AudioTranscriptionStatusResponse,
12
+ AudioTranscriptionSubmitResponse,
13
+ )
8
14
 
9
15
  from cli.infrastructure.command import async_command, authenticated_client
10
16
 
@@ -12,6 +18,32 @@ MAX_FILE_SIZE_BYTES = 25 * 1024 * 1024 # 25 MB
12
18
  DEFAULT_POLL_TIMEOUT_SECONDS = 300.0
13
19
 
14
20
 
21
+ class AudioTranscriptionClient(Protocol):
22
+ async def submit_audio_transcription(
23
+ self,
24
+ *args: object,
25
+ **kwargs: object,
26
+ ) -> AudioTranscriptionSubmitResponse: ...
27
+
28
+ async def get_audio_transcription(
29
+ self,
30
+ transcription_id: str,
31
+ ) -> AudioTranscriptionStatusResponse: ...
32
+
33
+ async def wait_for_audio_transcription(
34
+ self,
35
+ transcription_id: str,
36
+ **kwargs: object,
37
+ ) -> AudioTranscriptionStatusResponse: ...
38
+
39
+ async def get_audio_transcription_output(
40
+ self,
41
+ transcription_id: str,
42
+ *,
43
+ format: Literal["text", "json", "srt", "vtt"],
44
+ ) -> AudioTranscriptionJSONOutput | str: ...
45
+
46
+
15
47
  def resolve_audio_input(file: str) -> tuple[bytes, str, str]:
16
48
  """Validate and read audio input from a file path or stdin.
17
49
 
@@ -100,10 +132,19 @@ def _detect_content_type(path: Path) -> str:
100
132
 
101
133
 
102
134
  def audio_transcribe_command(
103
- file: str = typer.Argument(
104
- ...,
135
+ file: str | None = typer.Argument(
136
+ None,
105
137
  help="Path to audio file, or '-' for stdin.",
106
138
  ),
139
+ backend: Literal["local", "elevenlabs"] = typer.Option(
140
+ ..., "--backend", help="Transcription backend to use."
141
+ ),
142
+ audio_url: str | None = typer.Option(None, "--audio-url", help="Remote audio URL."),
143
+ diarize: bool | None = typer.Option(
144
+ None,
145
+ "--diarize/--no-diarize",
146
+ help="Explicitly enable or disable diarization.",
147
+ ),
107
148
  ) -> None:
108
149
  """Transcribe audio to text.
109
150
 
@@ -111,21 +152,53 @@ def audio_transcribe_command(
111
152
  Content type is auto-detected from the file extension.
112
153
 
113
154
  Examples:
114
- ai audio transcribe recording.wav
115
- ai audio transcribe ~/voice-memo.mp3
116
- cat audio.wav | ai audio transcribe -
155
+ alloy audio transcribe recording.wav
156
+ alloy audio transcribe ~/voice-memo.mp3
157
+ cat audio.wav | alloy audio transcribe -
117
158
  """
118
- file_bytes, filename, content_type = resolve_audio_input(file)
159
+ if diarize is None:
160
+ raise typer.BadParameter("You must choose --diarize or --no-diarize.")
161
+
162
+ if (file is None) == (audio_url is None):
163
+ raise typer.BadParameter(
164
+ "Provide exactly one source input: file or --audio-url."
165
+ )
166
+
167
+ if backend == "local" and audio_url is not None:
168
+ raise typer.BadParameter(
169
+ "--audio-url is only supported with --backend elevenlabs."
170
+ )
171
+
172
+ if backend == "local" and diarize:
173
+ raise typer.BadParameter(
174
+ "--diarize is only supported with --backend elevenlabs."
175
+ )
176
+
177
+ file_bytes: bytes | None = None
178
+ filename: str | None = None
179
+ content_type: str | None = None
180
+ if file is not None:
181
+ file_bytes, filename, content_type = resolve_audio_input(file)
182
+
119
183
  _execute_transcribe(
120
- file_bytes=file_bytes, filename=filename, content_type=content_type
184
+ backend=backend,
185
+ diarize=diarize,
186
+ file_bytes=file_bytes,
187
+ filename=filename,
188
+ content_type=content_type,
189
+ audio_url=audio_url,
121
190
  )
122
191
 
123
192
 
124
193
  @async_command
125
194
  async def _execute_transcribe(
126
- file_bytes: bytes,
127
- filename: str,
128
- content_type: str,
195
+ *,
196
+ backend: Literal["local", "elevenlabs"],
197
+ diarize: bool,
198
+ file_bytes: bytes | None,
199
+ filename: str | None,
200
+ content_type: str | None,
201
+ audio_url: str | None,
129
202
  ) -> None:
130
203
  """Execute the transcribe operation.
131
204
 
@@ -135,20 +208,29 @@ async def _execute_transcribe(
135
208
  content_type: MIME content type of the audio.
136
209
  """
137
210
  async with authenticated_client() as (_config, client):
138
- submit_response = await client.submit_audio_transcription(
211
+ typed_client = cast(AudioTranscriptionClient, client)
212
+ submit_response = await typed_client.submit_audio_transcription(
139
213
  file_bytes,
214
+ backend=backend,
215
+ diarize=diarize,
140
216
  filename=filename,
141
217
  content_type=content_type,
218
+ audio_url=audio_url,
142
219
  )
143
220
 
144
- status = await client.wait_for_audio_transcription(
145
- submit_response.transcription_id,
146
- timeout_seconds=DEFAULT_POLL_TIMEOUT_SECONDS,
147
- )
221
+ if submit_response.status == "completed":
222
+ status = await typed_client.get_audio_transcription(
223
+ str(submit_response.transcription_id)
224
+ )
225
+ else:
226
+ status = await typed_client.wait_for_audio_transcription(
227
+ str(submit_response.transcription_id),
228
+ timeout_seconds=DEFAULT_POLL_TIMEOUT_SECONDS,
229
+ )
148
230
 
149
231
  if status.status == "completed":
150
- output = await client.get_audio_transcription_output(
151
- submit_response.transcription_id,
232
+ output = await typed_client.get_audio_transcription_output(
233
+ str(submit_response.transcription_id),
152
234
  format="text",
153
235
  )
154
236
  print(output)
@@ -30,8 +30,8 @@ def signup_command(
30
30
 
31
31
  Examples:
32
32
 
33
- ai signup
34
- ai signup -e user@example.com -n "John Doe" --org "My Company"
33
+ alloy signup
34
+ alloy signup -e user@example.com -n "John Doe" --org "My Company"
35
35
  """
36
36
  _execute_signup(email, password, name, org_name)
37
37
 
@@ -111,5 +111,5 @@ async def _execute_signup(
111
111
  else:
112
112
  console.print("\n[dim]You can add provider credentials later with:[/dim]")
113
113
  console.print(
114
- "[dim] ai credentials update <credential-id> --value <api-key>[/dim]"
114
+ "[dim] alloy credentials update <credential-id> --value <api-key>[/dim]"
115
115
  )
@@ -29,8 +29,8 @@ def billing_costs_by_agent_command(
29
29
  """Get cost breakdown by agent for a billing project.
30
30
 
31
31
  Examples:
32
- ai billing costs by-agent 123e4567-89ab...
33
- ai billing costs by-agent 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
32
+ alloy billing costs by-agent 123e4567-89ab...
33
+ alloy billing costs by-agent 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
34
34
  """
35
35
  project_uuid = validate_uuid(project_id, "billing project")
36
36
  _execute_costs_by_agent(
@@ -29,8 +29,8 @@ def billing_costs_by_model_command(
29
29
  """Get cost breakdown by model for a billing project.
30
30
 
31
31
  Examples:
32
- ai billing costs by-model 123e4567-89ab...
33
- ai billing costs by-model 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
32
+ alloy billing costs by-model 123e4567-89ab...
33
+ alloy billing costs by-model 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
34
34
  """
35
35
  project_uuid = validate_uuid(project_id, "billing project")
36
36
  _execute_costs_by_model(
@@ -28,7 +28,7 @@ def billing_costs_daily_command(
28
28
  """Get daily cost breakdown for a billing project.
29
29
 
30
30
  Examples:
31
- ai billing costs daily 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
31
+ alloy billing costs daily 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
32
32
  """
33
33
  project_uuid = validate_uuid(project_id, "billing project")
34
34
  _execute_daily_costs(
@@ -29,8 +29,8 @@ def billing_costs_summary_command(
29
29
  """Get cost summary for a billing project.
30
30
 
31
31
  Examples:
32
- ai billing costs summary 123e4567-89ab...
33
- ai billing costs summary 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
32
+ alloy billing costs summary 123e4567-89ab...
33
+ alloy billing costs summary 123e4567-89ab... --from 2026-01-01 --to 2026-01-31
34
34
  """
35
35
  project_uuid = validate_uuid(project_id, "billing project")
36
36
  _execute_cost_summary(
@@ -32,8 +32,8 @@ def billing_projects_create_command(
32
32
  """Create a new billing project.
33
33
 
34
34
  Examples:
35
- ai billing projects create --name "Q1 Campaign"
36
- ai billing projects create --name "Q1 Campaign" --description "Marketing costs"
35
+ alloy billing projects create --name "Q1 Campaign"
36
+ alloy billing projects create --name "Q1 Campaign" --description "Marketing costs"
37
37
  """
38
38
  _execute_create(
39
39
  name=name,
@@ -18,7 +18,7 @@ def billing_projects_get_command(
18
18
  """Get details of a billing project.
19
19
 
20
20
  Examples:
21
- ai billing projects get 123e4567-89ab-cdef-0123-456789abcdef
21
+ alloy billing projects get 123e4567-89ab-cdef-0123-456789abcdef
22
22
  """
23
23
  project_uuid = validate_uuid(project_id, "billing project")
24
24
  _execute_get(project_id=project_uuid)
@@ -25,8 +25,8 @@ def billing_projects_list_command(
25
25
  """List billing projects in your organization.
26
26
 
27
27
  Examples:
28
- ai billing projects list
29
- ai billing projects list -l 10
28
+ alloy billing projects list
29
+ alloy billing projects list -l 10
30
30
  """
31
31
  _execute_list(limit=limit, offset=offset)
32
32
 
@@ -25,8 +25,8 @@ def content_delete_command(
25
25
  """Delete a content part.
26
26
 
27
27
  Examples:
28
- ai content delete 019405e0-e000-7000-f100-000000000001
29
- ai content delete <id> -y
28
+ alloy content delete 019405e0-e000-7000-f100-000000000001
29
+ alloy content delete <id> -y
30
30
  """
31
31
  content_uuid = validate_uuid(content_part_id, "content")
32
32
  _execute_delete(content_part_id=content_uuid, skip_confirm=yes)
@@ -57,11 +57,11 @@ def content_edit_command(
57
57
  By default opens $EDITOR. Use --content or --file to bypass.
58
58
 
59
59
  Examples:
60
- ai content edit 019405e0-...
61
- ai content edit <id> -t "email.final,reviewed"
62
- ai content edit <id> --no-edit -t "archived"
63
- ai content edit <id> -c "New content"
64
- ai content edit <id> -f output.txt
60
+ alloy content edit 019405e0-...
61
+ alloy content edit <id> -t "email.final,reviewed"
62
+ alloy content edit <id> --no-edit -t "archived"
63
+ alloy content edit <id> -c "New content"
64
+ alloy content edit <id> -f output.txt
65
65
  """
66
66
  content_uuid = validate_uuid(content_part_id, "content")
67
67
 
@@ -22,9 +22,9 @@ def content_get_command(
22
22
  - Metadata goes to stderr
23
23
 
24
24
  Examples:
25
- ai content get 019405e0-e000-7000-f100-000000000001
26
- ai content get <id> | jq .
27
- ai content get <id> > output.txt
25
+ alloy content get 019405e0-e000-7000-f100-000000000001
26
+ alloy content get <id> | jq .
27
+ alloy content get <id> > output.txt
28
28
  """
29
29
  content_uuid = validate_uuid(content_part_id, "content")
30
30
  _execute_get(content_part_id=content_uuid)
@@ -166,13 +166,13 @@ def content_list_command(
166
166
  """List AI-generated content parts.
167
167
 
168
168
  Examples:
169
- ai content list
170
- ai content list -s "python code"
171
- ai content list -a <agent-id>
172
- ai content list -t "*.email.*" -x rejected
173
- ai content list -w status=complete
174
- ai content list -e markdown -o clipboard
175
- ai content list -F id,content_text --jq profession
169
+ alloy content list
170
+ alloy content list -s "python code"
171
+ alloy content list -a <agent-id>
172
+ alloy content list -t "*.email.*" -x rejected
173
+ alloy content list -w status=complete
174
+ alloy content list -e markdown -o clipboard
175
+ alloy content list -F id,content_text --jq profession
176
176
  """
177
177
  # Parse UUIDs
178
178
  agent_uuid: Optional[UUID] = None
@@ -187,4 +187,4 @@ def present_content_list(response: ListContentPartsResponse) -> None:
187
187
 
188
188
  # Show pagination info if there's a next page
189
189
  if response.cursor:
190
- output.status(f"Next page: ai content list --cursor '{response.cursor}'")
190
+ output.status(f"Next page: alloy content list --cursor '{response.cursor}'")
@@ -53,15 +53,15 @@ def credentials_create_command(
53
53
  Requires organization owner or admin role.
54
54
 
55
55
  SECURITY: Use env var to avoid shell history exposure:
56
- ai credentials create --value "$OPENAI_API_KEY" ...
56
+ alloy credentials create --value "$OPENAI_API_KEY" ...
57
57
 
58
58
  Examples:
59
59
 
60
60
  # Provider credential
61
- ai credentials create --type org_provider -n "OpenAI" --value "sk-..." -p openai
61
+ alloy credentials create --type org_provider -n "OpenAI" --value "sk-..." -p openai
62
62
 
63
63
  # Tool credential
64
- ai credentials create --type org_tool -n "Search" --value "key" --tool-id web_search
64
+ alloy credentials create --type org_tool -n "Search" --value "key" --tool-id web_search
65
65
  """
66
66
  _execute_create(
67
67
  credential_type_id=credential_type_id,
@@ -0,0 +1,17 @@
1
+ """Credentials list command implementation."""
2
+
3
+ from cli.commands.credentials.list.presenter import present_credentials_list
4
+ from cli.infrastructure.command import async_command, authenticated_client
5
+
6
+
7
+ def credentials_list_command() -> None:
8
+ """List organization credentials."""
9
+ _execute_list()
10
+
11
+
12
+ @async_command
13
+ async def _execute_list() -> None:
14
+ async with authenticated_client() as (_config, client):
15
+ response = await client.list_organization_credentials()
16
+
17
+ present_credentials_list(response)