alloy-runtime-cli 0.2.30__tar.gz → 0.2.32__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 (522) hide show
  1. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/PKG-INFO +3 -4
  2. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/README.md +0 -1
  3. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/alloy_runtime_cli.egg-info/PKG-INFO +3 -4
  4. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/alloy_runtime_cli.egg-info/SOURCES.txt +0 -2
  5. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/alloy_runtime_cli.egg-info/requires.txt +2 -2
  6. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/bootstrap_command.py +32 -20
  7. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/create/presenter.py +6 -1
  8. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/grant/presenter.py +6 -1
  9. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/create/presenter.py +6 -1
  10. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/delete/command.py +1 -1
  11. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/delete/presenter.py +6 -1
  12. alloy_runtime_cli-0.2.32/cli/commands/agents/get/presenter.py +35 -0
  13. alloy_runtime_cli-0.2.32/cli/commands/agents/list/presenter.py +63 -0
  14. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/update/presenter.py +6 -1
  15. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/api_keys/create/presenter.py +8 -2
  16. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/audio/transcribe/command.py +11 -5
  17. alloy_runtime_cli-0.2.32/cli/commands/audio/transcribe/presenter.py +22 -0
  18. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/auth/login/command.py +31 -21
  19. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/auth/signup/command.py +46 -36
  20. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/by_agent/presenter.py +1 -4
  21. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/by_model/presenter.py +1 -4
  22. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/daily/presenter.py +1 -4
  23. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/list/presenter.py +1 -4
  24. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/delete/command.py +1 -1
  25. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/delete/presenter.py +6 -1
  26. alloy_runtime_cli-0.2.32/cli/commands/content/edit/presenter.py +125 -0
  27. alloy_runtime_cli-0.2.32/cli/commands/content/get/presenter.py +105 -0
  28. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/list/command.py +3 -2
  29. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/list/presenter.py +2 -8
  30. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/create/presenter.py +6 -1
  31. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/list/presenter.py +9 -31
  32. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/supported/presenter.py +5 -1
  33. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/update/presenter.py +6 -1
  34. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/cancel/command.py +1 -1
  35. alloy_runtime_cli-0.2.32/cli/commands/generate/cancel/presenter.py +20 -0
  36. alloy_runtime_cli-0.2.32/cli/commands/generate/status/presenter.py +62 -0
  37. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/text/command.py +289 -246
  38. alloy_runtime_cli-0.2.32/cli/commands/generate/text/concurrent_renderer.py +104 -0
  39. alloy_runtime_cli-0.2.32/cli/commands/generate/text/presenter.py +122 -0
  40. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/text/stream_renderer.py +33 -43
  41. alloy_runtime_cli-0.2.32/cli/commands/knowledge/collections/cluster/presenter.py +64 -0
  42. alloy_runtime_cli-0.2.32/cli/commands/knowledge/collections/create/presenter.py +40 -0
  43. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/delete/command.py +1 -1
  44. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/delete/presenter.py +9 -1
  45. alloy_runtime_cli-0.2.32/cli/commands/knowledge/collections/get/presenter.py +39 -0
  46. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/list/presenter.py +1 -4
  47. alloy_runtime_cli-0.2.32/cli/commands/knowledge/collections/update/presenter.py +44 -0
  48. alloy_runtime_cli-0.2.32/cli/commands/knowledge/documents/bulk_metadata/presenter.py +27 -0
  49. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/delete/command.py +1 -1
  50. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/delete/presenter.py +9 -1
  51. alloy_runtime_cli-0.2.32/cli/commands/knowledge/documents/get/presenter.py +76 -0
  52. alloy_runtime_cli-0.2.32/cli/commands/knowledge/documents/ingest/presenter.py +28 -0
  53. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/list/presenter.py +2 -12
  54. alloy_runtime_cli-0.2.32/cli/commands/knowledge/documents/reingest/presenter.py +58 -0
  55. alloy_runtime_cli-0.2.32/cli/commands/knowledge/documents/update/presenter.py +46 -0
  56. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/recover/presenter.py +26 -29
  57. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/search/command.py +23 -33
  58. alloy_runtime_cli-0.2.32/cli/commands/knowledge/search/presenter.py +75 -0
  59. alloy_runtime_cli-0.2.32/cli/commands/knowledge/synthesis/create/presenter.py +25 -0
  60. alloy_runtime_cli-0.2.32/cli/commands/knowledge/synthesis/delete/presenter.py +21 -0
  61. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/get/command.py +5 -19
  62. alloy_runtime_cli-0.2.32/cli/commands/knowledge/synthesis/get/presenter.py +67 -0
  63. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/list/command.py +1 -19
  64. alloy_runtime_cli-0.2.32/cli/commands/knowledge/synthesis/list/presenter.py +37 -0
  65. alloy_runtime_cli-0.2.32/cli/commands/knowledge/synthesis/refresh/presenter.py +25 -0
  66. alloy_runtime_cli-0.2.32/cli/commands/knowledge/synthesis/update/presenter.py +38 -0
  67. alloy_runtime_cli-0.2.32/cli/commands/models/list/presenter.py +114 -0
  68. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/organizations/create/presenter.py +6 -1
  69. alloy_runtime_cli-0.2.32/cli/commands/ping/command.py +131 -0
  70. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/approvals/presenter.py +25 -5
  71. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/costs/daily_presenter.py +1 -4
  72. alloy_runtime_cli-0.2.32/cli/commands/pipelines/env_vars/presenter.py +41 -0
  73. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/execute/presenter.py +11 -3
  74. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs_by_model/presenter.py +1 -4
  75. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/get_command.py +5 -1
  76. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/presenter.py +41 -40
  77. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/update/presenter.py +20 -8
  78. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/get/presenter.py +15 -16
  79. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/list/presenter.py +1 -4
  80. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/delete_command.py +1 -1
  81. alloy_runtime_cli-0.2.32/cli/commands/pipelines/schedules/env_vars_presenter.py +41 -0
  82. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/presenter.py +7 -5
  83. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/render/html_to_image/command.py +17 -9
  84. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/create/presenter.py +6 -1
  85. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/delete/command.py +1 -1
  86. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/delete/presenter.py +6 -1
  87. alloy_runtime_cli-0.2.32/cli/commands/schemas/get/presenter.py +104 -0
  88. alloy_runtime_cli-0.2.32/cli/commands/schemas/list/presenter.py +75 -0
  89. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/update/command.py +31 -28
  90. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/update/presenter.py +6 -1
  91. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/delete/command.py +1 -1
  92. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/delete/presenter.py +6 -1
  93. alloy_runtime_cli-0.2.32/cli/commands/sessions/get/presenter.py +54 -0
  94. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/list/presenter.py +1 -4
  95. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/messages/presenter.py +14 -27
  96. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sync/command.py +3 -5
  97. alloy_runtime_cli-0.2.32/cli/commands/sync/presenter.py +50 -0
  98. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/create/command.py +6 -1
  99. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/delete/command.py +1 -1
  100. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/delete/presenter.py +6 -1
  101. alloy_runtime_cli-0.2.32/cli/commands/tags/get/presenter.py +28 -0
  102. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/list/presenter.py +1 -4
  103. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/update/presenter.py +6 -1
  104. alloy_runtime_cli-0.2.32/cli/commands/templates/create/presenter.py +31 -0
  105. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/delete/command.py +1 -1
  106. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/delete/presenter.py +6 -1
  107. alloy_runtime_cli-0.2.32/cli/commands/templates/get/presenter.py +213 -0
  108. alloy_runtime_cli-0.2.32/cli/commands/templates/get_by_version/presenter.py +8 -0
  109. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/list/presenter.py +2 -8
  110. alloy_runtime_cli-0.2.32/cli/commands/templates/render/presenter.py +344 -0
  111. alloy_runtime_cli-0.2.32/cli/commands/templates/update/presenter.py +31 -0
  112. alloy_runtime_cli-0.2.32/cli/commands/templates/version/presenter.py +31 -0
  113. alloy_runtime_cli-0.2.32/cli/commands/tool_configs/create/presenter.py +22 -0
  114. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/delete/command.py +1 -1
  115. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/delete/presenter.py +6 -3
  116. alloy_runtime_cli-0.2.32/cli/commands/tool_configs/get/presenter.py +70 -0
  117. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/list/presenter.py +1 -4
  118. alloy_runtime_cli-0.2.32/cli/commands/tool_configs/update/presenter.py +22 -0
  119. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/get/presenter.py +1 -1
  120. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/list/presenter.py +20 -16
  121. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/users/create/presenter.py +6 -1
  122. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/command.py +2 -0
  123. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/console.py +2 -1
  124. alloy_runtime_cli-0.2.32/cli/infrastructure/error_display.py +132 -0
  125. alloy_runtime_cli-0.2.32/cli/infrastructure/formatters/base.py +214 -0
  126. alloy_runtime_cli-0.2.32/cli/infrastructure/formatters/compact_formatter.py +81 -0
  127. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/formatters/json_formatter.py +22 -0
  128. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/help_toon.py +11 -3
  129. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/output.py +55 -39
  130. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/provider_setup.py +25 -13
  131. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/renderers/entity_renderer.py +9 -10
  132. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/renderers/list_renderer.py +17 -16
  133. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/spinner.py +29 -6
  134. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/main.py +95 -25
  135. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/pyproject.toml +3 -3
  136. alloy_runtime_cli-0.2.30/cli/commands/agents/get/presenter.py +0 -36
  137. alloy_runtime_cli-0.2.30/cli/commands/agents/list/presenter.py +0 -81
  138. alloy_runtime_cli-0.2.30/cli/commands/audio/transcribe/presenter.py +0 -13
  139. alloy_runtime_cli-0.2.30/cli/commands/content/edit/presenter.py +0 -146
  140. alloy_runtime_cli-0.2.30/cli/commands/content/get/presenter.py +0 -176
  141. alloy_runtime_cli-0.2.30/cli/commands/generate/cancel/presenter.py +0 -26
  142. alloy_runtime_cli-0.2.30/cli/commands/generate/status/presenter.py +0 -73
  143. alloy_runtime_cli-0.2.30/cli/commands/generate/text/concurrent_renderer.py +0 -328
  144. alloy_runtime_cli-0.2.30/cli/commands/generate/text/presenter.py +0 -287
  145. alloy_runtime_cli-0.2.30/cli/commands/knowledge/collections/cluster/presenter.py +0 -74
  146. alloy_runtime_cli-0.2.30/cli/commands/knowledge/collections/create/presenter.py +0 -38
  147. alloy_runtime_cli-0.2.30/cli/commands/knowledge/collections/get/presenter.py +0 -48
  148. alloy_runtime_cli-0.2.30/cli/commands/knowledge/collections/update/presenter.py +0 -42
  149. alloy_runtime_cli-0.2.30/cli/commands/knowledge/documents/bulk_metadata/presenter.py +0 -36
  150. alloy_runtime_cli-0.2.30/cli/commands/knowledge/documents/get/presenter.py +0 -81
  151. alloy_runtime_cli-0.2.30/cli/commands/knowledge/documents/ingest/presenter.py +0 -41
  152. alloy_runtime_cli-0.2.30/cli/commands/knowledge/documents/reingest/presenter.py +0 -70
  153. alloy_runtime_cli-0.2.30/cli/commands/knowledge/documents/update/presenter.py +0 -37
  154. alloy_runtime_cli-0.2.30/cli/commands/knowledge/search/presenter.py +0 -108
  155. alloy_runtime_cli-0.2.30/cli/commands/knowledge/synthesis/create/presenter.py +0 -35
  156. alloy_runtime_cli-0.2.30/cli/commands/knowledge/synthesis/delete/presenter.py +0 -31
  157. alloy_runtime_cli-0.2.30/cli/commands/knowledge/synthesis/get/presenter.py +0 -114
  158. alloy_runtime_cli-0.2.30/cli/commands/knowledge/synthesis/list/presenter.py +0 -82
  159. alloy_runtime_cli-0.2.30/cli/commands/knowledge/synthesis/refresh/presenter.py +0 -35
  160. alloy_runtime_cli-0.2.30/cli/commands/knowledge/synthesis/update/presenter.py +0 -41
  161. alloy_runtime_cli-0.2.30/cli/commands/models/list/presenter.py +0 -119
  162. alloy_runtime_cli-0.2.30/cli/commands/ping/command.py +0 -88
  163. alloy_runtime_cli-0.2.30/cli/commands/pipelines/env_vars/presenter.py +0 -16
  164. alloy_runtime_cli-0.2.30/cli/commands/pipelines/schedules/env_vars_presenter.py +0 -16
  165. alloy_runtime_cli-0.2.30/cli/commands/schemas/get/presenter.py +0 -124
  166. alloy_runtime_cli-0.2.30/cli/commands/schemas/list/presenter.py +0 -132
  167. alloy_runtime_cli-0.2.30/cli/commands/sessions/get/presenter.py +0 -62
  168. alloy_runtime_cli-0.2.30/cli/commands/sync/presenter.py +0 -49
  169. alloy_runtime_cli-0.2.30/cli/commands/tags/get/presenter.py +0 -27
  170. alloy_runtime_cli-0.2.30/cli/commands/templates/create/presenter.py +0 -82
  171. alloy_runtime_cli-0.2.30/cli/commands/templates/get/presenter.py +0 -238
  172. alloy_runtime_cli-0.2.30/cli/commands/templates/get_by_version/presenter.py +0 -34
  173. alloy_runtime_cli-0.2.30/cli/commands/templates/render/presenter.py +0 -276
  174. alloy_runtime_cli-0.2.30/cli/commands/templates/update/presenter.py +0 -90
  175. alloy_runtime_cli-0.2.30/cli/commands/templates/version/presenter.py +0 -96
  176. alloy_runtime_cli-0.2.30/cli/commands/tool_configs/create/presenter.py +0 -53
  177. alloy_runtime_cli-0.2.30/cli/commands/tool_configs/get/presenter.py +0 -66
  178. alloy_runtime_cli-0.2.30/cli/commands/tool_configs/update/presenter.py +0 -53
  179. alloy_runtime_cli-0.2.30/cli/infrastructure/error_display.py +0 -178
  180. alloy_runtime_cli-0.2.30/cli/infrastructure/formatters/base.py +0 -99
  181. alloy_runtime_cli-0.2.30/cli/infrastructure/formatters/compact_formatter.py +0 -245
  182. alloy_runtime_cli-0.2.30/cli/infrastructure/formatters/lines_formatter.py +0 -102
  183. alloy_runtime_cli-0.2.30/cli/infrastructure/formatters/toon_formatter.py +0 -38
  184. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/MANIFEST.in +0 -0
  185. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/alloy_runtime_cli.egg-info/dependency_links.txt +0 -0
  186. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/alloy_runtime_cli.egg-info/entry_points.txt +0 -0
  187. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/alloy_runtime_cli.egg-info/top_level.txt +0 -0
  188. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/__init__.py +0 -0
  189. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/__init__.py +0 -0
  190. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/__init__.py +0 -0
  191. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/__init__.py +0 -0
  192. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/create/__init__.py +0 -0
  193. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/create/command.py +0 -0
  194. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/grant/__init__.py +0 -0
  195. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/grant/command.py +0 -0
  196. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/admin/credentials/grant/fields.py +0 -0
  197. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/__init__.py +0 -0
  198. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/create/__init__.py +0 -0
  199. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/create/command.py +0 -0
  200. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/create/fields.py +0 -0
  201. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/delete/__init__.py +0 -0
  202. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/get/command.py +0 -0
  203. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/list/__init__.py +0 -0
  204. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/list/command.py +0 -0
  205. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/update/__init__.py +0 -0
  206. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/update/command.py +0 -0
  207. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/agents/update/fields.py +0 -0
  208. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/api_keys/__init__.py +0 -0
  209. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/api_keys/create/__init__.py +0 -0
  210. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/api_keys/create/command.py +0 -0
  211. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/audio/__init__.py +0 -0
  212. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/audio/transcribe/__init__.py +0 -0
  213. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/auth/__init__.py +0 -0
  214. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/auth/login/__init__.py +0 -0
  215. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/auth/signup/__init__.py +0 -0
  216. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/__init__.py +0 -0
  217. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/__init__.py +0 -0
  218. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/by_agent/__init__.py +0 -0
  219. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/by_agent/command.py +0 -0
  220. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/by_model/__init__.py +0 -0
  221. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/by_model/command.py +0 -0
  222. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/daily/__init__.py +0 -0
  223. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/daily/command.py +0 -0
  224. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/summary/__init__.py +0 -0
  225. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/summary/command.py +0 -0
  226. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/costs/summary/presenter.py +0 -0
  227. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/__init__.py +0 -0
  228. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/create/__init__.py +0 -0
  229. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/create/command.py +0 -0
  230. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/create/presenter.py +0 -0
  231. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/get/__init__.py +0 -0
  232. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/get/command.py +0 -0
  233. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/get/presenter.py +0 -0
  234. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/list/__init__.py +0 -0
  235. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/billing/projects/list/command.py +0 -0
  236. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/__init__.py +0 -0
  237. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/delete/__init__.py +0 -0
  238. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/edit/__init__.py +0 -0
  239. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/edit/command.py +0 -0
  240. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/edit/editor.py +0 -0
  241. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/get/__init__.py +0 -0
  242. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/get/command.py +0 -0
  243. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/list/__init__.py +0 -0
  244. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/list/export_formatters.py +0 -0
  245. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/content/list/export_handler.py +0 -0
  246. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/__init__.py +0 -0
  247. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/create/__init__.py +0 -0
  248. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/create/command.py +0 -0
  249. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/create/fields.py +0 -0
  250. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/list/__init__.py +0 -0
  251. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/list/command.py +0 -0
  252. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/supported/command.py +0 -0
  253. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/update/__init__.py +0 -0
  254. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/update/command.py +0 -0
  255. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/credentials/update/fields.py +0 -0
  256. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/flag_utils.py +0 -0
  257. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/__init__.py +0 -0
  258. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/cancel/__init__.py +0 -0
  259. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/status/__init__.py +0 -0
  260. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/status/command.py +0 -0
  261. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/generate/text/__init__.py +0 -0
  262. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/__init__.py +0 -0
  263. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/__init__.py +0 -0
  264. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/cluster/__init__.py +0 -0
  265. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/cluster/command.py +0 -0
  266. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/cluster_status/__init__.py +0 -0
  267. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/cluster_status/command.py +0 -0
  268. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/cluster_status/presenter.py +0 -0
  269. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/create/__init__.py +0 -0
  270. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/create/command.py +0 -0
  271. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/delete/__init__.py +0 -0
  272. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/get/__init__.py +0 -0
  273. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/get/command.py +0 -0
  274. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/list/__init__.py +0 -0
  275. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/list/command.py +0 -0
  276. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/update/__init__.py +0 -0
  277. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/collections/update/command.py +0 -0
  278. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/__init__.py +0 -0
  279. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/bulk_metadata/__init__.py +0 -0
  280. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/bulk_metadata/command.py +0 -0
  281. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/delete/__init__.py +0 -0
  282. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/get/__init__.py +0 -0
  283. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/get/command.py +0 -0
  284. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/ingest/__init__.py +0 -0
  285. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/ingest/command.py +0 -0
  286. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/list/__init__.py +0 -0
  287. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/list/command.py +0 -0
  288. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/reingest/__init__.py +0 -0
  289. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/reingest/command.py +0 -0
  290. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/update/__init__.py +0 -0
  291. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/documents/update/command.py +0 -0
  292. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/recover/__init__.py +0 -0
  293. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/recover/command.py +0 -0
  294. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/search/__init__.py +0 -0
  295. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/__init__.py +0 -0
  296. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/create/__init__.py +0 -0
  297. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/create/command.py +0 -0
  298. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/delete/__init__.py +0 -0
  299. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/delete/command.py +0 -0
  300. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/get/__init__.py +0 -0
  301. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/list/__init__.py +0 -0
  302. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/refresh/__init__.py +0 -0
  303. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/refresh/command.py +0 -0
  304. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/update/__init__.py +0 -0
  305. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/knowledge/synthesis/update/command.py +0 -0
  306. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/models/__init__.py +0 -0
  307. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/models/list/__init__.py +0 -0
  308. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/models/list/command.py +0 -0
  309. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/organizations/__init__.py +0 -0
  310. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/organizations/create/command.py +0 -0
  311. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/__init__.py +0 -0
  312. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/approvals/__init__.py +0 -0
  313. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/approvals/decide_command.py +0 -0
  314. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/approvals/get_command.py +0 -0
  315. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/costs/__init__.py +0 -0
  316. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/costs/command.py +0 -0
  317. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/costs/daily_command.py +0 -0
  318. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/costs/presenter.py +0 -0
  319. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/create/__init__.py +0 -0
  320. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/create/command.py +0 -0
  321. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/create/presenter.py +0 -0
  322. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/env_vars/__init__.py +0 -0
  323. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/env_vars/command.py +0 -0
  324. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/execute/__init__.py +0 -0
  325. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/execute/command.py +0 -0
  326. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/__init__.py +0 -0
  327. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs/__init__.py +0 -0
  328. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs/command.py +0 -0
  329. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs/presenter.py +0 -0
  330. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs_by_model/__init__.py +0 -0
  331. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs_by_model/command.py +0 -0
  332. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/costs_by_step/__init__.py +0 -0
  333. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/list_command.py +0 -0
  334. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/rerun_command.py +0 -0
  335. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/update/__init__.py +0 -0
  336. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/executions/update/command.py +0 -0
  337. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/get/__init__.py +0 -0
  338. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/get/command.py +0 -0
  339. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/list/__init__.py +0 -0
  340. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/list/command.py +0 -0
  341. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/__init__.py +0 -0
  342. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/create_command.py +0 -0
  343. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/create_presenter.py +0 -0
  344. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/env_vars_command.py +0 -0
  345. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/get_command.py +0 -0
  346. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/list_command.py +0 -0
  347. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/once_command.py +0 -0
  348. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/once_presenter.py +0 -0
  349. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/update_command.py +0 -0
  350. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/schedules/update_presenter.py +0 -0
  351. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/update/__init__.py +0 -0
  352. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/pipelines/update/command.py +0 -0
  353. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/render/__init__.py +0 -0
  354. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/render/html_to_image/__init__.py +0 -0
  355. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/__init__.py +0 -0
  356. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/create/__init__.py +0 -0
  357. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/create/command.py +0 -0
  358. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/get/__init__.py +0 -0
  359. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/get/command.py +0 -0
  360. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/list/__init__.py +0 -0
  361. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/list/command.py +0 -0
  362. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/schemas/update/__init__.py +0 -0
  363. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/__init__.py +0 -0
  364. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/delete/__init__.py +0 -0
  365. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/get/__init__.py +0 -0
  366. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/get/command.py +0 -0
  367. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/list/__init__.py +0 -0
  368. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/list/command.py +0 -0
  369. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/messages/__init__.py +0 -0
  370. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sessions/messages/command.py +0 -0
  371. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/shared_flags.py +0 -0
  372. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/sync/__init__.py +0 -0
  373. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/__init__.py +0 -0
  374. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/create/__init__.py +0 -0
  375. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/delete/__init__.py +0 -0
  376. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/get/command.py +0 -0
  377. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/list/__init__.py +0 -0
  378. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/list/command.py +0 -0
  379. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tags/update/command.py +0 -0
  380. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/__init__.py +0 -0
  381. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/create/__init__.py +0 -0
  382. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/create/command.py +0 -0
  383. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/delete/__init__.py +0 -0
  384. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/get/__init__.py +0 -0
  385. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/get/command.py +0 -0
  386. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/get_by_version/command.py +0 -0
  387. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/list/__init__.py +0 -0
  388. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/list/command.py +0 -0
  389. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/render/__init__.py +0 -0
  390. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/render/command.py +0 -0
  391. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/update/__init__.py +0 -0
  392. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/update/command.py +0 -0
  393. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/version/__init__.py +0 -0
  394. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/templates/version/command.py +0 -0
  395. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/__init__.py +0 -0
  396. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/create/__init__.py +0 -0
  397. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/create/command.py +0 -0
  398. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/delete/__init__.py +0 -0
  399. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/get/__init__.py +0 -0
  400. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/get/command.py +0 -0
  401. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/list/__init__.py +0 -0
  402. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/list/command.py +0 -0
  403. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/update/__init__.py +0 -0
  404. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tool_configs/update/command.py +0 -0
  405. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/__init__.py +0 -0
  406. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/get/__init__.py +0 -0
  407. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/get/command.py +0 -0
  408. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/list/__init__.py +0 -0
  409. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/tools/list/command.py +0 -0
  410. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/users/__init__.py +0 -0
  411. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/users/create/command.py +0 -0
  412. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/commands/whoami/__init__.py +0 -0
  413. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/__init__.py +0 -0
  414. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/auth_storage.py +0 -0
  415. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/client_factory.py +0 -0
  416. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/config.py +0 -0
  417. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/editor.py +0 -0
  418. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/field_extractor.py +0 -0
  419. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/file_content.py +0 -0
  420. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/filter_parser.py +0 -0
  421. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/formatters/__init__.py +0 -0
  422. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/formatting/__init__.py +0 -0
  423. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/formatting/fields.py +0 -0
  424. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/__init__.py +0 -0
  425. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/agent_picker.py +0 -0
  426. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/agent_tool_editor.py +0 -0
  427. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/agent_tools_manager.py +0 -0
  428. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/base_picker.py +0 -0
  429. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/components.py +0 -0
  430. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/json_schema_builder.py +0 -0
  431. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/model_picker.py +0 -0
  432. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/parsers.py +0 -0
  433. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/resolution_modal.py +0 -0
  434. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/schema_picker.py +0 -0
  435. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/tag_management_modal.py +0 -0
  436. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/tag_picker.py +0 -0
  437. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/template_picker.py +0 -0
  438. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/tool_config_picker.py +0 -0
  439. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/forms/tool_picker.py +0 -0
  440. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/help_json.py +0 -0
  441. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/help_markdown.py +0 -0
  442. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/injection/__init__.py +0 -0
  443. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/injection/parser.py +0 -0
  444. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/injection/resolver.py +0 -0
  445. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/kv_parser.py +0 -0
  446. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/local_storage.py +0 -0
  447. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/macro_parser.py +0 -0
  448. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/renderers/__init__.py +0 -0
  449. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/scope_utils.py +0 -0
  450. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/tui/__init__.py +0 -0
  451. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/tui/clipboard.py +0 -0
  452. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/tui/formatters.py +0 -0
  453. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/tui/preview.py +0 -0
  454. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/tui/selectable.py +0 -0
  455. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/validation/__init__.py +0 -0
  456. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/infrastructure/validation/tag_validation.py +0 -0
  457. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/__init__.py +0 -0
  458. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/app.py +0 -0
  459. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/app_store.py +0 -0
  460. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/__init__.py +0 -0
  461. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/__init__.py +0 -0
  462. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/base.py +0 -0
  463. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/create_session.py +0 -0
  464. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/load_session.py +0 -0
  465. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/regenerate.py +0 -0
  466. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/reload_session.py +0 -0
  467. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/send_message.py +0 -0
  468. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/commands/undo.py +0 -0
  469. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/editor.py +0 -0
  470. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/messages.py +0 -0
  471. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/pane.py +0 -0
  472. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/renderers/__init__.py +0 -0
  473. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/renderers/base.py +0 -0
  474. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/renderers/markdown.py +0 -0
  475. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/renderers/plain.py +0 -0
  476. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/screen.py +0 -0
  477. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/services/__init__.py +0 -0
  478. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/services/injection.py +0 -0
  479. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/services/name_generator.py +0 -0
  480. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/slash_commands.py +0 -0
  481. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/store.py +0 -0
  482. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/types.py +0 -0
  483. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/__init__.py +0 -0
  484. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/chat_header.py +0 -0
  485. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/chat_input.py +0 -0
  486. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/injection_popup.py +0 -0
  487. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/message_display.py +0 -0
  488. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/session_sidebar.py +0 -0
  489. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/chat/widgets/welcome_screen.py +0 -0
  490. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/__init__.py +0 -0
  491. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/agents.py +0 -0
  492. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/base.py +0 -0
  493. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/content.py +0 -0
  494. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/dashboard.py +0 -0
  495. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/models.py +0 -0
  496. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/nav_screen.py +0 -0
  497. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/schemas.py +0 -0
  498. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/templates.py +0 -0
  499. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/screens/tool_configs.py +0 -0
  500. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/__init__.py +0 -0
  501. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/app.tcss +0 -0
  502. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/browser.tcss +0 -0
  503. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/chat.tcss +0 -0
  504. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/dashboard.tcss +0 -0
  505. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/forms.tcss +0 -0
  506. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/styles/modals.tcss +0 -0
  507. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/__init__.py +0 -0
  508. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/agent_create_modal.py +0 -0
  509. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/agent_form_modal.py +0 -0
  510. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/agent_update_modal.py +0 -0
  511. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/base_form_modal.py +0 -0
  512. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/confirm_modal.py +0 -0
  513. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/help_modal.py +0 -0
  514. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/new_session_modal.py +0 -0
  515. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/schema_create_modal.py +0 -0
  516. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/schema_update_modal.py +0 -0
  517. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/status_footer.py +0 -0
  518. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/template_create_modal.py +0 -0
  519. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/template_update_modal.py +0 -0
  520. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/tool_config_create_modal.py +0 -0
  521. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/cli/tui/widgets/tool_config_update_modal.py +0 -0
  522. {alloy_runtime_cli-0.2.30 → alloy_runtime_cli-0.2.32}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alloy-runtime-cli
