llama-stack-client 0.4.5__tar.gz → 0.4.6__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 (403) hide show
  1. llama_stack_client-0.4.6/.release-please-manifest.json +3 -0
  2. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/CHANGELOG.md +0 -26
  3. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/PKG-INFO +3 -4
  4. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/README.md +2 -3
  5. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/api.md +18 -18
  6. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/pyproject.toml +1 -1
  7. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/requirements-dev.lock +14 -12
  8. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_base_client.py +13 -139
  9. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_compat.py +3 -3
  10. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_models.py +1 -16
  11. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_types.py +0 -9
  12. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_version.py +1 -1
  13. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/llama_stack_client.py +2 -2
  14. llama_stack_client-0.4.6/src/llama_stack_client/lib/cli/vector_dbs/__init__.py +9 -0
  15. llama_stack_client-0.4.6/src/llama_stack_client/lib/cli/vector_dbs/vector_dbs.py +116 -0
  16. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/eval/eval.py +8 -40
  17. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/inference.py +2 -18
  18. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/post_training/job.py +102 -10
  19. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/post_training/post_training.py +10 -42
  20. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/beta/datasets.py +10 -48
  21. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/chat/completions.py +22 -330
  22. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/completions.py +12 -216
  23. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/conversations/conversations.py +16 -24
  24. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/conversations/items.py +26 -46
  25. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/embeddings.py +13 -30
  26. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/files.py +52 -40
  27. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/models/models.py +12 -24
  28. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/moderations.py +6 -14
  29. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/prompts/prompts.py +24 -52
  30. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/prompts/versions.py +4 -4
  31. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/responses/input_items.py +4 -52
  32. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/responses/responses.py +15 -303
  33. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/safety.py +11 -11
  34. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/scoring.py +0 -20
  35. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/scoring_functions.py +2 -28
  36. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/shields.py +0 -24
  37. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/vector_io.py +4 -24
  38. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/vector_stores/file_batches.py +14 -56
  39. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/vector_stores/files.py +14 -94
  40. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/vector_stores/vector_stores.py +22 -108
  41. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/benchmark_config_param.py +3 -4
  42. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/eval_evaluate_rows_alpha_params.py +1 -3
  43. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/eval_evaluate_rows_params.py +1 -3
  44. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/eval_run_eval_alpha_params.py +1 -1
  45. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/eval_run_eval_params.py +1 -1
  46. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/evaluate_response.py +0 -2
  47. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/inference_rerank_params.py +7 -26
  48. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/inference_rerank_response.py +0 -5
  49. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/__init__.py +3 -0
  50. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training_preference_optimize_params.py +4 -8
  51. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training_supervised_fine_tune_params.py +4 -8
  52. llama_stack_client-0.4.6/src/llama_stack_client/types/beta/dataset_appendrows_params.py +18 -0
  53. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/dataset_iterrows_params.py +0 -2
  54. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat/completion_create_params.py +6 -82
  55. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat/completion_create_response.py +23 -77
  56. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat/completion_list_params.py +0 -3
  57. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat/completion_list_response.py +26 -130
  58. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat/completion_retrieve_response.py +26 -125
  59. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat_completion_chunk.py +22 -42
  60. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/completion_create_params.py +0 -19
  61. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/completion_create_response.py +34 -27
  62. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversation_create_params.py +9 -9
  63. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversation_update_params.py +0 -1
  64. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversations/item_create_params.py +9 -11
  65. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversations/item_create_response.py +9 -7
  66. llama_stack_client-0.4.6/src/llama_stack_client/types/conversations/item_get_response.py +255 -0
  67. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversations/item_list_response.py +9 -7
  68. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/create_embeddings_response.py +2 -13
  69. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/create_response.py +2 -14
  70. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/delete_file_response.py +0 -3
  71. llama_stack_client-0.4.6/src/llama_stack_client/types/embedding_create_params.py +28 -0
  72. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/file.py +1 -7
  73. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/file_create_params.py +14 -6
  74. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/file_list_params.py +0 -2
  75. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_files_response.py +0 -5
  76. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_models_response.py +0 -3
  77. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_scoring_functions_response.py +0 -3
  78. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_shields_response.py +0 -3
  79. llama_stack_client-0.4.6/src/llama_stack_client/types/model.py +35 -0
  80. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/model_register_params.py +0 -4
  81. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/moderation_create_params.py +0 -5
  82. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompt_create_params.py +0 -2
  83. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompt_retrieve_params.py +0 -1
  84. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompt_set_default_version_params.py +0 -1
  85. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompt_update_params.py +0 -4
  86. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/query_chunks_response.py +37 -40
  87. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/response_create_params.py +92 -201
  88. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/response_list_params.py +0 -3
  89. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/response_list_response.py +28 -98
  90. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/response_object.py +19 -91
  91. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/response_object_stream.py +45 -35
  92. llama_stack_client-0.4.6/src/llama_stack_client/types/responses/input_item_list_params.py +29 -0
  93. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/responses/input_item_list_response.py +9 -7
  94. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/safety_run_shield_params.py +6 -50
  95. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_function_register_params.py +1 -8
  96. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_score_batch_params.py +0 -3
  97. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_score_batch_response.py +0 -2
  98. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_score_params.py +0 -2
  99. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_score_response.py +0 -1
  100. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/safety_violation.py +1 -3
  101. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/sampling_params.py +6 -23
  102. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/scoring_result.py +0 -2
  103. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/system_message.py +1 -6
  104. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared_params/sampling_params.py +7 -24
  105. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared_params/system_message.py +1 -6
  106. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shield_register_params.py +0 -4
  107. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_io_insert_params.py +37 -43
  108. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_io_query_params.py +1 -3
  109. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_store_list_params.py +0 -4
  110. llama_stack_client-0.4.6/src/llama_stack_client/types/vector_store_search_params.py +39 -0
  111. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_store_search_response.py +4 -0
  112. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_store_update_params.py +0 -3
  113. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_batch_list_files_params.py +0 -6
  114. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_content_params.py +0 -3
  115. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_content_response.py +4 -0
  116. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_create_params.py +1 -3
  117. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_list_params.py +0 -5
  118. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_update_params.py +0 -2
  119. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/post_training/test_job.py +59 -19
  120. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/test_eval.py +64 -64
  121. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/test_inference.py +2 -2
  122. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/beta/test_datasets.py +10 -18
  123. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/chat/test_completions.py +20 -28
  124. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/responses/test_input_items.py +2 -2
  125. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_completions.py +20 -20
  126. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_embeddings.py +4 -4
  127. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_responses.py +8 -24
  128. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_safety.py +12 -6
  129. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_vector_io.py +6 -30
  130. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_vector_stores.py +0 -8
  131. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_client.py +2 -185
  132. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/uv.lock +158 -185
  133. llama_stack_client-0.4.5/.release-please-manifest.json +0 -3
  134. llama_stack_client-0.4.5/src/llama_stack_client/_utils/_json.py +0 -41
  135. llama_stack_client-0.4.5/src/llama_stack_client/lib/cli/vector_stores/__init__.py +0 -9
  136. llama_stack_client-0.4.5/src/llama_stack_client/lib/cli/vector_stores/vector_stores.py +0 -139
  137. llama_stack_client-0.4.5/src/llama_stack_client/types/beta/dataset_appendrows_params.py +0 -24
  138. llama_stack_client-0.4.5/src/llama_stack_client/types/conversations/item_get_response.py +0 -420
  139. llama_stack_client-0.4.5/src/llama_stack_client/types/embedding_create_params.py +0 -33
  140. llama_stack_client-0.4.5/src/llama_stack_client/types/model.py +0 -76
  141. llama_stack_client-0.4.5/src/llama_stack_client/types/responses/input_item_list_params.py +0 -46
  142. llama_stack_client-0.4.5/src/llama_stack_client/types/vector_store_search_params.py +0 -94
  143. llama_stack_client-0.4.5/tests/test_utils/test_json.py +0 -132
  144. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/.gitignore +0 -0
  145. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/CODE_OF_CONDUCT.md +0 -0
  146. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/CONTRIBUTING.md +0 -0
  147. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/LICENSE +0 -0
  148. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/SECURITY.md +0 -0
  149. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/bin/check-release-environment +0 -0
  150. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/bin/publish-pypi +0 -0
  151. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/examples/.keep +0 -0
  152. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/examples/README.md +0 -0
  153. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/examples/interactive_agent_cli.py +0 -0
  154. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/release-please-config.json +0 -0
  155. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/__init__.py +0 -0
  156. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_client.py +0 -0
  157. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_constants.py +0 -0
  158. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_exceptions.py +0 -0
  159. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_files.py +0 -0
  160. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_qs.py +0 -0
  161. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_resource.py +0 -0
  162. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_response.py +0 -0
  163. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_streaming.py +0 -0
  164. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/__init__.py +0 -0
  165. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_compat.py +0 -0
  166. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_datetime_parse.py +0 -0
  167. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_logs.py +0 -0
  168. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_proxy.py +0 -0
  169. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_reflection.py +0 -0
  170. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_resources_proxy.py +0 -0
  171. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_streams.py +0 -0
  172. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_sync.py +0 -0
  173. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_transform.py +0 -0
  174. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_typing.py +0 -0
  175. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_utils/_utils.py +0 -0
  176. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/_wrappers.py +0 -0
  177. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/.keep +0 -0
  178. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/__init__.py +0 -0
  179. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/__init__.py +0 -0
  180. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/agent.py +0 -0
  181. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/client_tool.py +0 -0
  182. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/event_logger.py +0 -0
  183. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/event_synthesizer.py +0 -0
  184. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/react/__init__.py +0 -0
  185. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/react/agent.py +0 -0
  186. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/react/prompts.py +0 -0
  187. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/react/tool_parser.py +0 -0
  188. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/tool_parser.py +0 -0
  189. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/turn_events.py +0 -0
  190. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/agents/types.py +0 -0
  191. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/__init__.py +0 -0
  192. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/common/__init__.py +0 -0
  193. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/common/utils.py +0 -0
  194. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/configure.py +0 -0
  195. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/constants.py +0 -0
  196. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/datasets/__init__.py +0 -0
  197. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/datasets/datasets.py +0 -0
  198. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/datasets/list.py +0 -0
  199. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/datasets/register.py +0 -0
  200. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/datasets/unregister.py +0 -0
  201. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval/__init__.py +0 -0
  202. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval/eval.py +0 -0
  203. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval/run_benchmark.py +0 -0
  204. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval/run_scoring.py +0 -0
  205. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval/utils.py +0 -0
  206. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval_tasks/__init__.py +0 -0
  207. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval_tasks/eval_tasks.py +0 -0
  208. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/eval_tasks/list.py +0 -0
  209. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/inference/__init__.py +0 -0
  210. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/inference/inference.py +0 -0
  211. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/inspect/__init__.py +0 -0
  212. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/inspect/inspect.py +0 -0
  213. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/inspect/version.py +0 -0
  214. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/models/__init__.py +0 -0
  215. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/models/models.py +0 -0
  216. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/post_training/__init__.py +0 -0
  217. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/post_training/post_training.py +0 -0
  218. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/providers/__init__.py +0 -0
  219. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/providers/inspect.py +0 -0
  220. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/providers/list.py +0 -0
  221. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/providers/providers.py +0 -0
  222. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/scoring_functions/__init__.py +0 -0
  223. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/scoring_functions/list.py +0 -0
  224. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/scoring_functions/scoring_functions.py +0 -0
  225. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/shields/__init__.py +0 -0
  226. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/shields/shields.py +0 -0
  227. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/toolgroups/__init__.py +0 -0
  228. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/cli/toolgroups/toolgroups.py +0 -0
  229. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/inference/__init__.py +0 -0
  230. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/inference/event_logger.py +0 -0
  231. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/inference/utils.py +0 -0
  232. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/inline/inline.py +0 -0
  233. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/stream_printer.py +0 -0
  234. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/lib/tools/mcp_oauth.py +0 -0
  235. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/pagination.py +0 -0
  236. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/py.typed +0 -0
  237. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/__init__.py +0 -0
  238. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/__init__.py +6 -6
  239. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/admin.py +0 -0
  240. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/alpha.py +24 -24
  241. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/benchmarks.py +0 -0
  242. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/eval/__init__.py +0 -0
  243. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/eval/jobs.py +0 -0
  244. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/alpha/post_training/__init__.py +0 -0
  245. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/batches.py +0 -0
  246. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/beta/__init__.py +0 -0
  247. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/beta/beta.py +0 -0
  248. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/chat/__init__.py +0 -0
  249. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/chat/chat.py +0 -0
  250. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/conversations/__init__.py +0 -0
  251. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/inspect.py +0 -0
  252. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/models/__init__.py +0 -0
  253. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/models/openai.py +0 -0
  254. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/prompts/__init__.py +0 -0
  255. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/providers.py +0 -0
  256. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/responses/__init__.py +0 -0
  257. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/routes.py +0 -0
  258. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/tool_runtime.py +0 -0
  259. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/toolgroups.py +0 -0
  260. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/tools.py +0 -0
  261. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/resources/vector_stores/__init__.py +0 -0
  262. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/__init__.py +0 -0
  263. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/__init__.py +0 -0
  264. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/admin_list_routes_params.py +0 -0
  265. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/benchmark.py +0 -0
  266. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/benchmark_list_response.py +0 -0
  267. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/benchmark_register_params.py +0 -0
  268. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/eval/__init__.py +0 -0
  269. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/job.py +0 -0
  270. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/list_benchmarks_response.py +0 -0
  271. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/list_post_training_jobs_response.py +0 -0
  272. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/job_artifacts_params.py +0 -0
  273. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/job_artifacts_response.py +0 -0
  274. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/job_cancel_params.py +0 -0
  275. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/job_list_response.py +0 -0
  276. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/job_status_params.py +0 -0
  277. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training/job_status_response.py +0 -0
  278. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/alpha/post_training_job.py +0 -0
  279. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/batch_cancel_response.py +0 -0
  280. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/batch_create_params.py +0 -0
  281. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/batch_create_response.py +0 -0
  282. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/batch_list_params.py +0 -0
  283. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/batch_list_response.py +0 -0
  284. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/batch_retrieve_response.py +0 -0
  285. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/__init__.py +0 -0
  286. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/dataset_iterrows_response.py +0 -0
  287. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/dataset_list_response.py +0 -0
  288. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/dataset_register_params.py +0 -0
  289. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/dataset_register_response.py +0 -0
  290. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/dataset_retrieve_response.py +0 -0
  291. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/beta/list_datasets_response.py +0 -0
  292. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/chat/__init__.py +0 -0
  293. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversation_delete_response.py +0 -0
  294. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversation_object.py +0 -0
  295. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversations/__init__.py +0 -0
  296. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversations/item_delete_response.py +0 -0
  297. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/conversations/item_list_params.py +0 -0
  298. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_prompts_response.py +0 -0
  299. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_tool_groups_response.py +0 -0
  300. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/list_vector_stores_response.py +0 -0
  301. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/model_list_response.py +0 -0
  302. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/model_register_response.py +0 -0
  303. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/model_retrieve_response.py +0 -0
  304. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/models/__init__.py +0 -0
  305. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompt.py +0 -0
  306. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompt_list_response.py +0 -0
  307. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/prompts/__init__.py +0 -0
  308. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/provider_list_response.py +0 -0
  309. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/response_delete_response.py +0 -0
  310. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/responses/__init__.py +0 -0
  311. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/route_list_params.py +0 -0
  312. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/route_list_response.py +0 -0
  313. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/run_shield_response.py +0 -0
  314. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_fn.py +0 -0
  315. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_fn_params.py +0 -0
  316. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_fn_params_param.py +0 -0
  317. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/scoring_function_list_response.py +0 -0
  318. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/__init__.py +0 -0
  319. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/health_info.py +0 -0
  320. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/interleaved_content.py +0 -0
  321. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/interleaved_content_item.py +0 -0
  322. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/list_providers_response.py +0 -0
  323. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/list_routes_response.py +0 -0
  324. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/param_type.py +0 -0
  325. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/provider_info.py +0 -0
  326. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/route_info.py +0 -0
  327. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared/version_info.py +0 -0
  328. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shared_params/__init__.py +0 -0
  329. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shield.py +0 -0
  330. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/shield_list_response.py +0 -0
  331. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_def.py +0 -0
  332. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_group.py +0 -0
  333. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_invocation_result.py +0 -0
  334. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_list_params.py +0 -0
  335. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_list_response.py +0 -0
  336. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_runtime_invoke_tool_params.py +0 -0
  337. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_runtime_list_tools_params.py +0 -0
  338. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/tool_runtime_list_tools_response.py +0 -0
  339. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/toolgroup_list_response.py +0 -0
  340. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/toolgroup_register_params.py +0 -0
  341. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_store.py +0 -0
  342. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_store_create_params.py +0 -0
  343. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_store_delete_response.py +0 -0
  344. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/__init__.py +0 -0
  345. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_batch_create_params.py +0 -0
  346. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/file_delete_response.py +0 -0
  347. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/list_vector_store_files_in_batch_response.py +0 -0
  348. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/vector_store_file.py +0 -0
  349. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/src/llama_stack_client/types/vector_stores/vector_store_file_batches.py +0 -0
  350. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/__init__.py +0 -0
  351. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/__init__.py +0 -0
  352. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/__init__.py +0 -0
  353. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/eval/__init__.py +0 -0
  354. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/eval/test_jobs.py +0 -0
  355. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/post_training/__init__.py +0 -0
  356. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/test_admin.py +0 -0
  357. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/test_benchmarks.py +0 -0
  358. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/alpha/test_post_training.py +0 -0
  359. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/beta/__init__.py +0 -0
  360. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/chat/__init__.py +0 -0
  361. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/conversations/__init__.py +0 -0
  362. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/conversations/test_items.py +0 -0
  363. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/models/__init__.py +0 -0
  364. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/models/test_openai.py +0 -0
  365. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/prompts/__init__.py +0 -0
  366. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/prompts/test_versions.py +0 -0
  367. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/responses/__init__.py +0 -0
  368. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_batches.py +0 -0
  369. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_conversations.py +0 -0
  370. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_files.py +0 -0
  371. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_inspect.py +0 -0
  372. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_models.py +0 -0
  373. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_moderations.py +0 -0
  374. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_prompts.py +0 -0
  375. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_providers.py +0 -0
  376. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_routes.py +0 -0
  377. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_scoring.py +0 -0
  378. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_scoring_functions.py +0 -0
  379. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_shields.py +0 -0
  380. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_tool_runtime.py +0 -0
  381. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_toolgroups.py +0 -0
  382. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/test_tools.py +0 -0
  383. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/vector_stores/__init__.py +0 -0
  384. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/vector_stores/test_file_batches.py +0 -0
  385. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/api_resources/vector_stores/test_files.py +0 -0
  386. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/conftest.py +0 -0
  387. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/integration/test_agent_responses_e2e.py +0 -0
  388. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/integration/test_agent_turn_step_events.py +0 -0
  389. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/lib/agents/test_agent_responses.py +0 -0
  390. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/sample_file.txt +0 -0
  391. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_deepcopy.py +0 -0
  392. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_extract_files.py +0 -0
  393. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_files.py +0 -0
  394. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_models.py +0 -0
  395. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_qs.py +0 -0
  396. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_required_args.py +0 -0
  397. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_response.py +0 -0
  398. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_streaming.py +0 -0
  399. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_transform.py +0 -0
  400. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_utils/test_datetime_parse.py +0 -0
  401. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_utils/test_proxy.py +0 -0
  402. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/test_utils/test_typing.py +0 -0
  403. {llama_stack_client-0.4.5 → llama_stack_client-0.4.6}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.4.0-alpha.15"