3
- Version: 0.2.30
3
+ Version: 0.2.32
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.30
20
- Requires-Dist: alloy-runtime-types==0.2.30
19
+ Requires-Dist: alloy-runtime-sdk==0.2.32
20
+ Requires-Dist: alloy-runtime-types==0.2.32
21
21
  Requires-Dist: trogon
22
22
 
23
23
  # alloy-runtime-cli
@@ -59,7 +59,6 @@ For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json`, `ALLOY_RU
59
59
 
60
60
  `alloy ping` is the authenticated connectivity check. It confirms who you are, which host you reached, and which server build answered the request.
61
61
 
62
- General command output also supports `--format toon` alongside `compact`, `json`, and `lines`.
63
62
  The CLI pins `toon-format` from the upstream GitHub source because the PyPI stub release is not usable yet.
64
63
 
65
64
  ## Configuration
@@ -37,7 +37,6 @@ For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json`, `ALLOY_RU
37
37
 
38
38
  `alloy ping` is the authenticated connectivity check. It confirms who you are, which host you reached, and which server build answered the request.
39
39
 
40
- General command output also supports `--format toon` alongside `compact`, `json`, and `lines`.
41
40
  The CLI pins `toon-format` from the upstream GitHub source because the PyPI stub release is not usable yet.
42
41
 
43
42
  ## Configuration
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alloy-runtime-cli
3
- Version: 0.2.30
3
+ Version: 0.2.32
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.30
20
- Requires-Dist: alloy-runtime-types==0.2.30
19
+ Requires-Dist: alloy-runtime-sdk==0.2.32
20
+ Requires-Dist: alloy-runtime-types==0.2.32
21
21
  Requires-Dist: trogon
22
22
 
23
23
  # alloy-runtime-cli
@@ -59,7 +59,6 @@ For session-wide help rendering, set `ALLOY_RUNTIME_HELP_FORMAT=json`, `ALLOY_RU
59
59
 
60
60
  `alloy ping` is the authenticated connectivity check. It confirms who you are, which host you reached, and which server build answered the request.
61
61
 
62
- General command output also supports `--format toon` alongside `compact`, `json`, and `lines`.
63
62
  The CLI pins `toon-format` from the upstream GitHub source because the PyPI stub release is not usable yet.
64
63
 
65
64
  ## Configuration
@@ -374,8 +374,6 @@ cli/infrastructure/formatters/__init__.py
374
374
  cli/infrastructure/formatters/base.py
375
375
  cli/infrastructure/formatters/compact_formatter.py
376
376
  cli/infrastructure/formatters/json_formatter.py
377
- cli/infrastructure/formatters/lines_formatter.py
378
- cli/infrastructure/formatters/toon_formatter.py
379
377
  cli/infrastructure/formatting/__init__.py
380
378
  cli/infrastructure/formatting/fields.py
381
379
  cli/infrastructure/forms/__init__.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.30
8
- alloy-runtime-types==0.2.30
7
+ alloy-runtime-sdk==0.2.32
8
+ alloy-runtime-types==0.2.32
9
9
  trogon
@@ -6,7 +6,9 @@ from cli.infrastructure.auth_storage import save_credentials
6
6
  from cli.infrastructure.command import async_command
7
7
  from cli.infrastructure.config import get_api_url
8
8
  from cli.infrastructure.console import Prompt
9
- from cli.infrastructure.output import print_info, print_success
9
+ from cli.infrastructure.error_display import display_usage_error
10
+ from cli.infrastructure.output import OutputService
11
+ from cli.infrastructure.spinner import spinner
10
12
  from alloy_runtime_sdk.api_client.client import ApiClient
11
13
  from alloy_runtime_types.dtos.auth import BootstrapAdminRequest
12
14
 
@@ -63,31 +65,38 @@ async def _execute_bootstrap(
63
65
  ) -> None:
64
66
  """Execute the bootstrap operation."""
65
67
  api_url = get_api_url()
68
+ output = OutputService.get()
66
69
 
67
70
  # Prompt for required fields if not provided
68
71
  if not email:
69
- email = Prompt.ask("[cyan]Admin email address[/cyan]")
72
+ email = Prompt.ask("Admin email address")
70
73
 
71
74
  if not name:
72
- name = Prompt.ask("[cyan]Admin name[/cyan]")
75
+ name = Prompt.ask("Admin name")
73
76
 
74
77
  if not token:
75
78
  token = Prompt.ask(
76
- "[cyan]Bootstrap token[/cyan] (from server's BOOTSTRAP_TOKEN env var)",
79
+ "Bootstrap token (from server's BOOTSTRAP_TOKEN env var)",
77
80
  password=True,
78
81
  )
79
82
 
80
83
  if not password:
81
84
  while True:
82
- password = Prompt.ask("[cyan]Password[/cyan] (min 8 chars)", password=True)
83
- confirm = Prompt.ask("[cyan]Confirm password[/cyan]", password=True)
85
+ password = Prompt.ask("Password (min 8 chars)", password=True)
86
+ confirm = Prompt.ask("Confirm password", password=True)
84
87
 
85
88
  if password != confirm:
86
- print_info("Passwords don't match. Please try again.")
89
+ display_usage_error(
90
+ "Passwords don't match. Please try again.",
91
+ command_path="alloy admin bootstrap",
92
+ )
87
93
  continue
88
94
 
89
95
  if len(password) < 8:
90
- print_info("Password must be at least 8 characters.")
96
+ display_usage_error(
97
+ "Password must be at least 8 characters.",
98
+ command_path="alloy admin bootstrap",
99
+ )
91
100
  continue
92
101
 
93
102
  break
@@ -101,20 +110,23 @@ async def _execute_bootstrap(
101
110
  bootstrap_token=token,
102
111
  )
103
112
 
104
- # Send request to server (no API key needed - bootstrapping fresh system)
105
- async with ApiClient(base_url=api_url, api_key="") as client:
106
- response = await client.bootstrap_admin(request)
113
+ async with spinner("Creating system administrator..."):
114
+ async with ApiClient(base_url=api_url, api_key="") as client:
115
+ response = await client.bootstrap_admin(request)
107
116
 
108
117
  # Save credentials
109
118
  save_credentials(api_url, response.api_key)
110
119
 
111
- # Show success
112
- print_success(f"System administrator created for {response.name}")
113
- print_info(f"Email: {response.email}")
114
- print_info(f"Organization ID: {response.organization_id}")
115
- print_info("API key saved to ~/.alloy-runtime/config")
116
- print_info("")
117
- print_info("You are now logged in as the system administrator.")
118
- print_info(
119
- "You can now run admin commands like: [cyan]alloy admin sync models[/cyan]"
120
+ output.result(
121
+ action="bootstrap",
122
+ resource="system_admin",
123
+ identifier=str(response.user_id),
124
+ name=response.email,
125
+ extra_fields={
126
+ "Name": response.name,
127
+ "Organization": response.organization_name,
128
+ "Organization ID": str(response.organization_id),
129
+ "Credentials Saved": "~/.alloy-runtime/config",
130
+ "Next Step": "alloy admin sync models",
131
+ },
120
132
  )
@@ -12,7 +12,12 @@ def present_credential_create_success(credential: SystemCredentialResponse) -> N
12
12
  credential: Created credential data from server
13
13
  """
14
14
  output = OutputService.get()
15
- output.success(f"Created system credential: {credential.name}")
15
+ output.result(
16
+ action="create",
17
+ resource="system_credential",
18
+ identifier=str(credential.id),
19
+ name=credential.name,
20
+ )
16
21
  output.entity(
17
22
  credential,
18
23
  "System Credential Details",
@@ -19,7 +19,12 @@ def present_grant_success(grant: GrantSystemCredentialResponse) -> None:
19
19
  else:
20
20
  target = f"user {grant.user_id}"
21
21
 
22
- output.success(f"Granted system credential access to {target}")
22
+ output.result(
23
+ action="grant",
24
+ resource="system_credential_access",
25
+ identifier=str(grant.id),
26
+ name=target,
27
+ )
23
28
  output.entity(
24
29
  grant, "System Credential Grant Details", GRANT_FIELDS, raw_payload=grant
25
30
  )
@@ -23,7 +23,12 @@ def present_agent_create_success(response: CreateAgentResponse) -> None:
23
23
  response: Agent creation response from server
24
24
  """
25
25
  output = OutputService.get()
26
- output.success("Agent created successfully")
26
+ output.result(
27
+ action="create",
28
+ resource="agent",
29
+ identifier=str(response.id),
30
+ name=response.name,
31
+ )
27
32
  system_prompt_id = (
28
33
  response.system_instruction_template_id
29
34
  or response.system_instruction_version_id
@@ -36,7 +36,7 @@ async def _execute_delete(agent_identifier: str, skip_confirm: bool) -> None:
36
36
  """Execute delete agent operation."""
37
37
  if not skip_confirm:
38
38
  confirmed = Confirm.ask(
39
- f"[yellow]Delete agent '{agent_identifier}'?[/yellow] This cannot be undone"
39
+ f"Delete agent '{agent_identifier}'? This cannot be undone"
40
40
  )
41
41
  if not confirmed:
42
42
  raise typer.Abort()
@@ -13,4 +13,9 @@ def present_delete_result(response: DeleteAgentResponse) -> None:
13
13
  output = OutputService.get()
14
14
  deleted = response.deleted_agent
15
15
 
16
- output.success(f"Agent '{deleted.name}' deleted successfully")
16
+ output.result(
17
+ action="delete",
18
+ resource="agent",
19
+ identifier=str(deleted.id),
20
+ name=deleted.name,
21
+ )
@@ -0,0 +1,35 @@
1
+ """Presenter for agents get command output."""
2
+
3
+ from alloy_runtime_types.dtos.agents import GetAgentResponse
4
+
5
+ from cli.infrastructure.output import OutputService
6
+ from cli.infrastructure.renderers.entity_renderer import FieldConfig
7
+
8
+
9
+ def _format_configured_count(values: list[object]) -> str:
10
+ return f"{len(values)} configured"
11
+
12
+
13
+ def _format_tags(response: GetAgentResponse) -> str:
14
+ if not response.tags:
15
+ return "[]"
16
+ return ", ".join(tag.tag_path for tag in response.tags)
17
+
18
+
19
+ def present_agent_details(response: GetAgentResponse) -> None:
20
+ output = OutputService.get()
21
+ fields = [
22
+ FieldConfig("id", "ID", str),
23
+ FieldConfig("name", "Name"),
24
+ FieldConfig("description", "Description"),
25
+ FieldConfig("models", "Models", _format_configured_count),
26
+ FieldConfig("tools", "Tools", _format_configured_count),
27
+ FieldConfig("id", "Tags", lambda _: _format_tags(response)),
28
+ ]
29
+
30
+ output.entity(
31
+ response,
32
+ f"Agent: {response.name}",
33
+ fields,
34
+ raw_payload=response,
35
+ )
@@ -0,0 +1,63 @@
1
+ """Presenter for agents list command output."""
2
+
3
+ from datetime import datetime
4
+
5
+ from alloy_runtime_types.dtos.agents import ListAgentsResponse
6
+
7
+ from cli.infrastructure.output import OutputService
8
+ from cli.infrastructure.renderers.list_renderer import ColumnConfig
9
+
10
+
11
+ def _format_created_at(value: datetime | None) -> str:
12
+ if value is None:
13
+ return "(null)"
14
+ return value.strftime("%Y-%m-%d")
15
+
16
+
17
+ def _format_model_count(value: int | None) -> str:
18
+ if value is None:
19
+ return "(null)"
20
+ suffix = "model" if value == 1 else "models"
21
+ return f"{value} {suffix}"
22
+
23
+
24
+ def _format_description(value: str | None) -> str:
25
+ if value is None:
26
+ return "(null)"
27
+ return value
28
+
29
+
30
+ def present_agents_list(response: ListAgentsResponse) -> None:
31
+ output = OutputService.get()
32
+ columns = [
33
+ ColumnConfig(
34
+ source_field="name",
35
+ header_label="Name",
36
+ ),
37
+ ColumnConfig(
38
+ source_field="id",
39
+ header_label="ID",
40
+ ),
41
+ ColumnConfig(
42
+ source_field="model_count",
43
+ header_label="Models",
44
+ formatter=_format_model_count,
45
+ ),
46
+ ColumnConfig(
47
+ source_field="created_at",
48
+ header_label="Created",
49
+ formatter=_format_created_at,
50
+ ),
51
+ ColumnConfig(
52
+ source_field="description",
53
+ header_label="Description",
54
+ formatter=_format_description,
55
+ ),
56
+ ]
57
+
58
+ output.table(
59
+ items=response.agents, # type: ignore[arg-type]
60
+ title="Agents",
61
+ columns=columns,
62
+ raw_payload=response,
63
+ )
@@ -23,7 +23,12 @@ def present_agent_update_success(response: UpdateAgentResponse) -> None:
23
23
  response: Agent update response from server
24
24
  """
25
25
  output = OutputService.get()
26
- output.success("Agent updated successfully")
26
+ output.result(
27
+ action="update",
28
+ resource="agent",
29
+ identifier=str(response.id),
30
+ name=response.name,
31
+ )
27
32
  system_prompt_id = (
28
33
  response.system_instruction_template_id
29
34
  or response.system_instruction_version_id
@@ -10,8 +10,14 @@ from alloy_runtime_types.dtos.api_keys import CreateApiKeyResponse
10
10
 
11
11
  def present_api_key_create_success(response: CreateApiKeyResponse) -> None:
12
12
  output = OutputService.get()
13
- output.success(
14
- "API key created successfully. Save the plaintext key now; it will not be shown again."
13
+ output.result(
14
+ action="create",
15
+ resource="api_key",
16
+ identifier=str(response.id),
17
+ name=response.prefix,
18
+ extra_fields={
19
+ "Note": "Save the plaintext key now; it will not be shown again.",
20
+ },
15
21
  )
16
22
 
17
23
  fields = [
@@ -13,6 +13,8 @@ from alloy_runtime_types.dtos.audio import (
13
13
  )
14
14
 
15
15
  from cli.infrastructure.command import async_command, authenticated_client
16
+ from cli.infrastructure.output import OutputService
17
+ from cli.commands.audio.transcribe.presenter import present_transcription
16
18
 
17
19
  MAX_FILE_SIZE_BYTES = 25 * 1024 * 1024 # 25 MB
18
20
  DEFAULT_POLL_TIMEOUT_SECONDS = 300.0
@@ -233,10 +235,14 @@ async def _execute_transcribe(
233
235
  str(submit_response.transcription_id),
234
236
  format="text",
235
237
  )
236
- print(output)
238
+ present_transcription(cast(str, output))
237
239
  else:
238
- print(
239
- f"Transcription failed: {status.error_message}",
240
- file=sys.stderr,
240
+ OutputService.get().result(
241
+ action="transcribe",
242
+ resource="audio",
243
+ status="failed",
244
+ identifier=str(submit_response.transcription_id),
245
+ name=filename or audio_url,
246
+ extra_fields={"Reason": status.error_message},
241
247
  )
242
- sys.exit(1)
248
+ raise typer.Exit(code=1)
@@ -0,0 +1,22 @@
1
+ from pydantic import BaseModel
2
+
3
+ from cli.infrastructure.output import OutputFormat, OutputService
4
+ from cli.infrastructure.renderers.entity_renderer import FieldConfig
5
+
6
+
7
+ class _TranscriptionOutput(BaseModel):
8
+ transcription: str
9
+
10
+
11
+ def present_transcription(text: str) -> None:
12
+ output = OutputService.get()
13
+
14
+ if getattr(output, "format", OutputFormat.COMPACT) == OutputFormat.JSON:
15
+ output.raw({"transcription": text})
16
+ return
17
+
18
+ output.entity(
19
+ _TranscriptionOutput(transcription=text),
20
+ "Transcription",
21
+ [FieldConfig("transcription", "Transcription")],
22
+ )
@@ -5,9 +5,10 @@ import typer
5
5
  from cli.infrastructure.auth_storage import save_credentials
6
6
  from cli.infrastructure.command import async_command
7
7
  from cli.infrastructure.config import get_api_url
8
- from cli.infrastructure.console import Confirm, Prompt, get_console
9
- from cli.infrastructure.output import print_info, print_success
8
+ from cli.infrastructure.console import Confirm, Prompt, Text
9
+ from cli.infrastructure.output import OutputService
10
10
  from cli.infrastructure.provider_setup import prompt_provider_credentials
11
+ from cli.infrastructure.spinner import spinner
11
12
  from alloy_runtime_sdk.api_client.client import ApiClient
12
13
  from alloy_runtime_types.dtos.auth import LoginRequest
13
14
 
@@ -41,40 +42,49 @@ async def _execute_login(
41
42
  email: Optional email (will prompt if not provided)
42
43
  password: Optional password (will prompt if not provided)
43
44
  """
44
- console = get_console()
45
+ output = OutputService.get()
45
46
  api_url = get_api_url()
46
47
 
47
48
  # Prompt for credentials if not provided
48
49
  if not email:
49
- email = Prompt.ask("[cyan]Email[/cyan]")
50
+ email = Prompt.ask(Text("Email"))
50
51
 
51
52
  if not password:
52
- password = Prompt.ask("[cyan]Password[/cyan]", password=True)
53
+ password = Prompt.ask(Text("Password"), password=True)
53
54
 
54
- console.print("\n[blue]Authenticating...[/blue]")
55
-
56
- # Create unauthenticated client
57
- async with ApiClient(base_url=api_url, api_key="") as client:
58
- response = await client.login(LoginRequest(email=email, password=password))
55
+ async with spinner("Authenticating..."):
56
+ async with ApiClient(base_url=api_url, api_key="") as client:
57
+ response = await client.login(LoginRequest(email=email, password=password))
59
58
 
60
59
  # Save credentials
61
60
  save_credentials(api_url, response.api_key)
62
61
 
63
- print_success(f"Logged in as {response.name} ({response.email})")
64
- print_info("API key saved to ~/.alloy-runtime/config")
65
- print_info(f"Organization: {response.organization_id}")
62
+ output.result(
63
+ action="login",
64
+ resource="session",
65
+ identifier=str(response.user_id),
66
+ name=response.email,
67
+ extra_fields={
68
+ "Name": response.name,
69
+ "Organization ID": str(response.organization_id),
70
+ "Credentials Saved": "~/.alloy-runtime/config",
71
+ },
72
+ )
66
73
 
67
- # Prompt for provider credentials if new user
68
74
  if response.is_new_user:
69
- console.print("\n[yellow]Welcome! This is your first login.[/yellow]")
70
75
  if Confirm.ask(
71
- "Would you like to set up AI provider credentials now?", default=True
76
+ Text("Would you like to set up AI provider credentials now?"),
77
+ default=True,
72
78
  ):
73
79
  await prompt_provider_credentials(api_url, response.api_key)
74
80
  else:
75
- console.print(
76
- "\n[dim]You can set up provider credentials later with:[/dim]"
77
- )
78
- console.print(
79
- "[dim] alloy credentials update <credential-id> --value <api-key>[/dim]"
81
+ output.result(
82
+ action="setup",
83
+ resource="provider_credentials",
84
+ status="pending",
85
+ identifier=None,
86
+ name=None,
87
+ extra_fields={
88
+ "Next Step": "alloy credentials update <credential-id> --value <api-key>"
89
+ },
80
90
  )
@@ -5,9 +5,11 @@ import typer
5
5
  from cli.infrastructure.auth_storage import save_credentials
6
6
  from cli.infrastructure.command import async_command
7
7
  from cli.infrastructure.config import get_api_url
8
- from cli.infrastructure.console import Confirm, Prompt, get_console
9
- from cli.infrastructure.output import print_info, print_success
8
+ from cli.infrastructure.console import Confirm, Prompt, Text
9
+ from cli.infrastructure.error_display import display_usage_error
10
+ from cli.infrastructure.output import OutputService
10
11
  from cli.infrastructure.provider_setup import prompt_provider_credentials
12
+ from cli.infrastructure.spinner import spinner
11
13
  from alloy_runtime_sdk.api_client.client import ApiClient
12
14
  from alloy_runtime_types.dtos.auth import SignupRequest
13
15
 
@@ -51,65 +53,73 @@ async def _execute_signup(
51
53
  name: Optional name (will prompt if not provided)
52
54
  org_name: Optional organization name
53
55
  """
54
- console = get_console()
56
+ output = OutputService.get()
55
57
  api_url = get_api_url()
56
58
 
57
59
  # Prompt for required fields if not provided
58
60
  if not email:
59
- email = Prompt.ask("[cyan]Email address[/cyan]")
61
+ email = Prompt.ask(Text("Email address"))
60
62
 
61
63
  if not name:
62
- name = Prompt.ask("[cyan]Your name[/cyan]")
64
+ name = Prompt.ask(Text("Your name"))
63
65
 
64
66
  if not password:
65
67
  while True:
66
- password = Prompt.ask("[cyan]Password[/cyan] (min 8 chars)", password=True)
67
- confirm = Prompt.ask("[cyan]Confirm password[/cyan]", password=True)
68
+ password = Prompt.ask(Text("Password (min 8 chars)"), password=True)
69
+ confirm = Prompt.ask(Text("Confirm password"), password=True)
68
70
 
69
71
  if password != confirm:
70
- console.print("[red]Passwords do not match. Please try again.[/red]\n")
72
+ display_usage_error(
73
+ "Passwords do not match. Please try again.",
74
+ command_path="alloy signup",
75
+ )
71
76
  continue
72
77
 
73
78
  if password and len(password) < 8:
74
- console.print("[red]Password must be at least 8 characters.[/red]\n")
79
+ display_usage_error(
80
+ "Password must be at least 8 characters.",
81
+ command_path="alloy signup",
82
+ )
75
83
  continue
76
84
 
77
85
  break
78
86
 
79
- console.print("\n[blue]Creating your account...[/blue]")
80
-
81
- # Create unauthenticated client
82
- async with ApiClient(base_url=api_url, api_key="") as client:
83
- response = await client.signup(
84
- SignupRequest(
85
- email=email,
86
- password=password,
87
- name=name,
88
- organization_name=org_name,
87
+ async with spinner("Creating your account..."):
88
+ async with ApiClient(base_url=api_url, api_key="") as client:
89
+ response = await client.signup(
90
+ SignupRequest(
91
+ email=email,
92
+ password=password,
93
+ name=name,
94
+ organization_name=org_name,
95
+ )
89
96
  )
90
- )
91
97
 
92
98
  # Save credentials
93
99
  save_credentials(api_url, response.api_key)
94
100
 
95
- console.print()
96
- print_success(f"Account created for {response.name}")
97
- print_info(f"Email: {response.email}")
98
- print_info(f"Organization ID: {response.organization_id}")
99
- print_info("API key saved to ~/.alloy-runtime/config")
100
-
101
- # Prompt for provider setup
102
- console.print(
103
- "\n[bold yellow]Let's set up your AI provider credentials[/bold yellow]"
104
- )
105
- console.print(
106
- "[dim]You'll need API keys from providers like OpenAI, Anthropic, or Google.[/dim]\n"
101
+ output.result(
102
+ action="create",
103
+ resource="account",
104
+ identifier=str(response.user_id),
105
+ name=response.email,
106
+ extra_fields={
107
+ "Name": response.name,
108
+ "Organization ID": str(response.organization_id),
109
+ "Credentials Saved": "~/.alloy-runtime/config",
110
+ },
107
111
  )
108
112
 
109
- if Confirm.ask("Set up provider credentials now?", default=True):
113
+ if Confirm.ask(Text("Set up provider credentials now?"), default=True):
110
114
  await prompt_provider_credentials(api_url, response.api_key)
111
115
  else:
112
- console.print("\n[dim]You can add provider credentials later with:[/dim]")
113
- console.print(
114
- "[dim] alloy credentials update <credential-id> --value <api-key>[/dim]"
116
+ output.result(
117
+ action="setup",
118
+ resource="provider_credentials",
119
+ status="pending",
120
+ identifier=None,
121
+ name=None,
122
+ extra_fields={
123
+ "Next Step": "alloy credentials update <credential-id> --value <api-key>"
124
+ },
115
125
  )
@@ -19,10 +19,6 @@ def present_billing_costs_by_agent(entries: list[ProjectCostByAgent]) -> None:
19
19
  """Present billing project cost breakdown by agent."""
20
20
  output = OutputService.get()
21
21
 
22
- if not entries:
23
- output.info("No cost data by agent found")
24
- return
25
-
26
22
  columns = [
27
23
  ColumnConfig(
28
24
  source_field="agent_name",
@@ -78,4 +74,5 @@ def present_billing_costs_by_agent(entries: list[ProjectCostByAgent]) -> None:
78
74
  items=entries, # type: ignore[arg-type]
79
75
  title=f"Costs by Agent ({len(entries)} agents)",
80
76
  columns=columns,
77
+ total_count=len(entries),
81
78
  )