3
+ }
@@ -1,31 +1,5 @@
1
1
  # Changelog
2
2
 
3
- ## 0.5.0-alpha.2 (2026-02-05)
4
-
5
- Full Changelog: [v0.5.0-alpha.1...v0.5.0-alpha.2](https://github.com/llamastack/llama-stack-client-python/compare/v0.5.0-alpha.1...v0.5.0-alpha.2)
6
-
7
- ### Features
8
-
9
- * Adds support for the `safety_identifier` parameter ([f20696b](https://github.com/llamastack/llama-stack-client-python/commit/f20696b6c1855c40e191980812ba3fd70b1f3577))
10
-
11
- ## 0.5.0-alpha.1 (2026-02-04)
12
-
13
- Full Changelog: [v0.4.0-alpha.15...v0.5.0-alpha.1](https://github.com/llamastack/llama-stack-client-python/compare/v0.4.0-alpha.15...v0.5.0-alpha.1)
14
-
15
- ### Features
16
-
17
- * **client:** add custom JSON encoder for extended type support ([ab99ad0](https://github.com/llamastack/llama-stack-client-python/commit/ab99ad06208995a0c6b8424d03023f6045c57cab))
18
- * **client:** add support for binary request streaming ([d17dede](https://github.com/llamastack/llama-stack-client-python/commit/d17dede18fa45e3433bea4923d4b280331257975))
19
-
20
-
21
- ### Chores
22
-
23
- * **ci:** upgrade `actions/github-script` ([b6d410f](https://github.com/llamastack/llama-stack-client-python/commit/b6d410fbaa61ade006142c755b8abff2639aa461))
24
- * **internal:** codegen related update ([a176b2e](https://github.com/llamastack/llama-stack-client-python/commit/a176b2e9501b6855ba31f420ea23f1e94170e7aa))
25
- * **internal:** codegen related update ([4cf153d](https://github.com/llamastack/llama-stack-client-python/commit/4cf153ddfbe68ce5966ec1d199e3c6fb69c1abe0))
26
- * **internal:** update `actions/checkout` version ([527e428](https://github.com/llamastack/llama-stack-client-python/commit/527e4289cbd3f696cfd3f4b288784683819317be))
27
- * **internal:** version bump ([580d0ff](https://github.com/llamastack/llama-stack-client-python/commit/580d0ffc4b0540294cf42bd28d6dd3254586133f))
28
-
29
3
  ## 0.4.0-alpha.15 (2026-01-06)
30
4
 
31
5
  Full Changelog: [v0.4.0-alpha.14...v0.4.0-alpha.15](https://github.com/llamastack/llama-stack-client-python/compare/v0.4.0-alpha.14...v0.4.0-alpha.15)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llama_stack_client
3
- Version: 0.4.5
3
+ Version: 0.4.6
4
4
  Summary: The official Python library for the llama-stack-client API
5
5
  Project-URL: Homepage, https://github.com/llamastack/llama-stack-client-python
6
6
  Project-URL: Repository, https://github.com/llamastack/llama-stack-client-python
@@ -61,8 +61,7 @@ You can find more example apps with client SDKs to talk with the Llama Stack ser
61
61
  ## Installation
62
62
 
63
63
  ```sh
64
- # install from PyPI
65
- pip install '--pre llama_stack_client'
64
+ pip install llama-stack-client
66
65
  ```
67
66
 
68
67
  ## Usage
@@ -147,7 +146,7 @@ You can enable this by installing `aiohttp`:
147
146
 
148
147
  ```sh
149
148
  # install from PyPI
150
- pip install '--pre llama_stack_client[aiohttp]'
149
+ pip install --pre llama_stack_client[aiohttp]
151
150
  ```
152
151
 
153
152
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
@@ -21,8 +21,7 @@ You can find more example apps with client SDKs to talk with the Llama Stack ser
21
21
  ## Installation
22
22
 
23
23
  ```sh
24
- # install from PyPI
25
- pip install '--pre llama_stack_client'
24
+ pip install llama-stack-client
26
25
  ```
27
26
 
28
27
  ## Usage
@@ -107,7 +106,7 @@ You can enable this by installing `aiohttp`:
107
106
 
108
107
  ```sh
109
108
  # install from PyPI
110
- pip install '--pre llama_stack_client[aiohttp]'
109
+ pip install --pre llama_stack_client[aiohttp]
111
110
  ```
112
111
 
113
112
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
@@ -103,10 +103,10 @@ Methods:
103
103
 
104
104
  - <code title="post /v1/prompts">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">create</a>(\*\*<a href="src/llama_stack_client/types/prompt_create_params.py">params</a>) -> <a href="./src/llama_stack_client/types/prompt.py">Prompt</a></code>
105
105
  - <code title="get /v1/prompts/{prompt_id}">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">retrieve</a>(prompt_id, \*\*<a href="src/llama_stack_client/types/prompt_retrieve_params.py">params</a>) -> <a href="./src/llama_stack_client/types/prompt.py">Prompt</a></code>
106
- - <code title="put /v1/prompts/{prompt_id}">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">update</a>(prompt_id, \*\*<a href="src/llama_stack_client/types/prompt_update_params.py">params</a>) -> <a href="./src/llama_stack_client/types/prompt.py">Prompt</a></code>
106
+ - <code title="post /v1/prompts/{prompt_id}">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">update</a>(prompt_id, \*\*<a href="src/llama_stack_client/types/prompt_update_params.py">params</a>) -> <a href="./src/llama_stack_client/types/prompt.py">Prompt</a></code>
107
107
  - <code title="get /v1/prompts">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">list</a>() -> <a href="./src/llama_stack_client/types/prompt_list_response.py">PromptListResponse</a></code>
108
108
  - <code title="delete /v1/prompts/{prompt_id}">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">delete</a>(prompt_id) -> None</code>
109
- - <code title="put /v1/prompts/{prompt_id}/set-default-version">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">set_default_version</a>(prompt_id, \*\*<a href="src/llama_stack_client/types/prompt_set_default_version_params.py">params</a>) -> <a href="./src/llama_stack_client/types/prompt.py">Prompt</a></code>
109
+ - <code title="post /v1/prompts/{prompt_id}/set-default-version">client.prompts.<a href="./src/llama_stack_client/resources/prompts/prompts.py">set_default_version</a>(prompt_id, \*\*<a href="src/llama_stack_client/types/prompt_set_default_version_params.py">params</a>) -> <a href="./src/llama_stack_client/types/prompt.py">Prompt</a></code>
110
110
 
111
111
  ## Versions
112
112
 
@@ -442,6 +442,18 @@ Methods:
442
442
 
443
443
  # Alpha
444
444
 
445
+ ## Inference
446
+
447
+ Types:
448
+
449
+ ```python
450
+ from llama_stack_client.types.alpha import InferenceRerankResponse
451
+ ```
452
+
453
+ Methods:
454
+
455
+ - <code title="post /v1alpha/inference/rerank">client.alpha.inference.<a href="./src/llama_stack_client/resources/alpha/inference.py">rerank</a>(\*\*<a href="src/llama_stack_client/types/alpha/inference_rerank_params.py">params</a>) -> <a href="./src/llama_stack_client/types/alpha/inference_rerank_response.py">InferenceRerankResponse</a></code>
456
+
445
457
  ## PostTraining
446
458
 
447
459
  Types:
@@ -474,9 +486,9 @@ from llama_stack_client.types.alpha.post_training import (
474
486
  Methods:
475
487
 
476
488
  - <code title="get /v1alpha/post-training/jobs">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">list</a>() -> <a href="./src/llama_stack_client/types/alpha/post_training/job_list_response.py">JobListResponse</a></code>
477
- - <code title="get /v1alpha/post-training/job/artifacts">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">artifacts</a>() -> <a href="./src/llama_stack_client/types/alpha/post_training/job_artifacts_response.py">JobArtifactsResponse</a></code>
478
- - <code title="post /v1alpha/post-training/job/cancel">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">cancel</a>() -> None</code>
479
- - <code title="get /v1alpha/post-training/job/status">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">status</a>() -> <a href="./src/llama_stack_client/types/alpha/post_training/job_status_response.py">JobStatusResponse</a></code>
489
+ - <code title="get /v1alpha/post-training/job/artifacts">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">artifacts</a>(\*\*<a href="src/llama_stack_client/types/alpha/post_training/job_artifacts_params.py">params</a>) -> <a href="./src/llama_stack_client/types/alpha/post_training/job_artifacts_response.py">JobArtifactsResponse</a></code>
490
+ - <code title="post /v1alpha/post-training/job/cancel">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">cancel</a>(\*\*<a href="src/llama_stack_client/types/alpha/post_training/job_cancel_params.py">params</a>) -> None</code>
491
+ - <code title="get /v1alpha/post-training/job/status">client.alpha.post_training.job.<a href="./src/llama_stack_client/resources/alpha/post_training/job.py">status</a>(\*\*<a href="src/llama_stack_client/types/alpha/post_training/job_status_params.py">params</a>) -> <a href="./src/llama_stack_client/types/alpha/post_training/job_status_response.py">JobStatusResponse</a></code>
480
492
 
481
493
  ## Benchmarks
482
494
 
@@ -526,18 +538,6 @@ Methods:
526
538
  - <code title="get /v1alpha/admin/inspect/routes">client.alpha.admin.<a href="./src/llama_stack_client/resources/alpha/admin.py">list_routes</a>(\*\*<a href="src/llama_stack_client/types/alpha/admin_list_routes_params.py">params</a>) -> <a href="./src/llama_stack_client/types/route_list_response.py">RouteListResponse</a></code>
527
539
  - <code title="get /v1alpha/admin/version">client.alpha.admin.<a href="./src/llama_stack_client/resources/alpha/admin.py">version</a>() -> <a href="./src/llama_stack_client/types/shared/version_info.py">VersionInfo</a></code>
528
540
 
529
- ## Inference
530
-
531
- Types:
532
-
533
- ```python
534
- from llama_stack_client.types.alpha import InferenceRerankResponse
535
- ```
536
-
537
- Methods:
538
-
539
- - <code title="post /v1alpha/inference/rerank">client.alpha.inference.<a href="./src/llama_stack_client/resources/alpha/inference.py">rerank</a>(\*\*<a href="src/llama_stack_client/types/alpha/inference_rerank_params.py">params</a>) -> <a href="./src/llama_stack_client/types/alpha/inference_rerank_response.py">InferenceRerankResponse</a></code>
540
-
541
541
  # Beta
542
542
 
543
543
  ## Datasets
@@ -558,7 +558,7 @@ Methods:
558
558
 
559
559
  - <code title="get /v1beta/datasets/{dataset_id}">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">retrieve</a>(dataset_id) -> <a href="./src/llama_stack_client/types/beta/dataset_retrieve_response.py">DatasetRetrieveResponse</a></code>
560
560
  - <code title="get /v1beta/datasets">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">list</a>() -> <a href="./src/llama_stack_client/types/beta/dataset_list_response.py">DatasetListResponse</a></code>
561
- - <code title="post /v1beta/datasetio/append-rows/{dataset_id}">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">appendrows</a>(path_dataset_id, \*\*<a href="src/llama_stack_client/types/beta/dataset_appendrows_params.py">params</a>) -> None</code>
561
+ - <code title="post /v1beta/datasetio/append-rows/{dataset_id}">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">appendrows</a>(dataset_id, \*\*<a href="src/llama_stack_client/types/beta/dataset_appendrows_params.py">params</a>) -> None</code>
562
562
  - <code title="get /v1beta/datasetio/iterrows/{dataset_id}">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">iterrows</a>(dataset_id, \*\*<a href="src/llama_stack_client/types/beta/dataset_iterrows_params.py">params</a>) -> <a href="./src/llama_stack_client/types/beta/dataset_iterrows_response.py">DatasetIterrowsResponse</a></code>
563
563
  - <code title="post /v1beta/datasets">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">register</a>(\*\*<a href="src/llama_stack_client/types/beta/dataset_register_params.py">params</a>) -> <a href="./src/llama_stack_client/types/beta/dataset_register_response.py">DatasetRegisterResponse</a></code>
564
564
  - <code title="delete /v1beta/datasets/{dataset_id}">client.beta.datasets.<a href="./src/llama_stack_client/resources/beta/datasets.py">unregister</a>(dataset_id) -> None</code>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llama_stack_client"
3
- version = "0.4.5"
3
+ version = "0.4.6"
4
4
  description = "The official Python library for the llama-stack-client API"
5
5
  dynamic = ["readme"]
6
6
  license = "MIT"
@@ -7,7 +7,7 @@ anyio==4.12.0
7
7
  # via
8
8
  # httpx
9
9
  # llama-stack-client
10
- black==26.1.0
10
+ black==25.12.0
11
11
  certifi==2025.11.12
12
12
  # via
13
13
  # httpcore
@@ -33,7 +33,7 @@ distro==1.9.0
33
33
  # via llama-stack-client
34
34
  execnet==2.1.2
35
35
  # via pytest-xdist
36
- filelock==3.20.3
36
+ filelock==3.20.1
37
37
  # via virtualenv
38
38
  fire==0.7.1
39
39
  # via llama-stack-client
@@ -45,7 +45,7 @@ httpx==0.28.1
45
45
  # via
46
46
  # llama-stack-client
47
47
  # respx
48
- identify==2.6.16
48
+ identify==2.6.15
49
49
  # via pre-commit
50
50
  idna==3.11
51
51
  # via
@@ -68,15 +68,15 @@ nodeenv==1.9.1
68
68
  # via
69
69
  # pre-commit
70
70
  # pyright
71
- numpy==2.4.1
71
+ numpy==2.3.5
72
72
  # via pandas
73
73
  packaging==25.0
74
74
  # via
75
75
  # black
76
76
  # pytest
77
- pandas==3.0.0
77
+ pandas==2.3.3
78
78
  # via llama-stack-client
79
- pathspec==1.0.3
79
+ pathspec==0.12.1
80
80
  # via
81
81
  # black
82
82
  # mypy
@@ -108,8 +108,10 @@ pytest-asyncio==1.3.0
108
108
  pytest-xdist==3.8.0
109
109
  python-dateutil==2.9.0.post0
110
110
  # via pandas
111
- pytokens==0.4.0
111
+ pytokens==0.3.0
112
112
  # via black
113
+ pytz==2025.2
114
+ # via pandas
113
115
  pyyaml==6.0.3
114
116
  # via
115
117
  # pre-commit
@@ -124,7 +126,7 @@ six==1.17.0
124
126
  # via python-dateutil
125
127
  sniffio==1.3.1
126
128
  # via llama-stack-client
127
- termcolor==3.3.0
129
+ termcolor==3.2.0
128
130
  # via
129
131
  # fire
130
132
  # llama-stack-client
@@ -143,13 +145,13 @@ typing-extensions==4.15.0
143
145
  # typing-inspection
144
146
  typing-inspection==0.4.2
145
147
  # via pydantic
146
- tzdata==2025.3 ; sys_platform == 'emscripten' or sys_platform == 'win32'
148
+ tzdata==2025.3
147
149
  # via pandas
148
- urllib3==2.6.3
150
+ urllib3==2.6.2
149
151
  # via requests
150
- virtualenv==20.36.1
152
+ virtualenv==20.35.4
151
153
  # via pre-commit
152
- wcwidth==0.3.1
154
+ wcwidth==0.2.14
153
155
  # via prompt-toolkit
154
156
  zipp==3.23.0
155
157
  # via importlib-metadata
@@ -15,7 +15,6 @@ import asyncio
15
15
  import inspect
16
16
  import logging
17
17
  import platform
18
- import warnings
19
18
  import email.utils
20
19
  from types import TracebackType
21
20
  from random import random
@@ -58,11 +57,9 @@ from ._types import (
58
57
  ResponseT,
59
58
  AnyMapping,
60
59
  PostParser,
61
- BinaryTypes,
62
60
  RequestFiles,
63
61
  HttpxSendArgs,
64
62
  RequestOptions,
65
- AsyncBinaryTypes,
66
63
  HttpxRequestFiles,
67
64
  ModelBuilderProtocol,
68
65
  not_given,
@@ -92,7 +89,6 @@ from ._exceptions import (
92
89
  APIConnectionError,
93
90
  APIResponseValidationError,
94
91
  )
95
- from ._utils._json import openapi_dumps
96
92
 
97
93
  log: logging.Logger = logging.getLogger(__name__)
98
94
 
@@ -487,19 +483,8 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
487
483
  retries_taken: int = 0,
488
484
  ) -> httpx.Request:
489
485
  if log.isEnabledFor(logging.DEBUG):
490
- log.debug(
491
- "Request options: %s",
492
- model_dump(
493
- options,
494
- exclude_unset=True,
495
- # Pydantic v1 can't dump every type we support in content, so we exclude it for now.
496
- exclude={
497
- "content",
498
- }
499
- if PYDANTIC_V1
500
- else {},
501
- ),
502
- )
486
+ log.debug("Request options: %s", model_dump(options, exclude_unset=True))
487
+
503
488
  kwargs: dict[str, Any] = {}
504
489
 
505
490
  json_data = options.json_data
@@ -553,18 +538,10 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
553
538
  is_body_allowed = options.method.lower() != "get"
554
539
 
555
540
  if is_body_allowed:
556
- if options.content is not None and json_data is not None:
557
- raise TypeError("Passing both `content` and `json_data` is not supported")
558
- if options.content is not None and files is not None:
559
- raise TypeError("Passing both `content` and `files` is not supported")
560
- if options.content is not None:
561
- kwargs["content"] = options.content
562
- elif isinstance(json_data, bytes):
541
+ if isinstance(json_data, bytes):
563
542
  kwargs["content"] = json_data
564
- elif not files:
565
- # Don't set content when JSON is sent as multipart/form-data,
566
- # since httpx's content param overrides other body arguments
567
- kwargs["content"] = openapi_dumps(json_data) if is_given(json_data) and json_data is not None else None
543
+ else:
544
+ kwargs["json"] = json_data if is_given(json_data) else None
568
545
  kwargs["files"] = files
569
546
  else:
570
547
  headers.pop("Content-Type", None)
@@ -1227,7 +1204,6 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1227
1204
  *,
1228
1205
  cast_to: Type[ResponseT],
1229
1206
  body: Body | None = None,
1230
- content: BinaryTypes | None = None,
1231
1207
  options: RequestOptions = {},
1232
1208
  files: RequestFiles | None = None,
1233
1209
  stream: Literal[False] = False,
@@ -1240,7 +1216,6 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1240
1216
  *,
1241
1217
  cast_to: Type[ResponseT],
1242
1218
  body: Body | None = None,
1243
- content: BinaryTypes | None = None,
1244
1219
  options: RequestOptions = {},
1245
1220
  files: RequestFiles | None = None,
1246
1221
  stream: Literal[True],
@@ -1254,7 +1229,6 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1254
1229
  *,
1255
1230
  cast_to: Type[ResponseT],
1256
1231
  body: Body | None = None,
1257
- content: BinaryTypes | None = None,
1258
1232
  options: RequestOptions = {},
1259
1233
  files: RequestFiles | None = None,
1260
1234
  stream: bool,
@@ -1267,25 +1241,13 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1267
1241
  *,
1268
1242
  cast_to: Type[ResponseT],
1269
1243
  body: Body | None = None,
1270
- content: BinaryTypes | None = None,
1271
1244
  options: RequestOptions = {},
1272
1245
  files: RequestFiles | None = None,
1273
1246
  stream: bool = False,
1274
1247
  stream_cls: type[_StreamT] | None = None,
1275
1248
  ) -> ResponseT | _StreamT:
1276
- if body is not None and content is not None:
1277
- raise TypeError("Passing both `body` and `content` is not supported")
1278
- if files is not None and content is not None:
1279
- raise TypeError("Passing both `files` and `content` is not supported")
1280
- if isinstance(body, bytes):
1281
- warnings.warn(
1282
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1283
- "Please pass raw bytes via the `content` parameter instead.",
1284
- DeprecationWarning,
1285
- stacklevel=2,
1286
- )
1287
1249
  opts = FinalRequestOptions.construct(
1288
- method="post", url=path, json_data=body, content=content, files=to_httpx_files(files), **options
1250
+ method="post", url=path, json_data=body, files=to_httpx_files(files), **options
1289
1251
  )
1290
1252
  return cast(ResponseT, self.request(cast_to, opts, stream=stream, stream_cls=stream_cls))
1291
1253
 
@@ -1295,23 +1257,11 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1295
1257
  *,
1296
1258
  cast_to: Type[ResponseT],
1297
1259
  body: Body | None = None,
1298
- content: BinaryTypes | None = None,
1299
1260
  files: RequestFiles | None = None,
1300
1261
  options: RequestOptions = {},
1301
1262
  ) -> ResponseT:
1302
- if body is not None and content is not None:
1303
- raise TypeError("Passing both `body` and `content` is not supported")
1304
- if files is not None and content is not None:
1305
- raise TypeError("Passing both `files` and `content` is not supported")
1306
- if isinstance(body, bytes):
1307
- warnings.warn(
1308
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1309
- "Please pass raw bytes via the `content` parameter instead.",
1310
- DeprecationWarning,
1311
- stacklevel=2,
1312
- )
1313
1263
  opts = FinalRequestOptions.construct(
1314
- method="patch", url=path, json_data=body, content=content, files=to_httpx_files(files), **options
1264
+ method="patch", url=path, json_data=body, files=to_httpx_files(files), **options
1315
1265
  )
1316
1266
  return self.request(cast_to, opts)
1317
1267
 
@@ -1321,23 +1271,11 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1321
1271
  *,
1322
1272
  cast_to: Type[ResponseT],
1323
1273
  body: Body | None = None,
1324
- content: BinaryTypes | None = None,
1325
1274
  files: RequestFiles | None = None,
1326
1275
  options: RequestOptions = {},
1327
1276
  ) -> ResponseT:
1328
- if body is not None and content is not None:
1329
- raise TypeError("Passing both `body` and `content` is not supported")
1330
- if files is not None and content is not None:
1331
- raise TypeError("Passing both `files` and `content` is not supported")
1332
- if isinstance(body, bytes):
1333
- warnings.warn(
1334
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1335
- "Please pass raw bytes via the `content` parameter instead.",
1336
- DeprecationWarning,
1337
- stacklevel=2,
1338
- )
1339
1277
  opts = FinalRequestOptions.construct(
1340
- method="put", url=path, json_data=body, content=content, files=to_httpx_files(files), **options
1278
+ method="put", url=path, json_data=body, files=to_httpx_files(files), **options
1341
1279
  )
1342
1280
  return self.request(cast_to, opts)
1343
1281
 
@@ -1347,19 +1285,9 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1347
1285
  *,
1348
1286
  cast_to: Type[ResponseT],
1349
1287
  body: Body | None = None,
1350
- content: BinaryTypes | None = None,
1351
1288
  options: RequestOptions = {},
1352
1289
  ) -> ResponseT:
1353
- if body is not None and content is not None:
1354
- raise TypeError("Passing both `body` and `content` is not supported")
1355
- if isinstance(body, bytes):
1356
- warnings.warn(
1357
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1358
- "Please pass raw bytes via the `content` parameter instead.",
1359
- DeprecationWarning,
1360
- stacklevel=2,
1361
- )
1362
- opts = FinalRequestOptions.construct(method="delete", url=path, json_data=body, content=content, **options)
1290
+ opts = FinalRequestOptions.construct(method="delete", url=path, json_data=body, **options)
1363
1291
  return self.request(cast_to, opts)
1364
1292
 
1365
1293
  def get_api_list(
@@ -1799,7 +1727,6 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1799
1727
  *,
1800
1728
  cast_to: Type[ResponseT],
1801
1729
  body: Body | None = None,
1802
- content: AsyncBinaryTypes | None = None,
1803
1730
  files: RequestFiles | None = None,
1804
1731
  options: RequestOptions = {},
1805
1732
  stream: Literal[False] = False,
@@ -1812,7 +1739,6 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1812
1739
  *,
1813
1740
  cast_to: Type[ResponseT],
1814
1741
  body: Body | None = None,
1815
- content: AsyncBinaryTypes | None = None,
1816
1742
  files: RequestFiles | None = None,
1817
1743
  options: RequestOptions = {},
1818
1744
  stream: Literal[True],
@@ -1826,7 +1752,6 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1826
1752
  *,
1827
1753
  cast_to: Type[ResponseT],
1828
1754
  body: Body | None = None,
1829
- content: AsyncBinaryTypes | None = None,
1830
1755
  files: RequestFiles | None = None,
1831
1756
  options: RequestOptions = {},
1832
1757
  stream: bool,
@@ -1839,25 +1764,13 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1839
1764
  *,
1840
1765
  cast_to: Type[ResponseT],
1841
1766
  body: Body | None = None,
1842
- content: AsyncBinaryTypes | None = None,
1843
1767
  files: RequestFiles | None = None,
1844
1768
  options: RequestOptions = {},
1845
1769
  stream: bool = False,
1846
1770
  stream_cls: type[_AsyncStreamT] | None = None,
1847
1771
  ) -> ResponseT | _AsyncStreamT:
1848
- if body is not None and content is not None:
1849
- raise TypeError("Passing both `body` and `content` is not supported")
1850
- if files is not None and content is not None:
1851
- raise TypeError("Passing both `files` and `content` is not supported")
1852
- if isinstance(body, bytes):
1853
- warnings.warn(
1854
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1855
- "Please pass raw bytes via the `content` parameter instead.",
1856
- DeprecationWarning,
1857
- stacklevel=2,
1858
- )
1859
1772
  opts = FinalRequestOptions.construct(
1860
- method="post", url=path, json_data=body, content=content, files=await async_to_httpx_files(files), **options
1773
+ method="post", url=path, json_data=body, files=await async_to_httpx_files(files), **options
1861
1774
  )
1862
1775
  return await self.request(cast_to, opts, stream=stream, stream_cls=stream_cls)
1863
1776
 
@@ -1867,28 +1780,11 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1867
1780
  *,
1868
1781
  cast_to: Type[ResponseT],
1869
1782
  body: Body | None = None,
1870
- content: AsyncBinaryTypes | None = None,
1871
1783
  files: RequestFiles | None = None,
1872
1784
  options: RequestOptions = {},
1873
1785
  ) -> ResponseT:
1874
- if body is not None and content is not None:
1875
- raise TypeError("Passing both `body` and `content` is not supported")
1876
- if files is not None and content is not None:
1877
- raise TypeError("Passing both `files` and `content` is not supported")
1878
- if isinstance(body, bytes):
1879
- warnings.warn(
1880
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1881
- "Please pass raw bytes via the `content` parameter instead.",
1882
- DeprecationWarning,
1883
- stacklevel=2,
1884
- )
1885
1786
  opts = FinalRequestOptions.construct(
1886
- method="patch",
1887
- url=path,
1888
- json_data=body,
1889
- content=content,
1890
- files=await async_to_httpx_files(files),
1891
- **options,
1787
+ method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options
1892
1788
  )
1893
1789
  return await self.request(cast_to, opts)
1894
1790
 
@@ -1898,23 +1794,11 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1898
1794
  *,
1899
1795
  cast_to: Type[ResponseT],
1900
1796
  body: Body | None = None,
1901
- content: AsyncBinaryTypes | None = None,
1902
1797
  files: RequestFiles | None = None,
1903
1798
  options: RequestOptions = {},
1904
1799
  ) -> ResponseT:
1905
- if body is not None and content is not None:
1906
- raise TypeError("Passing both `body` and `content` is not supported")
1907
- if files is not None and content is not None:
1908
- raise TypeError("Passing both `files` and `content` is not supported")
1909
- if isinstance(body, bytes):
1910
- warnings.warn(
1911
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1912
- "Please pass raw bytes via the `content` parameter instead.",
1913
- DeprecationWarning,
1914
- stacklevel=2,
1915
- )
1916
1800
  opts = FinalRequestOptions.construct(
1917
- method="put", url=path, json_data=body, content=content, files=await async_to_httpx_files(files), **options
1801
+ method="put", url=path, json_data=body, files=await async_to_httpx_files(files), **options
1918
1802
  )
1919
1803
  return await self.request(cast_to, opts)
1920
1804
 
@@ -1924,19 +1808,9 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1924
1808
  *,
1925
1809
  cast_to: Type[ResponseT],
1926
1810
  body: Body | None = None,
1927
- content: AsyncBinaryTypes | None = None,
1928
1811
  options: RequestOptions = {},
1929
1812
  ) -> ResponseT:
1930
- if body is not None and content is not None:
1931
- raise TypeError("Passing both `body` and `content` is not supported")
1932
- if isinstance(body, bytes):
1933
- warnings.warn(
1934
- "Passing raw bytes as `body` is deprecated and will be removed in a future version. "
1935
- "Please pass raw bytes via the `content` parameter instead.",
1936
- DeprecationWarning,
1937
- stacklevel=2,
1938
- )
1939
- opts = FinalRequestOptions.construct(method="delete", url=path, json_data=body, content=content, **options)
1813
+ opts = FinalRequestOptions.construct(method="delete", url=path, json_data=body, **options)
1940
1814
  return await self.request(cast_to, opts)
1941
1815
 
1942
1816
  def get_api_list(
@@ -145,7 +145,6 @@ def model_dump(
145
145
  exclude_defaults: bool = False,
146
146
  warnings: bool = True,
147
147
  mode: Literal["json", "python"] = "python",
148
- by_alias: bool | None = None,
149
148
  ) -> dict[str, Any]:
150
149
  if (not PYDANTIC_V1) or hasattr(model, "model_dump"):
151
150
  return model.model_dump(
@@ -155,12 +154,13 @@ def model_dump(
155
154
  exclude_defaults=exclude_defaults,
156
155
  # warnings are not supported in Pydantic v1
157
156
  warnings=True if PYDANTIC_V1 else warnings,
158
- by_alias=by_alias,
159
157
  )
160
158
  return cast(
161
159
  "dict[str, Any]",
162
160
  model.dict( # pyright: ignore[reportDeprecated, reportUnnecessaryCast]
163
- exclude=exclude, exclude_unset=exclude_unset, exclude_defaults=exclude_defaults, by_alias=bool(by_alias)
161
+ exclude=exclude,
162
+ exclude_unset=exclude_unset,
163
+ exclude_defaults=exclude_defaults,
164
164
  ),
165
165
  )
166
166
 
@@ -9,20 +9,7 @@ from __future__ import annotations
9
9
  import os
10
10
  import inspect
11
11
  import weakref
12
- from typing import (
13
- IO,
14
- TYPE_CHECKING,
15
- Any,
16
- Type,
17
- Union,
18
- Generic,
19
- TypeVar,
20
- Callable,
21
- Iterable,
22
- Optional,
23
- AsyncIterable,
24
- cast,
25
- )
12
+ from typing import TYPE_CHECKING, Any, Type, Union, Generic, TypeVar, Callable, Optional, cast
26
13
  from datetime import date, datetime
27
14
  from typing_extensions import (
28
15
  List,
@@ -806,7 +793,6 @@ class FinalRequestOptionsInput(TypedDict, total=False):
806
793
  timeout: float | Timeout | None
807
794
  files: HttpxRequestFiles | None
808
795
  idempotency_key: str
809
- content: Union[bytes, bytearray, IO[bytes], Iterable[bytes], AsyncIterable[bytes], None]
810
796
  json_data: Body
811
797
  extra_json: AnyMapping
812
798
  follow_redirects: bool
@@ -825,7 +811,6 @@ class FinalRequestOptions(pydantic.BaseModel):
825
811
  post_parser: Union[Callable[[Any], Any], NotGiven] = NotGiven()
826
812
  follow_redirects: Union[bool, None] = None
827
813
 
828
- content: Union[bytes, bytearray, IO[bytes], Iterable[bytes], AsyncIterable[bytes], None] = None
829
814
  # It should be noted that we cannot use `json` here as that would override
830
815
  # a BaseModel method in an incompatible fashion.
831
816
  json_data: Union[Body, None] = None
@@ -19,11 +19,9 @@ from typing import (
19
19
  Mapping,
20
20
  TypeVar,
21
21
  Callable,
22
- Iterable,
23
22
  Iterator,
24
23
  Optional,
25
24
  Sequence,
26
- AsyncIterable,
27
25
  )
28
26
  from typing_extensions import (
29
27
  Set,
@@ -64,13 +62,6 @@ if TYPE_CHECKING:
64
62
  else:
65
63
  Base64FileInput = Union[IO[bytes], PathLike]
66
64
  FileContent = Union[IO[bytes], bytes, PathLike] # PathLike is not subscriptable in Python 3.8.
67
-
68
-
69
- # Used for sending raw binary data / streaming data in request bodies
70
- # e.g. for file uploads without multipart encoding
71
- BinaryTypes = Union[bytes, bytearray, IO[bytes], Iterable[bytes]]
72
- AsyncBinaryTypes = Union[bytes, bytearray, IO[bytes], AsyncIterable[bytes]]
73
-
74
65
  FileTypes = Union[
75
66
  # file (or bytes)
76
67
  FileContent,