mirascope 2.0.0a4__py3-none-any.whl → 2.0.0a6__py3-none-any.whl

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 (215) hide show
  1. mirascope/__init__.py +10 -1
  2. mirascope/_stubs.py +363 -0
  3. mirascope/api/__init__.py +8 -0
  4. mirascope/api/_generated/__init__.py +119 -1
  5. mirascope/api/_generated/annotations/__init__.py +33 -0
  6. mirascope/api/_generated/annotations/client.py +474 -0
  7. mirascope/api/_generated/annotations/raw_client.py +1095 -0
  8. mirascope/api/_generated/annotations/types/__init__.py +31 -0
  9. mirascope/api/_generated/annotations/types/annotations_create_request_label.py +5 -0
  10. mirascope/api/_generated/annotations/types/annotations_create_response.py +35 -0
  11. mirascope/api/_generated/annotations/types/annotations_create_response_label.py +5 -0
  12. mirascope/api/_generated/annotations/types/annotations_get_response.py +35 -0
  13. mirascope/api/_generated/annotations/types/annotations_get_response_label.py +5 -0
  14. mirascope/api/_generated/annotations/types/annotations_list_request_label.py +5 -0
  15. mirascope/api/_generated/annotations/types/annotations_list_response.py +21 -0
  16. mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py +35 -0
  17. mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py +5 -0
  18. mirascope/api/_generated/annotations/types/annotations_update_request_label.py +5 -0
  19. mirascope/api/_generated/annotations/types/annotations_update_response.py +35 -0
  20. mirascope/api/_generated/annotations/types/annotations_update_response_label.py +5 -0
  21. mirascope/api/_generated/api_keys/__init__.py +7 -0
  22. mirascope/api/_generated/api_keys/client.py +429 -0
  23. mirascope/api/_generated/api_keys/raw_client.py +788 -0
  24. mirascope/api/_generated/api_keys/types/__init__.py +9 -0
  25. mirascope/api/_generated/api_keys/types/api_keys_create_response.py +28 -0
  26. mirascope/api/_generated/api_keys/types/api_keys_get_response.py +27 -0
  27. mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py +27 -0
  28. mirascope/api/_generated/client.py +12 -0
  29. mirascope/api/_generated/core/client_wrapper.py +2 -14
  30. mirascope/api/_generated/core/datetime_utils.py +1 -3
  31. mirascope/api/_generated/core/file.py +2 -5
  32. mirascope/api/_generated/core/http_client.py +36 -112
  33. mirascope/api/_generated/core/jsonable_encoder.py +1 -3
  34. mirascope/api/_generated/core/pydantic_utilities.py +19 -74
  35. mirascope/api/_generated/core/query_encoder.py +1 -3
  36. mirascope/api/_generated/core/serialization.py +4 -10
  37. mirascope/api/_generated/docs/client.py +2 -6
  38. mirascope/api/_generated/docs/raw_client.py +4 -20
  39. mirascope/api/_generated/environments/__init__.py +17 -0
  40. mirascope/api/_generated/environments/client.py +500 -0
  41. mirascope/api/_generated/environments/raw_client.py +999 -0
  42. mirascope/api/_generated/environments/types/__init__.py +15 -0
  43. mirascope/api/_generated/environments/types/environments_create_response.py +24 -0
  44. mirascope/api/_generated/environments/types/environments_get_response.py +24 -0
  45. mirascope/api/_generated/environments/types/environments_list_response_item.py +24 -0
  46. mirascope/api/_generated/environments/types/environments_update_response.py +24 -0
  47. mirascope/api/_generated/errors/__init__.py +2 -0
  48. mirascope/api/_generated/errors/bad_request_error.py +1 -5
  49. mirascope/api/_generated/errors/conflict_error.py +1 -5
  50. mirascope/api/_generated/errors/forbidden_error.py +1 -5
  51. mirascope/api/_generated/errors/internal_server_error.py +1 -6
  52. mirascope/api/_generated/errors/not_found_error.py +1 -5
  53. mirascope/api/_generated/errors/unauthorized_error.py +11 -0
  54. mirascope/api/_generated/functions/__init__.py +29 -0
  55. mirascope/api/_generated/functions/client.py +433 -0
  56. mirascope/api/_generated/functions/raw_client.py +1049 -0
  57. mirascope/api/_generated/functions/types/__init__.py +29 -0
  58. mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py +20 -0
  59. mirascope/api/_generated/functions/types/functions_create_response.py +37 -0
  60. mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py +20 -0
  61. mirascope/api/_generated/functions/types/functions_find_by_hash_response.py +39 -0
  62. mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py +20 -0
  63. mirascope/api/_generated/functions/types/functions_get_response.py +37 -0
  64. mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py +20 -0
  65. mirascope/api/_generated/functions/types/functions_list_response.py +21 -0
  66. mirascope/api/_generated/functions/types/functions_list_response_functions_item.py +41 -0
  67. mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py +20 -0
  68. mirascope/api/_generated/health/client.py +2 -6
  69. mirascope/api/_generated/health/raw_client.py +5 -23
  70. mirascope/api/_generated/health/types/health_check_response.py +1 -3
  71. mirascope/api/_generated/organizations/__init__.py +2 -0
  72. mirascope/api/_generated/organizations/client.py +94 -27
  73. mirascope/api/_generated/organizations/raw_client.py +246 -128
  74. mirascope/api/_generated/organizations/types/__init__.py +2 -0
  75. mirascope/api/_generated/organizations/types/organizations_create_response.py +5 -3
  76. mirascope/api/_generated/organizations/types/organizations_create_response_role.py +1 -3
  77. mirascope/api/_generated/organizations/types/organizations_credits_response.py +19 -0
  78. mirascope/api/_generated/organizations/types/organizations_get_response.py +5 -3
  79. mirascope/api/_generated/organizations/types/organizations_get_response_role.py +1 -3
  80. mirascope/api/_generated/organizations/types/organizations_list_response_item.py +5 -3
  81. mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py +1 -3
  82. mirascope/api/_generated/organizations/types/organizations_update_response.py +5 -3
  83. mirascope/api/_generated/organizations/types/organizations_update_response_role.py +1 -3
  84. mirascope/api/_generated/projects/__init__.py +2 -12
  85. mirascope/api/_generated/projects/client.py +38 -68
  86. mirascope/api/_generated/projects/raw_client.py +92 -163
  87. mirascope/api/_generated/projects/types/__init__.py +1 -6
  88. mirascope/api/_generated/projects/types/projects_create_response.py +4 -9
  89. mirascope/api/_generated/projects/types/projects_get_response.py +4 -9
  90. mirascope/api/_generated/projects/types/projects_list_response_item.py +4 -9
  91. mirascope/api/_generated/projects/types/projects_update_response.py +4 -9
  92. mirascope/api/_generated/reference.md +1862 -70
  93. mirascope/api/_generated/traces/__init__.py +22 -0
  94. mirascope/api/_generated/traces/client.py +398 -0
  95. mirascope/api/_generated/traces/raw_client.py +902 -18
  96. mirascope/api/_generated/traces/types/__init__.py +32 -0
  97. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py +4 -11
  98. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py +2 -6
  99. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py +1 -3
  100. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py +8 -24
  101. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py +2 -6
  102. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py +3 -9
  103. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py +2 -6
  104. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py +3 -9
  105. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py +4 -8
  106. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py +2 -6
  107. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py +8 -24
  108. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py +2 -6
  109. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py +3 -9
  110. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value_values_item.py +1 -3
  111. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py +6 -18
  112. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py +3 -9
  113. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py +8 -24
  114. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py +2 -6
  115. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py +2 -6
  116. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value_values_item.py +1 -3
  117. mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py +2 -6
  118. mirascope/api/_generated/traces/types/traces_create_response.py +2 -5
  119. mirascope/api/_generated/traces/types/traces_create_response_partial_success.py +3 -9
  120. mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py +54 -0
  121. mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py +24 -0
  122. mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py +22 -0
  123. mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py +33 -0
  124. mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py +90 -0
  125. mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py +26 -0
  126. mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py +7 -0
  127. mirascope/api/_generated/traces/types/traces_search_request_sort_by.py +7 -0
  128. mirascope/api/_generated/traces/types/traces_search_request_sort_order.py +5 -0
  129. mirascope/api/_generated/traces/types/traces_search_response.py +26 -0
  130. mirascope/api/_generated/traces/types/traces_search_response_spans_item.py +41 -0
  131. mirascope/api/_generated/types/__init__.py +18 -0
  132. mirascope/api/_generated/types/already_exists_error.py +1 -3
  133. mirascope/api/_generated/types/click_house_error.py +22 -0
  134. mirascope/api/_generated/types/database_error.py +1 -3
  135. mirascope/api/_generated/types/http_api_decode_error.py +1 -3
  136. mirascope/api/_generated/types/internal_server_error_body.py +49 -0
  137. mirascope/api/_generated/types/issue.py +1 -3
  138. mirascope/api/_generated/types/issue_tag.py +1 -8
  139. mirascope/api/_generated/types/not_found_error_body.py +1 -3
  140. mirascope/api/_generated/types/number_from_string.py +3 -0
  141. mirascope/api/_generated/types/permission_denied_error.py +1 -3
  142. mirascope/api/_generated/types/permission_denied_error_tag.py +1 -3
  143. mirascope/api/_generated/types/property_key_key.py +1 -3
  144. mirascope/api/_generated/types/stripe_error.py +20 -0
  145. mirascope/api/_generated/types/unauthorized_error_body.py +21 -0
  146. mirascope/api/_generated/types/unauthorized_error_tag.py +5 -0
  147. mirascope/llm/__init__.py +6 -2
  148. mirascope/llm/content/tool_call.py +6 -0
  149. mirascope/llm/exceptions.py +28 -0
  150. mirascope/llm/formatting/__init__.py +2 -2
  151. mirascope/llm/formatting/format.py +120 -8
  152. mirascope/llm/formatting/types.py +1 -56
  153. mirascope/llm/mcp/__init__.py +2 -2
  154. mirascope/llm/mcp/mcp_client.py +130 -0
  155. mirascope/llm/providers/__init__.py +26 -5
  156. mirascope/llm/providers/anthropic/__init__.py +3 -21
  157. mirascope/llm/providers/anthropic/_utils/__init__.py +2 -0
  158. mirascope/llm/providers/anthropic/_utils/beta_decode.py +4 -2
  159. mirascope/llm/providers/anthropic/_utils/beta_encode.py +13 -12
  160. mirascope/llm/providers/anthropic/_utils/decode.py +4 -2
  161. mirascope/llm/providers/anthropic/_utils/encode.py +57 -14
  162. mirascope/llm/providers/anthropic/_utils/errors.py +46 -0
  163. mirascope/llm/providers/anthropic/beta_provider.py +6 -0
  164. mirascope/llm/providers/anthropic/provider.py +5 -0
  165. mirascope/llm/providers/base/__init__.py +5 -2
  166. mirascope/llm/providers/base/_utils.py +2 -7
  167. mirascope/llm/providers/base/base_provider.py +173 -58
  168. mirascope/llm/providers/base/params.py +63 -34
  169. mirascope/llm/providers/google/__init__.py +2 -17
  170. mirascope/llm/providers/google/_utils/__init__.py +2 -0
  171. mirascope/llm/providers/google/_utils/decode.py +17 -8
  172. mirascope/llm/providers/google/_utils/encode.py +105 -16
  173. mirascope/llm/providers/google/_utils/errors.py +49 -0
  174. mirascope/llm/providers/google/model_info.py +1 -0
  175. mirascope/llm/providers/google/provider.py +9 -5
  176. mirascope/llm/providers/mirascope/__init__.py +5 -0
  177. mirascope/llm/providers/mirascope/_utils.py +77 -0
  178. mirascope/llm/providers/mirascope/provider.py +318 -0
  179. mirascope/llm/providers/mlx/__init__.py +2 -17
  180. mirascope/llm/providers/mlx/_utils.py +9 -2
  181. mirascope/llm/providers/mlx/provider.py +8 -0
  182. mirascope/llm/providers/ollama/__init__.py +1 -13
  183. mirascope/llm/providers/openai/__init__.py +10 -1
  184. mirascope/llm/providers/openai/_utils/__init__.py +5 -0
  185. mirascope/llm/providers/openai/_utils/errors.py +46 -0
  186. mirascope/llm/providers/openai/completions/__init__.py +2 -20
  187. mirascope/llm/providers/openai/completions/_utils/decode.py +14 -3
  188. mirascope/llm/providers/openai/completions/_utils/encode.py +15 -12
  189. mirascope/llm/providers/openai/completions/base_provider.py +6 -6
  190. mirascope/llm/providers/openai/provider.py +14 -1
  191. mirascope/llm/providers/openai/responses/__init__.py +1 -17
  192. mirascope/llm/providers/openai/responses/_utils/decode.py +2 -2
  193. mirascope/llm/providers/openai/responses/_utils/encode.py +43 -15
  194. mirascope/llm/providers/openai/responses/provider.py +13 -7
  195. mirascope/llm/providers/provider_id.py +1 -0
  196. mirascope/llm/providers/provider_registry.py +59 -3
  197. mirascope/llm/providers/together/__init__.py +1 -13
  198. mirascope/llm/responses/base_stream_response.py +24 -20
  199. mirascope/llm/tools/decorator.py +8 -4
  200. mirascope/llm/tools/tool_schema.py +33 -6
  201. mirascope/llm/tools/tools.py +84 -16
  202. mirascope/ops/__init__.py +60 -109
  203. mirascope/ops/_internal/closure.py +62 -11
  204. mirascope/ops/_internal/instrumentation/llm/llm.py +1 -2
  205. mirascope/ops/_internal/traced_functions.py +23 -4
  206. mirascope/ops/_internal/versioned_functions.py +54 -43
  207. {mirascope-2.0.0a4.dist-info → mirascope-2.0.0a6.dist-info}/METADATA +7 -7
  208. mirascope-2.0.0a6.dist-info/RECORD +316 -0
  209. mirascope/llm/formatting/_utils.py +0 -78
  210. mirascope/llm/mcp/client.py +0 -118
  211. mirascope/llm/providers/_missing_import_stubs.py +0 -49
  212. mirascope/llm/providers/load_provider.py +0 -54
  213. mirascope-2.0.0a4.dist-info/RECORD +0 -247
  214. {mirascope-2.0.0a4.dist-info → mirascope-2.0.0a6.dist-info}/WHEEL +0 -0
  215. {mirascope-2.0.0a4.dist-info → mirascope-2.0.0a6.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,316 @@
1
+ mirascope/__init__.py,sha256=V3T7JlZJ4G9dA5lmq5eTtLYUajbQmTvT3-tUlv8o-fg,265
2
+ mirascope/_stubs.py,sha256=iq5hxVYdLEZ_b2fyBNeY5HXcL50Dcw22HBaBr3ydPgU,12179
3
+ mirascope/api/__init__.py,sha256=FL0OpTweJC0SUpOnZJddDzeC0JwxPDkIaL78VpeMtko,498
4
+ mirascope/api/client.py,sha256=3JrrC2zNlEttAUXHGN1kbDpGczyI9zCNiSZ3dEyqtAI,8253
5
+ mirascope/api/settings.py,sha256=NeROu5F0xFDUs0jIPFhD_FzBgVjI2mgGkMHeVquoDIM,2125
6
+ mirascope/api/_generated/README.md,sha256=7-B_qhXCHaXKX9FPG-G112hKmXM64uM6eNqmSdpaL_8,6079
7
+ mirascope/api/_generated/__init__.py,sha256=qcnKEOYZrrTWpZcthb5EAEqytIoiDcBu0J61kl5km5g,9643
8
+ mirascope/api/_generated/client.py,sha256=6HU_hszag0yiVMphdu6WEPTknK6FQXtsmvBOFk4e8f4,7223
9
+ mirascope/api/_generated/environment.py,sha256=zrGdNnUZkaUyUtaamv2nKGfT9KZA5aCeWdSSN2dNphA,265
10
+ mirascope/api/_generated/reference.md,sha256=vhgSPFnZfR0tAVPrqkoxm3f5dZ7HhpDxusttPIT28UY,27816
11
+ mirascope/api/_generated/annotations/__init__.py,sha256=z1rsEyNXWcegCIeC-Y2P9TBI0fVbNs1FohqSJiqrK84,987
12
+ mirascope/api/_generated/annotations/client.py,sha256=egbVAXhg3FOpgKwUGjes1OrVMVXJrdQHnLsndWoJFqE,13116
13
+ mirascope/api/_generated/annotations/raw_client.py,sha256=Aora0v7yOKum_nHbU4fD3Uq7Wk9Seg36fMhWbGTR4L0,43021
14
+ mirascope/api/_generated/annotations/types/__init__.py,sha256=-U6nlJtxOBmo1di8pon6SOxRJADXO3tmK5300zA2wDo,1455
15
+ mirascope/api/_generated/annotations/types/annotations_create_request_label.py,sha256=XxGv-GJp9jQtQv0Df5kRxGo1qGfrmJ0QqspAwwIa58M,169
16
+ mirascope/api/_generated/annotations/types/annotations_create_response.py,sha256=pxH4q_KogVzwZ6oB5QtmEfkhC73--qwNl78rhwf9C54,1793
17
+ mirascope/api/_generated/annotations/types/annotations_create_response_label.py,sha256=sgU9wOsFjiHVuEDOYMLPbb7l9GaUvUBVrjFZyLqnIH0,170
18
+ mirascope/api/_generated/annotations/types/annotations_get_response.py,sha256=FcnnrW7roYmwaOYp9kmqXPz8kDoGPfDOJqBPjOpSuPU,1781
19
+ mirascope/api/_generated/annotations/types/annotations_get_response_label.py,sha256=UL9KM8UB3r0QWwt74vxfpNgxUME7sOF2jkodbrxhrWQ,167
20
+ mirascope/api/_generated/annotations/types/annotations_list_request_label.py,sha256=kJoxcE3eBevTNwZ-XoqGNKLWa2jR57ItfW3RRpn6b9Q,167
21
+ mirascope/api/_generated/annotations/types/annotations_list_response.py,sha256=CEYb-7xWHEhPjEjYYA-sm-L7h2y7636nb7_2PiJPbUE,698
22
+ mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item.py,sha256=25m-eutZKS52R7YKkWkeYNU9fhbtnK94moQYgqszbC0,1847
23
+ mirascope/api/_generated/annotations/types/annotations_list_response_annotations_item_label.py,sha256=LmmRwYPPyhZqPD1dx3gFc6UP2kggglVm3Uf9UzQCBlY,183
24
+ mirascope/api/_generated/annotations/types/annotations_update_request_label.py,sha256=h5kV2c_2xGbonMwIawEkJMfCjCLQM5GG696vBf9D8X4,169
25
+ mirascope/api/_generated/annotations/types/annotations_update_response.py,sha256=sk16gpEWRLaTso7tX-IZPCvs4er51HGj1UXOLkSFPIo,1793
26
+ mirascope/api/_generated/annotations/types/annotations_update_response_label.py,sha256=4RSJF4EayZ36u6ElR011HtXukTD5yWMVffN97hWPBfU,170
27
+ mirascope/api/_generated/api_keys/__init__.py,sha256=SEqsc8eFGslfkVscvHABTONAy9ElPqgASfqwhwlAAzc,257
28
+ mirascope/api/_generated/api_keys/client.py,sha256=5NjZ0hVTMEbP2RxZMdXCEh_7CpLZGrAJqvBbF1R_U2Q,10915
29
+ mirascope/api/_generated/api_keys/raw_client.py,sha256=qpu7FG8EgzE7-xfffHKF6CEyxoXBHXv4zqTo51HNuhE,30289
30
+ mirascope/api/_generated/api_keys/types/__init__.py,sha256=sycSAknyK7WLoSQ9upf-g16-jExxkBXKMFLJKrg6esk,350
31
+ mirascope/api/_generated/api_keys/types/api_keys_create_response.py,sha256=HRHNrlUyUcb9UfZU5E45EAsjbN4QkxaBqRe01XLjdRM,1097
32
+ mirascope/api/_generated/api_keys/types/api_keys_get_response.py,sha256=zB81EPfqZiFjOFxi_0bS8j1MjyTAY1M5kM97ii4j-Qo,1081
33
+ mirascope/api/_generated/api_keys/types/api_keys_list_response_item.py,sha256=RBo_VKmYXOHaNpyk1DN9a5U5ylMGW5w7O2CEfceJrxQ,1086
34
+ mirascope/api/_generated/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
35
+ mirascope/api/_generated/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
36
+ mirascope/api/_generated/core/client_wrapper.py,sha256=VKeoRFhVJQlHVWupwP-uXTSe0W6IcI_zMTyktTwi7eA,1515
37
+ mirascope/api/_generated/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
38
+ mirascope/api/_generated/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
39
+ mirascope/api/_generated/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
40
+ mirascope/api/_generated/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
41
+ mirascope/api/_generated/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
42
+ mirascope/api/_generated/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
43
+ mirascope/api/_generated/core/pydantic_utilities.py,sha256=HxbbISfaP1XBvzbIkc0ZcF_GHKd9BfYsJAcFh9B126k,10787
44
+ mirascope/api/_generated/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
45
+ mirascope/api/_generated/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
46
+ mirascope/api/_generated/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
47
+ mirascope/api/_generated/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
48
+ mirascope/api/_generated/docs/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
49
+ mirascope/api/_generated/docs/client.py,sha256=bc0oKpBYoy2EnRx0wg1p5xISjG6sviq3lBKTuURRS0Q,2479
50
+ mirascope/api/_generated/docs/raw_client.py,sha256=PSRGwqBYZzAwuduHpiAZMbOJJcJeZKu4-xEiolRoVmU,4595
51
+ mirascope/api/_generated/environments/__init__.py,sha256=x9Fz9SsnkYoHC5xg_wEN5IF6hYdRSxjv3YRSfPG2C6c,385
52
+ mirascope/api/_generated/environments/client.py,sha256=FotJzMClDP_W-1U-sF1jMl0S3xM5O_jsHVGsYH3TYCY,13039
53
+ mirascope/api/_generated/environments/raw_client.py,sha256=mHHkoh1IuZcoa_CWN6Wy3cu1tJ1VgjpLDtXJ5MdHyi8,38656
54
+ mirascope/api/_generated/environments/types/__init__.py,sha256=mMud06Aewplszo1rUPu16IHO3ZdYFZ_MRvZFEiLMTIk,510
55
+ mirascope/api/_generated/environments/types/environments_create_response.py,sha256=cmuKzDllXRM__ZUfetHAWF4Jn-BhJFp6t6-0ZPL7ABA,716
56
+ mirascope/api/_generated/environments/types/environments_get_response.py,sha256=FLmCOukQYh0V9ymZeyRCVjur-IVjz6tPFemhIH07Ep0,713
57
+ mirascope/api/_generated/environments/types/environments_list_response_item.py,sha256=o5vuBGT6PXMgEXhN8SB2Q3h-tzmzrob6wZSExM9TOrk,718
58
+ mirascope/api/_generated/environments/types/environments_update_response.py,sha256=NSn9K_ixPzvLuU7xF2_ON3K4_qHAgMfWsgmcyHCqgiY,716
59
+ mirascope/api/_generated/errors/__init__.py,sha256=LxbP8yy_MOLIIxyTvaKPOiJgG5r8QtNpE1Qv2axNHAM,520
60
+ mirascope/api/_generated/errors/bad_request_error.py,sha256=WUkXaCKda3GZ0Bd_NwcJ6PlK25dB9sfiEVKoq5o8S0I,390
61
+ mirascope/api/_generated/errors/conflict_error.py,sha256=yLQiOX9wO_brWYvLKc0jSuI-b9sQax3umZBAGMtd4hA,387
62
+ mirascope/api/_generated/errors/forbidden_error.py,sha256=MCz9k9nUfJT1aDTTM1c3bDK0ANV4vSliSMZynXLBHV0,397
63
+ mirascope/api/_generated/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
64
+ mirascope/api/_generated/errors/not_found_error.py,sha256=e1m0KLZHBW5nqqnVzLl589k3AXdBgJGiafijhwY9tFI,385
65
+ mirascope/api/_generated/errors/unauthorized_error.py,sha256=d5MEGAcmZ65n2bx1WAVa4goJ2q7uugy6YZyGCs_zHoM,400
66
+ mirascope/api/_generated/functions/__init__.py,sha256=3lTOfL1Tf2IdfCcSgGr8QPnj059otiGBmBLQwLb2dNU,935
67
+ mirascope/api/_generated/functions/client.py,sha256=OywT2OvqYrXkxEcL0kQdQzKWmYrWruJDnM6KKjYbJo4,11463
68
+ mirascope/api/_generated/functions/raw_client.py,sha256=85AXtQC1g6_xN8Uql8m5cXC5y3N7JtOwVV70SUuZk_A,41487
69
+ mirascope/api/_generated/functions/types/__init__.py,sha256=YbJLev-UWJsF98KgkCn7AIi2VkODW6Scd9x5P5gBIDY,1385
70
+ mirascope/api/_generated/functions/types/functions_create_request_dependencies_value.py,sha256=A-bx9nZE0aYoNLuLo6xQYe2GvvUq76ZiBfdJOZ31n2c,603
71
+ mirascope/api/_generated/functions/types/functions_create_response.py,sha256=-NIC1-HuzDHpAfnM4bYgSb1V3EkffqJ3Ud_Mi1LH_iQ,1642
72
+ mirascope/api/_generated/functions/types/functions_create_response_dependencies_value.py,sha256=uH0JsZ4QbarNF1eiVT_go8GbMVndHeBRPe7MOemlpJc,604
73
+ mirascope/api/_generated/functions/types/functions_find_by_hash_response.py,sha256=yjm77Q3bPditf4xK7tVIPR9DkYWoGtt2nAup8px42EE,1676
74
+ mirascope/api/_generated/functions/types/functions_find_by_hash_response_dependencies_value.py,sha256=ZrhLgxa2vDThOc9AgLjSiYMjFBQfLaT-6hRvNgx6pog,608
75
+ mirascope/api/_generated/functions/types/functions_get_response.py,sha256=JLyHjIuf4tWSX6KNjt9_mobSZC9pUuGfwLFOno3i6pw,1630
76
+ mirascope/api/_generated/functions/types/functions_get_response_dependencies_value.py,sha256=OiD6Z39V4cDImDRILIfQfgVlMH3idJz9RQ8p5jG6DWE,601
77
+ mirascope/api/_generated/functions/types/functions_list_response.py,sha256=QFrlBjZugHKQ6oL1bqSvyhg1Tal6ZQG1ZW9rEN8PPMA,682
78
+ mirascope/api/_generated/functions/types/functions_list_response_functions_item.py,sha256=oPJKwQdKo8M0vXVA333SLMI9M-LfpohjEfEn3ktMjl4,1711
79
+ mirascope/api/_generated/functions/types/functions_list_response_functions_item_dependencies_value.py,sha256=wPsajRsxnZ1Ut9dxmnMWOibrJ38IwiR0v-_6x9_P4Dg,615
80
+ mirascope/api/_generated/health/__init__.py,sha256=UN1u0qzFG8zDGf3CABrpMNNEP467lQZKLQfTOpkwm2E,215
81
+ mirascope/api/_generated/health/client.py,sha256=iqLicxinxNofeZfFkQVOv9Xv0o37amPQbDawA3UCVO8,2520
82
+ mirascope/api/_generated/health/raw_client.py,sha256=RMyCLeJvtuUVhFotMZUNcyA54YXy0Bvb3IzesOIbCBw,4289
83
+ mirascope/api/_generated/health/types/__init__.py,sha256=dYIZPgww1FuKOKJTeUWMDad1XYTzQaxp8jbwsfI_THI,272
84
+ mirascope/api/_generated/health/types/health_check_response.py,sha256=OCmNPA0BN9mfNoQKzl1aS2uFwzG60su540pZtC8gFJI,659
85
+ mirascope/api/_generated/health/types/health_check_response_status.py,sha256=eCSX3a4cA5zETaIbLvtYkSeS3585DuJa9VnM1fw3VxE,155
86
+ mirascope/api/_generated/organizations/__init__.py,sha256=im925liJkdIO85phBkURvrT7uNoAz1Gz0lwlv3CToHQ,765
87
+ mirascope/api/_generated/organizations/client.py,sha256=olrfmb8Z-2FuY6GmP7yOCjc_H3SDvjYt5bufRR3natc,11740
88
+ mirascope/api/_generated/organizations/raw_client.py,sha256=GXL5U6SiIGGuoLdhFn1sR16pIPp7Mpg0-4M-mC76JPs,39204
89
+ mirascope/api/_generated/organizations/types/__init__.py,sha256=vVVGjD7ZHJvS4CQ7drBKflh6Z6SP0ucKcFvD0Rg5pVY,1105
90
+ mirascope/api/_generated/organizations/types/organizations_create_response.py,sha256=E3nGwz8zEfyURDeIDuPe0fRRskPCWLdzer-jeCZOWLA,854
91
+ mirascope/api/_generated/organizations/types/organizations_create_response_role.py,sha256=roWFhmJ4rCJro_d9PY7J_aY_1CSy9dVrHVOroB8TTZc,183
92
+ mirascope/api/_generated/organizations/types/organizations_credits_response.py,sha256=erqxwypa4KiGHOtZ1jJWg9PxNHo4BvUI06nsgVF5vKQ,541
93
+ mirascope/api/_generated/organizations/types/organizations_get_response.py,sha256=-81O2sx7tsIllQlRPaNjucrwjHglBhXVtoUAbQpTs34,842
94
+ mirascope/api/_generated/organizations/types/organizations_get_response_role.py,sha256=ss7tx77198U7lfSx4nE1mivQnx1fsNa9yphyXnWIJlU,180
95
+ mirascope/api/_generated/organizations/types/organizations_list_response_item.py,sha256=lYKaFoHzPF8mwZHGhLf_oGMPvF65_pNtlglpWOauvjs,863
96
+ mirascope/api/_generated/organizations/types/organizations_list_response_item_role.py,sha256=QUU5wueSKFMc8ktSmCNKVXOh7t6-ag5C1dk_v4nn9Ak,185
97
+ mirascope/api/_generated/organizations/types/organizations_update_response.py,sha256=ZnFC3ZBe6MjGyrdo15obNTDRjkkS0QNgQ_lUWdY7Yyc,854
98
+ mirascope/api/_generated/organizations/types/organizations_update_response_role.py,sha256=qyCnx6lOhkw0r95dXv7mX9MR2wzQkaHVoVfoIS-vTiw,183
99
+ mirascope/api/_generated/projects/__init__.py,sha256=YEwN_qOHVrlplGeCfkW3R8x-4LzLoBN6jrRNfMlrXoQ,313
100
+ mirascope/api/_generated/projects/client.py,sha256=n56pGfcZaCIRR0ceL21rinLEF-Xyt0VrCjTLh1ytyjQ,11447
101
+ mirascope/api/_generated/projects/raw_client.py,sha256=2uvF0tz97gwWqNYpYHMG9lDayWLn_xH75T_dQuImihg,37268
102
+ mirascope/api/_generated/projects/types/__init__.py,sha256=bDZbRUDWC8tsZqwUob4H-4PSqVRJrCoTWH10g5Ojh30,443
103
+ mirascope/api/_generated/projects/types/projects_create_response.py,sha256=GkbUCfsQQTlM-oX4L87Y3ftZUREO7s98EKjtHnVVxN0,819
104
+ mirascope/api/_generated/projects/types/projects_get_response.py,sha256=SzdRUJ6M2xBjviqsQx-3KIlKApYzvciOCQ3MbxlD5b4,816
105
+ mirascope/api/_generated/projects/types/projects_list_response_item.py,sha256=M3Oc4sZH_Qw-5G2_KjAZmOyxQK1fjjQiALdyB1x7Xyk,821
106
+ mirascope/api/_generated/projects/types/projects_update_response.py,sha256=zxhSs9sm41fHeEyxgcWQrBeMTmnMGyKTHwWegEAu31g,819
107
+ mirascope/api/_generated/traces/__init__.py,sha256=Hwj5kKNVkX7iXoa7t3bYw9XKwTYKv2k8cvEdKoRNJaY,4459
108
+ mirascope/api/_generated/traces/client.py,sha256=MwkViG-VEBhrPjYOtJsQleABKe_G2qu7XVrxEREdKXI,16685
109
+ mirascope/api/_generated/traces/raw_client.py,sha256=JdwNw5T5_I4uj6NRn3hzeGc6uuDA7PEcDijGOhvVqK4,39134
110
+ mirascope/api/_generated/traces/types/__init__.py,sha256=B7p6LkNbvFXHLBZb3YXBUg9PFp6Bor6f8DCW3duouvg,7205
111
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item.py,sha256=8k0xOLNtq5NliwPvWjg0xk31W7YkXbhL4QPxFdjeRAc,1193
112
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource.py,sha256=NQq9S77Yy0Z3vD389idTPLRCyLDc4RQYovtxvlUTOwc,1021
113
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item.py,sha256=LED5nVoE1ZWe4q8Opq1ZtdKZdDiJeC944qNiHD_Kvj0,799
114
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value.py,sha256=EtZLyE2u5yNzwfng0cvb_tdcJoKpmZtc6ADuITHlNOo,1838
115
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_array_value.py,sha256=BT1gVFMVGLqOyxs7ajD8f8aZ7RZi9YxiLNegIR6Y9rM,620
116
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value.py,sha256=dyeQR7V8UNLk6WXqVh7r0QNV0S_NaqbNfJtg7EPRjhU,883
117
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_resource_attributes_item_value_kvlist_value_values_item.py,sha256=jknB6j4y91ZUEDHNdJ7jKHWPsacbai6l3pitBl2BpbU,637
118
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item.py,sha256=GGA3fzgtHnIXhmYZtlwt0yK1stHg4W99PkrTZkPauk0,1194
119
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope.py,sha256=SXn_zVSUx-SiPdPZK_dzy5M6WnGFn9fFs87CcTWmVmA,1139
120
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item.py,sha256=1U2XQuzzYeBXJhnuIPQobmxuReJGaTe02W9YiBzo3QU,846
121
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value.py,sha256=Mr_tuTHECQlqzK_mOfYEHiAz84QpR38c-4Il2AGN-LY,1921
122
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_array_value.py,sha256=-pEaqcxatk0WWTZWENvnYI6wXTZusQRmd-XBausBht0,631
123
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value.py,sha256=Y4PXKRLKAv990GMV8oNdrA3QzGNufrjna_qV2g0Cdzc,930
124
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_scope_attributes_item_value_kvlist_value_values_item.py,sha256=U3M6YoXYpaVQmC69UeMqBYR4RldYItkNRm1YFLGd2zM,654
125
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item.py,sha256=u81MfkMQiaB0QiwEvqbK82G6N68MO496sNzPV__QbXI,2323
126
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item.py,sha256=9L_9QzaCOvHy1lwuJV2QfIZliXiAMuB204tomWBY8eQ,863
127
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value.py,sha256=Xh1g7687ZP540y1ckW7xIkReKcf-xPm7YM-e39V4XU0,1951
128
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_array_value.py,sha256=sv0Pc27OzV7Z1rBiNawrsU8X_f__oH0xNQrnqijbXy8,635
129
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value.py,sha256=qOZBwK4Z2qdbNWSHvXFphiOU21_UWon4D4Px7wvA980,961
130
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_attributes_item_value_kvlist_value_values_item.py,sha256=QPwi-dEtpBQOdNoSOohgjLqtfK3ooGT2iPeRk38-wWw,658
131
+ mirascope/api/_generated/traces/types/traces_create_request_resource_spans_item_scope_spans_item_spans_item_status.py,sha256=e9dLxbrT3y23QCUC7-mLLLCnliNe1XhKgMIqKzZQ4q4,640
132
+ mirascope/api/_generated/traces/types/traces_create_response.py,sha256=PiQTMmPVj7t3802RAR4CyMYisC_vSqn7_Ctx5Y6A7WM,836
133
+ mirascope/api/_generated/traces/types/traces_create_response_partial_success.py,sha256=uGFG7AUmoBVCLzr5HArCNyHldsnnd8W547prECNq7qY,831
134
+ mirascope/api/_generated/traces/types/traces_get_analytics_summary_response.py,sha256=j10hE5Gns3hmDFymjImYK2-vZe95YDjpx-DdDAExCsg,2099
135
+ mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_functions_item.py,sha256=Kr037C3ss3hVH0qrWi2qJwthHeXJttb8qIkLSfWJ9YE,744
136
+ mirascope/api/_generated/traces/types/traces_get_analytics_summary_response_top_models_item.py,sha256=v-KGeMC_0f-oW9S26MF7xVDBpRo-N9ABYWO-kgI0TKE,594
137
+ mirascope/api/_generated/traces/types/traces_get_trace_detail_response.py,sha256=0Qrkq5KPznhKfdgwMAZtb5JfIB7bwwvmeNvxMIy60fw,1122
138
+ mirascope/api/_generated/traces/types/traces_get_trace_detail_response_spans_item.py,sha256=xa5rqYwQnWxkCYkrkVCLrR2P2HKhzg5bm_UZjyB1uiQ,3580
139
+ mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item.py,sha256=T4mt0eENx_rgrkEQ70KTJoZjsjyASqN8IYTQQ4-usWM,793
140
+ mirascope/api/_generated/traces/types/traces_search_request_attribute_filters_item_operator.py,sha256=rw8D6ArkspyfhiuTg22aAmsMzcC9Ms9_f84muwwma8U,212
141
+ mirascope/api/_generated/traces/types/traces_search_request_sort_by.py,sha256=7B7vLEgVzhWD3mB3R4oPzDW0S_KOwtjyRsU0HoNJ-eY,200
142
+ mirascope/api/_generated/traces/types/traces_search_request_sort_order.py,sha256=JDOi0Hm9JJgSVgf5w8MYDNlDXWWhEFfKO55C_sN4dMw,167
143
+ mirascope/api/_generated/traces/types/traces_search_response.py,sha256=WzMs7RWjXZsrvsiKJ-zoBXLaofv64vL1YENr5F0rc8Q,837
144
+ mirascope/api/_generated/traces/types/traces_search_response_spans_item.py,sha256=v4rOn_G3JfC2Z5e0KFmFzbIOlyMkox_o8fyLkBgUjWA,1466
145
+ mirascope/api/_generated/types/__init__.py,sha256=xy1kuyUfgXuDUyLsdTga9FaVcMNxqFTB8Nm-tQf0LXM,1847
146
+ mirascope/api/_generated/types/already_exists_error.py,sha256=30O2D_-CnzDRyYSEKfAFEvKL6dPWc9VNt633j1J1Nl8,661
147
+ mirascope/api/_generated/types/already_exists_error_tag.py,sha256=Gkkp8M2D68eeecqivCeLZdEQ9s_E4-Wian0_SVrRMGU,167
148
+ mirascope/api/_generated/types/click_house_error.py,sha256=kT6Mb4NOGM8EGwmFh13sr9Ols8oR_8-9igV2JvUWO_4,610
149
+ mirascope/api/_generated/types/database_error.py,sha256=bTu0RjXzACVsQaUgm1kP6FriuJju4O54k99j5whf-Ls,661
150
+ mirascope/api/_generated/types/database_error_tag.py,sha256=f7yylB3n3uxnf99qE3w3jLz5F5lCx-thc7px9SvvK9E,157
151
+ mirascope/api/_generated/types/http_api_decode_error.py,sha256=ttpbtVIhr2LEm6IlYVyvXUPaQynodqZe4IryKGx4hP8,743
152
+ mirascope/api/_generated/types/http_api_decode_error_tag.py,sha256=4brH10CC1DEuSmruTFmEuy9rVgpucv9Wsde-4g6oYQM,167
153
+ mirascope/api/_generated/types/internal_server_error_body.py,sha256=AxizCHoNRnGzH27MkpqnwOdAlRrnKe1cZKTJ35-llsQ,1441
154
+ mirascope/api/_generated/types/issue.py,sha256=UH7Vluu2-nde1xkM_wQSox9tBAm9MOMVCJmIl2k4nM4,989
155
+ mirascope/api/_generated/types/issue_tag.py,sha256=aiydCFAGJqClMhG33t5wK4BdT-T1UEMk-lg76ImwLOc,259
156
+ mirascope/api/_generated/types/not_found_error_body.py,sha256=xg1tJCJOSdN13l0psBIXSBxRBb6J4p4OxrQ-fJck_kg,645
157
+ mirascope/api/_generated/types/not_found_error_tag.py,sha256=dQtLl0Mr8uW56l-DVlHqaHxxUaUu4s5p8Dk2nRcx4yk,157
158
+ mirascope/api/_generated/types/number_from_string.py,sha256=P4GqQL6owYChES9O22OcQ4Z-lL1pROFZy3-MgGKMnv8,88
159
+ mirascope/api/_generated/types/permission_denied_error.py,sha256=gcV4fhwJVfx8Fs97hQQ397tGcGVvjIWbCr9nK249dG4,673
160
+ mirascope/api/_generated/types/permission_denied_error_tag.py,sha256=VWaSMhz1SBMF950Y_8hXHN6-0ZgxzmSJySuPSAsQv6k,173
161
+ mirascope/api/_generated/types/property_key.py,sha256=G_qu_0R1rdi2eY-rhTC3NO-IrbdHR0AcgdjSdwIOkBE,181
162
+ mirascope/api/_generated/types/property_key_key.py,sha256=hiSH72vcSGbDPQUl8HwgRqJE8uaEZrHafhH68AJq12Q,674
163
+ mirascope/api/_generated/types/property_key_key_tag.py,sha256=aNrMYf3B6V098Z9-tqlkNH1XvbkX9t2se3x-qbVe0CQ,151
164
+ mirascope/api/_generated/types/stripe_error.py,sha256=VIJ5sZ0Qs6hbAS5aRoMApdSh2VVvB_ut9WMEoqp7Bjc,584
165
+ mirascope/api/_generated/types/unauthorized_error_body.py,sha256=0k725xKXRagfrb1HJoygl87SQvZdd6WEU2ACrDbt694,618
166
+ mirascope/api/_generated/types/unauthorized_error_tag.py,sha256=sx-QdNmQjboMaPni2EVKoorYvWk5OmHHlT5-IBiFhQw,165
167
+ mirascope/llm/__init__.py,sha256=LC7XUCCnTOSKcmKurp_b9n5En6OdJm_kKFszQVvn4w0,5245
168
+ mirascope/llm/exceptions.py,sha256=rxkADeNzENu898sp2YFa9yhsUlYFczX7mh0Su7cmw0I,4831
169
+ mirascope/llm/calls/__init__.py,sha256=rnQ29w8x_EAEecZhP2i6N6u_qE-TO3sBZGAztF3o2QQ,273
170
+ mirascope/llm/calls/calls.py,sha256=tb0GTfH4dxna5RvRjcrS969QPDgWT45t6J3khHzkQ9s,11783
171
+ mirascope/llm/calls/decorator.py,sha256=F2KN-Ur25NyYZ8ir5yDozKP5X_bZTjQGMKTerEDrFnc,8766
172
+ mirascope/llm/content/__init__.py,sha256=4a5UaoiF8OKfXS9j7INFvOnU7bkNpacpiZ6IlLgC6Lc,1926
173
+ mirascope/llm/content/audio.py,sha256=W6liY1PuQ0pF91eDBnNKW52dr-G7-vnd-rhlSqebx9Y,5311
174
+ mirascope/llm/content/document.py,sha256=oz3LSUEhJh-lEUDCss5p_xkPBDYQhAu9m9SGFr64_pI,2369
175
+ mirascope/llm/content/image.py,sha256=lG0nPvObNEva1XjqUJcZI2T7jZ1xhHaSjqsCncg0XEU,6155
176
+ mirascope/llm/content/text.py,sha256=4lDzXXpDy601RAkv9m85InP_CklvLccFATPThBcY1Ho,1099
177
+ mirascope/llm/content/thought.py,sha256=jWtlVWoS-fDjByD-m2SPdPNNxvQhfwfOio0B95j10qU,1729
178
+ mirascope/llm/content/tool_call.py,sha256=W4ZShdrcwaYINadJRy5gVY1DFkzIdELVr0K8BZNsox8,1739
179
+ mirascope/llm/content/tool_output.py,sha256=cCaRvfoR8QFQwnI90rfZjIEkK1GVBia3YJ5BjlOoojs,661
180
+ mirascope/llm/context/__init__.py,sha256=2Bx8CQhTXWbtwMirZ8ppmFKPXjuYezyi10XfmRpAE5I,179
181
+ mirascope/llm/context/_utils.py,sha256=3DbV0NL49m9oZYMUOHJULnVFMu6sO_SXZiriDs1L-vc,1210
182
+ mirascope/llm/context/context.py,sha256=qvmRXsyea34wXP-_0CCe6RwkT3H57dojCw6HHnv8LVc,629
183
+ mirascope/llm/formatting/__init__.py,sha256=lNt1ZWpcpzq6Shrpz9vB_XLPQYQCocJl8EjjsjVQWf4,592
184
+ mirascope/llm/formatting/format.py,sha256=UZLWx6giEGDoctOy2mEl1hRK5zys4lS6OBe4ZWp2UGM,7313
185
+ mirascope/llm/formatting/from_call_args.py,sha256=FfnInMf-KCo6VKIPWsppMSzapWqtGlfKwNMJSkzo2ys,917
186
+ mirascope/llm/formatting/partial.py,sha256=_7WlcHvjNJIVrYGVCGphu5Y6UyZQlKyENp05QAtyJ0Q,1785
187
+ mirascope/llm/formatting/types.py,sha256=y0UAXMwUlD4UV6Mt465Ar6xuv4zznvduM0dWCDzEsSY,2325
188
+ mirascope/llm/mcp/__init__.py,sha256=WaITd9dM6QZqsvBLqHkUhWRYGGlVsgEMF1MN36G7ckM,198
189
+ mirascope/llm/mcp/mcp_client.py,sha256=FNYY7jPnJWNf0T3jo6ZpaTnPouetb7SKR_K_MVFoNjM,4471
190
+ mirascope/llm/messages/__init__.py,sha256=YJ4D-s_vQd76GTRmRstI2i9Yx561plmURf-zrydKjSo,708
191
+ mirascope/llm/messages/message.py,sha256=GkF556Na5H8AMGSMqA6Y4n-uHI3ZKRaq6K9d9acdtaE,6521
192
+ mirascope/llm/models/__init__.py,sha256=gdd4Bp_oVriaQzUnUJ_WNHz32BxrzFShPvXh-Hn4GvY,505
193
+ mirascope/llm/models/models.py,sha256=u4kGRuMsGRa3rLj1TfecEVic4snhxwTSAvhqBTxYe2I,44722
194
+ mirascope/llm/prompts/__init__.py,sha256=rOtSiZvw6vsJl7vCFWzKZnm3haNhnLtPRzPfdbgoH7U,727
195
+ mirascope/llm/prompts/_utils.py,sha256=kwSUdP4etxapheLoQPtB2UFXJs13o2IACWNdEVb_d_s,1951
196
+ mirascope/llm/prompts/decorator.py,sha256=IcQv2lktag5gioEYp5aPtaIe66ZR-i1gaYpj7jk2qVs,6985
197
+ mirascope/llm/prompts/prompts.py,sha256=VcuGDbqT4Z3mBgJIaa0RsTSGkck1MyaxdufkgKHMVcU,14041
198
+ mirascope/llm/prompts/protocols.py,sha256=auopJnLAfOognCFVVnXrvb4zFj3102Ofi2iVHfublM0,2242
199
+ mirascope/llm/providers/__init__.py,sha256=K-QJIrELqa9Z4Ejh1EPHPF3_9i8eCHz4MQILOrcuNGw,2049
200
+ mirascope/llm/providers/model_id.py,sha256=qr7RKkP_3Blgxjzw_HvQVJLM1aTzsP-jVFsycz0itI8,292
201
+ mirascope/llm/providers/provider_id.py,sha256=NfZeoJWJ1UUrbhmaPkbFQGz-utPQGMiMqIaXvrjQMEo,1038
202
+ mirascope/llm/providers/provider_registry.py,sha256=RJZ7al7WlJvHhDjwV3f0KwFsEmSVOA5tN9k-aaRzhsE,7873
203
+ mirascope/llm/providers/anthropic/__init__.py,sha256=t9m32IiohMu6Aqlj7iVBcngY6KiUlJBnJBFyPYttXpY,261
204
+ mirascope/llm/providers/anthropic/beta_provider.py,sha256=pz6_XM0hWyWcj_ZiiyodYgsxuXTE20y7Va_NER1adbs,11655
205
+ mirascope/llm/providers/anthropic/model_id.py,sha256=3Wf4cZG8NUO3i7dHmw3At46JMfTuRWpS8pKYX2s-8B8,715
206
+ mirascope/llm/providers/anthropic/model_info.py,sha256=YuklafFMIpkyLBJSBB0XlB6MK9Bz6hp9Z6APxJ9G1j4,2965
207
+ mirascope/llm/providers/anthropic/provider.py,sha256=s2FXex5MmUjEwlWL2djrI7_Vm32yQs1vALPtBSF5Dkk,14966
208
+ mirascope/llm/providers/anthropic/_utils/__init__.py,sha256=e3jb2NSsWYYgEQ-9r6qOmsnhliEKiZicQ6hI7jRSs4g,586
209
+ mirascope/llm/providers/anthropic/_utils/beta_decode.py,sha256=dae-RIYpz5xv7P0RZuIaaah9Rw-anQp5Cpy6m7yuFg4,10138
210
+ mirascope/llm/providers/anthropic/_utils/beta_encode.py,sha256=w6FMImspt6LcPmoYc1pWfWEmtUVYv-xE26byQhVm2dc,7332
211
+ mirascope/llm/providers/anthropic/_utils/decode.py,sha256=InZRh26KRCnoAi3DbRR-LxSX9-ra8pMJ2I-kvq3JLdo,10374
212
+ mirascope/llm/providers/anthropic/_utils/encode.py,sha256=7xhAerBKF-g2FcZd2cJywtXvYXExsTRlpuotwehgLns,14399
213
+ mirascope/llm/providers/anthropic/_utils/errors.py,sha256=aYwYwePZj6P7dGKgb50YXisPppXKQDGfyCBnwyb64OY,1714
214
+ mirascope/llm/providers/base/__init__.py,sha256=brM1fOik4NbXMoxoT5e-7Fi7iB4_V8goCHJ8puHUoxk,407
215
+ mirascope/llm/providers/base/_utils.py,sha256=3XFoWJLgUd9w3ZLBZAcsi8ORqEvD2yRyX4FD1X4OBsQ,7418
216
+ mirascope/llm/providers/base/base_provider.py,sha256=Ze-KIbt279VZWeiaT0OXsGaRScO1c5sJEAIlnClw734,51826
217
+ mirascope/llm/providers/base/kwargs.py,sha256=pjaHVqtlmScUBqG8ZAllVaLoepdKE-KYl2eTqzOBXm0,406
218
+ mirascope/llm/providers/base/params.py,sha256=OrJJNjgA8iSj36dDIAPCKnR_-a3Ludo35rwQADV-CFE,4956
219
+ mirascope/llm/providers/google/__init__.py,sha256=EuZ4D5aSldPfd1rvG62_l9ERzJzqTyp6276RGRXBiqQ,157
220
+ mirascope/llm/providers/google/message.py,sha256=ryNsMKPSyBSVXl_H0MQEaSiWC3FFybjxIUuORNSiKTk,179
221
+ mirascope/llm/providers/google/model_id.py,sha256=vZJeKT-_J7oiFT5AkudintCFE4DhFJ-VZOFOcLP1rn0,603
222
+ mirascope/llm/providers/google/model_info.py,sha256=AEW-UciRp_62AOzS40G6G0C3He8KkU10ZbfgIDgCxcQ,2019
223
+ mirascope/llm/providers/google/provider.py,sha256=paaT8w3ZJf3GTgnJ100qv96eF-QSntAMGOq780HDRMs,15618
224
+ mirascope/llm/providers/google/_utils/__init__.py,sha256=MXG48jLez-S8hyMV4QVg83OLi20mayqbk-o0gYZ39mQ,293
225
+ mirascope/llm/providers/google/_utils/decode.py,sha256=J59cxuFIEE95_paxV90PLMWFV1VeVXnNRsK9B4iIVkU,11429
226
+ mirascope/llm/providers/google/_utils/encode.py,sha256=oD_8P7D0y6r_2_rLoDC5eubcQFVRLwEDNKVXB1wx9m4,14682
227
+ mirascope/llm/providers/google/_utils/errors.py,sha256=ci410dXx6NuKAkzWJFZjrefhGRnxLUXX3r0W4Uz7Xkg,1381
228
+ mirascope/llm/providers/mirascope/__init__.py,sha256=koKKp7SctUQWBzSMDFMJ-ejWCvCXK3GCIOSAEd406mw,132
229
+ mirascope/llm/providers/mirascope/_utils.py,sha256=FQAq2RJLfXvqHgQ19Gdfe50kPYtFb4DhdzjtvAVf9go,2557
230
+ mirascope/llm/providers/mirascope/provider.py,sha256=E92VKp6mfglcrLEuKCgtgIJbM-CmMP5fsjMtLFtaslc,10912
231
+ mirascope/llm/providers/mlx/__init__.py,sha256=_tJnr28-86i87FbryFFPCYgEqwbcg1NaXb1oUo2s_hY,153
232
+ mirascope/llm/providers/mlx/_utils.py,sha256=kHSdN-7FyVL7s-emEpbZDvQdMmXtmvRCnrvnWusB_Fk,4115
233
+ mirascope/llm/providers/mlx/mlx.py,sha256=SfNpbKkRpJMW984-wVDyhzgMXfUL5Huo3tQfH3OvbPo,8116
234
+ mirascope/llm/providers/mlx/model_id.py,sha256=oHj-ptT4vTPcatHtjDSw7Z7-xs8ACMfYeRoEsKkM6yE,618
235
+ mirascope/llm/providers/mlx/provider.py,sha256=3J1oX9G1xXvnXGIAf9SMDKWxi1SEuztF2SfLwmwO9Xg,14330
236
+ mirascope/llm/providers/mlx/encoding/__init__.py,sha256=qdI7HELeha1wj1OoOn1jH0Xta6yNkI_SDlYbqoWUd0c,163
237
+ mirascope/llm/providers/mlx/encoding/base.py,sha256=5cQX_8RBEgrfiHiUD7waPAmi3Sy_0gkBsFpRvf7VIdE,2228
238
+ mirascope/llm/providers/mlx/encoding/transformers.py,sha256=8tAK9kJfcVRn8ORX6eOeOWSQFd32sJYqPMoRhwlZoYM,5011
239
+ mirascope/llm/providers/ollama/__init__.py,sha256=M6kIJVYg4JYGTCk6Nq1uiu9xl7p6g6nERrVeS71Sn7U,113
240
+ mirascope/llm/providers/ollama/provider.py,sha256=9c0pKDtc--H0SLiyqrjBKzt-Ya8gE9qZ-jpZvKEG90Y,2311
241
+ mirascope/llm/providers/openai/__init__.py,sha256=D1b01XExoHIDdPdoWEBtnEZLZdEL54ASqOrPnt3YfAE,454
242
+ mirascope/llm/providers/openai/model_id.py,sha256=XDQxd2BgG_YIGwzyTRNaySRXoU80-q0AR-xOdtvpB8I,1009
243
+ mirascope/llm/providers/openai/model_info.py,sha256=DN-y-qzq2UahK11hJUe12SB1upRD6BWZkTLhEX092sY,9563
244
+ mirascope/llm/providers/openai/provider.py,sha256=ius7GUMcrEyaEDltZAsp1JFaYJRhlV2EbKkbybxi7Fw,15223
245
+ mirascope/llm/providers/openai/_utils/__init__.py,sha256=jzAtRZEqvbHnJw8iEillZU4tWXedmtTWuE_PqyYUVvM,101
246
+ mirascope/llm/providers/openai/_utils/errors.py,sha256=28O7FW6qH203gShYOh5b1_7GimuESCzIdT32AF86nuQ,1624
247
+ mirascope/llm/providers/openai/completions/__init__.py,sha256=yZ-REySFP37yKjBozFybRu1ZSRPr7r5W4_bOu7z8Ymg,190
248
+ mirascope/llm/providers/openai/completions/base_provider.py,sha256=w10W-lK1XAWktlOs0GM8tqeTOUuE4wXomcH3uTn1OX8,18014
249
+ mirascope/llm/providers/openai/completions/provider.py,sha256=jEH-9rMmNLEBDWVaOZj0rMuRtjwQxdK917tODk-C6pE,719
250
+ mirascope/llm/providers/openai/completions/_utils/__init__.py,sha256=j6brTqACyRS71pkZIcL-LxneE5ALhaHkCtUnBUS0448,266
251
+ mirascope/llm/providers/openai/completions/_utils/decode.py,sha256=C-hSaLcxrN0JzYkWYLweIqd6Eq1-QF0Bt9NH2XET2sc,8951
252
+ mirascope/llm/providers/openai/completions/_utils/encode.py,sha256=aypwtBc2VcplwhboTl1Sit-N2U5D61DNRnnD5NNg1Bk,13796
253
+ mirascope/llm/providers/openai/responses/__init__.py,sha256=_r-w3uzGYdP9T7v2c__izSOXbolrg8axmK6j9TTRgbA,92
254
+ mirascope/llm/providers/openai/responses/provider.py,sha256=vjwJ7weexDmeYbiQCql2yNmLnLejGJoGODd-WDSNkBo,16630
255
+ mirascope/llm/providers/openai/responses/_utils/__init__.py,sha256=U2VNfEJCaqorAJBZDV7p3rFEp1fyk7vSitYFv_5G5Cs,232
256
+ mirascope/llm/providers/openai/responses/_utils/decode.py,sha256=EM9J0DqwHxU1Vt_YG5w5216ESd1mgGNQAyhL-QmcpcE,9426
257
+ mirascope/llm/providers/openai/responses/_utils/encode.py,sha256=EDqjpFy0e4d-2DrHAPhlKxmKsSa_flxAmHHKugDyzqY,13583
258
+ mirascope/llm/providers/together/__init__.py,sha256=ukc99bsfsYB0fq4alaRqClxFG3bKJ0eYGPj7AfjLnpM,122
259
+ mirascope/llm/providers/together/provider.py,sha256=LauQR6kdxFNkO8CqaJIbiyn2TxI6mO3z5GhnZbHxQa0,1295
260
+ mirascope/llm/responses/__init__.py,sha256=sYr6Sm9G0pxbZoev-RVgz3o3FKHeAU3wa_G5NXjmdnw,1386
261
+ mirascope/llm/responses/_utils.py,sha256=JkKXzG6-WqAbbmWLKOmbe7gDpp9xwg7xNHXryFbt6ME,1662
262
+ mirascope/llm/responses/base_response.py,sha256=5yjVtn3SH09hdp--B3ioT2gkmB3LpqgkBEAKuopOKBc,4170
263
+ mirascope/llm/responses/base_stream_response.py,sha256=rS5SBtnqWo7sXnqeYeVUwj7sYG-J_fwuoChI5ZPLp8A,29640
264
+ mirascope/llm/responses/finish_reason.py,sha256=Az5OY6pfZoOPEpzVnl07AqZPz5ZC-w4YKwpUPbFJGdM,798
265
+ mirascope/llm/responses/response.py,sha256=zbMWIOwYQq7Z0JgdfRpm4Qzy5Yb7Suty_vmf1kZuenE,12494
266
+ mirascope/llm/responses/root_response.py,sha256=lgfSwlhy5S-X4FDX70vt-uT6BOLfaTTaGIFbLkdWE94,6285
267
+ mirascope/llm/responses/stream_response.py,sha256=ut85tOLGbGI3abheHKf55qEndLsRmddo1sEMQk7PtNo,24142
268
+ mirascope/llm/responses/streams.py,sha256=TmEFvLVEWHfVYplik61yUWisxe8JGbaZdh7yC7e-axI,10789
269
+ mirascope/llm/responses/usage.py,sha256=mm4f9EDBzR57bqPTG2B0iqYnwbyog7csHqo0zjnwWVM,2984
270
+ mirascope/llm/tools/__init__.py,sha256=P9NX6pP5fKScTAuR9K3fODdW17wQ-6fcArVx2klGies,961
271
+ mirascope/llm/tools/_utils.py,sha256=mUi6vUEwYuwu8W9FCQcQ_9h_VE_U-Y3Y2UQ2YptPZL4,1171
272
+ mirascope/llm/tools/decorator.py,sha256=9Cpg70OOPWXVS_WD1ThPTQaOGrAobEqdijvcU7jiBf4,5442
273
+ mirascope/llm/tools/protocols.py,sha256=pUgGuh4TilRuoipeEHfTzu5cXacMnUpz0Q5YXQyAY2I,3050
274
+ mirascope/llm/tools/tool_schema.py,sha256=LGpgSNxw5RhZCe_KelSBOZauGafSMxx5-ARv-GJZ5IA,9998
275
+ mirascope/llm/tools/toolkit.py,sha256=pGXchFSO2H7PxFM2sPQYEMDAYHNaX9bhGEyyou_4vsg,4900
276
+ mirascope/llm/tools/tools.py,sha256=r6dGVC3lxec_ZYt7rqg1uvX9RFwSM4kLJvotjaxDIq4,8733
277
+ mirascope/llm/types/__init__.py,sha256=lqzi1FkZ-s-D9-KQzVkAHuQQ1zp6B6yM3r9UNo46teE,357
278
+ mirascope/llm/types/dataclass.py,sha256=y4_9M3Yqw_4I-H0V4TwvgGIp6JvRdtpW11NxqufnsJk,247
279
+ mirascope/llm/types/jsonable.py,sha256=KY6l21_RBhlHQRXQ_xy6pUqqbTVb_jVFSU4ykRy_OLU,1104
280
+ mirascope/llm/types/type_vars.py,sha256=OsAcQAZh5T_X8ZTLlP4GC1x3qgVY9rfYSnME8aMTDxw,642
281
+ mirascope/ops/__init__.py,sha256=cQunZzLLyhercMxq7hUKnLkflFN9-vIvfIt0MX9J3fY,2507
282
+ mirascope/ops/exceptions.py,sha256=N5AES285tTxFJ1THIeJht-_ZEQ7-7_FWoes4EBAu3B8,641
283
+ mirascope/ops/_internal/__init__.py,sha256=yCf8bnHiQFWYsBkwBPyMqknI5apmOwlmyf105mH9EAE,173
284
+ mirascope/ops/_internal/closure.py,sha256=lPkZLfL33OZ3yxdZhT3RXqhD0ychKWH0zevU4V-VHCY,42465
285
+ mirascope/ops/_internal/configuration.py,sha256=G_DnUfrAtuPb0-fQQpPts0yFCLdeYW-RqS2Td61pqjg,3616
286
+ mirascope/ops/_internal/context.py,sha256=G0Jiv6XfWjeDyRrh5-Wg6I0UlqiDj17SNMhtQ6Rw3lM,2522
287
+ mirascope/ops/_internal/propagation.py,sha256=2in7uttv2b5MBoe3Ol1mgn6N20TqhH0sErGak7hMUDY,7032
288
+ mirascope/ops/_internal/protocols.py,sha256=QnWuTlC-FC0hB4SFKIbd4bPNtvRHZt7HtjNXaUnWC-k,1666
289
+ mirascope/ops/_internal/session.py,sha256=-7r2TbJiAKeEQ0YaJ9X_2BlumLK7x6h9wP6f8ei-5GA,4105
290
+ mirascope/ops/_internal/spans.py,sha256=Mx4x2sSYYIhibcHKr99TTboUdGrSPV09NpftJD5kkBE,7675
291
+ mirascope/ops/_internal/traced_calls.py,sha256=zMvAD3JMER5RmfScv3R9CaJxAWqQMhel_MTrvDyM1-w,12888
292
+ mirascope/ops/_internal/traced_functions.py,sha256=YbXTRMXQpNDHu6Svs9Bi6-N8m1f25_3hssbV3E8X_vk,14748
293
+ mirascope/ops/_internal/tracing.py,sha256=d3BQwjR7aUsn1RdsDLoMIDg71CbwR9xo4gqDvXFlaMA,7808
294
+ mirascope/ops/_internal/types.py,sha256=5B1RgChTEbGkLZvdoX8XA2vMKn4bS8BczjGDElxmugI,412
295
+ mirascope/ops/_internal/utils.py,sha256=-qnKlrquo87EPD-_7NstJbzXVUWuuIbhSRnFdMi1ovI,2474
296
+ mirascope/ops/_internal/versioned_calls.py,sha256=7oePDEuf98ph6yrHKJmXSagc1mGz5sdTTJgQnB2CyHM,18445
297
+ mirascope/ops/_internal/versioned_functions.py,sha256=lX0jgOPdtaajFM8kEkkEBRbGCrLuTo65EApnYCSDo_U,13522
298
+ mirascope/ops/_internal/versioning.py,sha256=MxiezWrGUPiLZxZnwwXDFTR7EMrfTHR7rmd14TuDCL8,8286
299
+ mirascope/ops/_internal/exporters/__init__.py,sha256=3PUd75TczW_8bUImcWgddWyoRmygGf6T_jL7Jo3t_sY,608
300
+ mirascope/ops/_internal/exporters/exporters.py,sha256=YQtV605xMxCT2FixFvHNi2zpxeoTKZGKc7Xn0cjq4x8,12798
301
+ mirascope/ops/_internal/exporters/processors.py,sha256=hkNwA5m0e_KJoPQf_EPUaK6ItZlJ8D5TCBs-JAhGKXo,3511
302
+ mirascope/ops/_internal/exporters/types.py,sha256=1ge7nwNQ3HUH4qVoYeHhSUp3LxohkvDSoqPw2MDLEqw,4057
303
+ mirascope/ops/_internal/exporters/utils.py,sha256=zDZihsj4BxLZH3o2RKCofCvSUf4Nbo8Yro2dqkm0rI4,727
304
+ mirascope/ops/_internal/instrumentation/__init__.py,sha256=Fz2WUX_vFvLqHbMxkuVQAGRXyWkk9Oqug8DcA-oa4p8,180
305
+ mirascope/ops/_internal/instrumentation/llm/__init__.py,sha256=_L6JL3sw6XbW9ICsWe4RZpkT-_BFSIBbh_n00O9h_SM,184
306
+ mirascope/ops/_internal/instrumentation/llm/encode.py,sha256=y8zj51kKDsAQImyNJrhUCeydhEDjUAtCAqX8KiZ320M,8348
307
+ mirascope/ops/_internal/instrumentation/llm/llm.py,sha256=zDiEHRepH4xF0idD5UAcCgj7YepIPrTUgJMAvrf_aAc,39335
308
+ mirascope/ops/_internal/instrumentation/llm/gen_ai_types/__init__.py,sha256=37jQoprefVlma7K9SJih78TbRqvKyx_PDRNLS31Y_kc,813
309
+ mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_input_messages.py,sha256=T35Lrskt0OvMu2kF98V2dgVhnQoRy_3ZJ2yTYgyxm48,758
310
+ mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_output_messages.py,sha256=qxLxSmwd_2EdymR4a5cDXc9DTSFGQXMhqSHGgS219Y4,957
311
+ mirascope/ops/_internal/instrumentation/llm/gen_ai_types/gen_ai_system_instructions.py,sha256=ZkWNOh6-tG6LtFP_0Hjfdf_8BqAsIFyP3tNybeo1FnY,388
312
+ mirascope/ops/_internal/instrumentation/llm/gen_ai_types/shared.py,sha256=JpmcF1i25EHc8KMv6nkpBwyIU46B_T8v1L71C16n080,3004
313
+ mirascope-2.0.0a6.dist-info/METADATA,sha256=8ZIRZFpcXw8EfhGlBjbmbBVE0FYay9uLC9nt-T31z_U,8936
314
+ mirascope-2.0.0a6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
315
+ mirascope-2.0.0a6.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
316
+ mirascope-2.0.0a6.dist-info/RECORD,,
@@ -1,78 +0,0 @@
1
- """Utilities for the formatting module."""
2
-
3
- import inspect
4
- import json
5
- from typing import Any, cast
6
-
7
- from ..tools import FORMAT_TOOL_NAME, ToolFn, ToolParameterSchema, ToolSchema
8
- from .types import Format, FormattableT, FormattingMode
9
-
10
- TOOL_MODE_INSTRUCTIONS = f"""Always respond to the user's query using the {FORMAT_TOOL_NAME} tool for structured output."""
11
-
12
-
13
- JSON_MODE_INSTRUCTIONS = (
14
- "Respond only with valid JSON that matches this exact schema:\n{json_schema}"
15
- )
16
-
17
-
18
- def default_formatting_instructions(
19
- schema: dict[str, object], mode: FormattingMode
20
- ) -> str | None:
21
- """Generate formatting instructions for the given mode and format info."""
22
-
23
- if mode == "tool":
24
- return TOOL_MODE_INSTRUCTIONS
25
- elif mode == "json":
26
- json_schema = json.dumps(schema, indent=2)
27
- instructions = JSON_MODE_INSTRUCTIONS.format(json_schema=json_schema)
28
- return inspect.cleandoc(instructions)
29
-
30
-
31
- def create_tool_schema(
32
- format: Format[FormattableT],
33
- ) -> ToolSchema[ToolFn[..., None]]:
34
- """Convert a `Format` to a `ToolSchema` for format parsing.
35
-
36
- Args:
37
- format: The `Format` instance containing schema and metadata
38
-
39
- Returns:
40
- `ToolSchema` for the format tool
41
- """
42
-
43
- schema_dict: dict[str, Any] = format.schema.copy()
44
- schema_dict["type"] = "object"
45
-
46
- properties = schema_dict.get("properties")
47
- if not properties or not isinstance(properties, dict):
48
- properties = {} # pragma: no cover
49
- properties = cast(dict[str, Any], properties)
50
- required: list[str] = list(properties.keys())
51
-
52
- description = (
53
- f"Use this tool to extract data in {format.name} format for a final response."
54
- )
55
- if format.description:
56
- description += "\n" + format.description
57
-
58
- parameters = ToolParameterSchema(
59
- properties=properties,
60
- required=required,
61
- additionalProperties=False,
62
- )
63
- if "$defs" in schema_dict and isinstance(schema_dict["$defs"], dict):
64
- parameters.defs = schema_dict["$defs"]
65
-
66
- def _unused_format_fn() -> None:
67
- raise TypeError(
68
- "Format tool function should not be called."
69
- ) # pragma: no cover
70
-
71
- tool_schema = cast(ToolSchema[ToolFn[..., None]], ToolSchema.__new__(ToolSchema))
72
- tool_schema.fn = _unused_format_fn
73
- tool_schema.name = FORMAT_TOOL_NAME
74
- tool_schema.description = description
75
- tool_schema.parameters = parameters
76
- tool_schema.strict = True
77
-
78
- return tool_schema
@@ -1,118 +0,0 @@
1
- import contextlib
2
- from collections.abc import AsyncIterator, Callable
3
- from datetime import timedelta
4
-
5
- import httpx
6
- from mcp import ClientSession
7
- from mcp.client.session import ListRootsFnT, SamplingFnT
8
- from mcp.client.sse import sse_client as mcp_sse_client
9
- from mcp.client.stdio import StdioServerParameters
10
- from mcp.client.streamable_http import (
11
- streamablehttp_client as mcp_streamablehttp_client,
12
- )
13
- from mcp.shared._httpx_utils import McpHttpClientFactory
14
-
15
- from ..tools import AsyncTool
16
-
17
-
18
- class MCPClient:
19
- """Mirascope wrapper around a MCP ClientSession.
20
-
21
- It provides a way to get MCP results that are pre-converted into Mirascope-friendly
22
- types.
23
-
24
- The underlying MCP ClientSession may be accessed by .session if needed.
25
- """
26
-
27
- def __init__(self, session: ClientSession) -> None:
28
- self._session = session
29
-
30
- @property
31
- def session(self) -> ClientSession:
32
- """Access the underlying MCP ClientSession if needed."""
33
- return self._session
34
-
35
- async def list_tools(self) -> list[AsyncTool]:
36
- """List all tools available on the MCP server.
37
-
38
- Returns:
39
- A list of dynamically created `llm.Tool`s.
40
- """
41
- raise NotImplementedError()
42
-
43
-
44
- @contextlib.asynccontextmanager
45
- async def streamablehttp_client(
46
- url: str,
47
- headers: dict[str, str] | None = None,
48
- timeout: float | timedelta | None = None,
49
- sse_read_timeout: float | timedelta | None = None,
50
- terminate_on_close: bool = True,
51
- httpx_client_factory: McpHttpClientFactory | None = None,
52
- auth: httpx.Auth | None = None,
53
- ) -> AsyncIterator[MCPClient]:
54
- """Create a Mirascope MCPClient using StreamableHTTP."""
55
- kwargs = {}
56
- if headers is not None:
57
- kwargs["headers"] = headers
58
- if timeout is not None:
59
- kwargs["timeout"] = timeout
60
- if sse_read_timeout is not None:
61
- kwargs["sse_read_timeout"] = sse_read_timeout
62
- if httpx_client_factory is not None:
63
- kwargs["httpx_client_factory"] = httpx_client_factory
64
- if auth is not None:
65
- kwargs["auth"] = auth
66
-
67
- async with (
68
- mcp_streamablehttp_client(
69
- url,
70
- terminate_on_close=terminate_on_close,
71
- **kwargs,
72
- ) as (read, write, get_session_id),
73
- ClientSession(
74
- read,
75
- write,
76
- ) as session,
77
- ):
78
- await session.initialize()
79
- yield MCPClient(session)
80
-
81
-
82
- @contextlib.asynccontextmanager
83
- async def stdio_client(
84
- server_parameters: StdioServerParameters,
85
- read_stream_exception_handler: Callable[[Exception], None] | None = None,
86
- ) -> AsyncIterator[MCPClient]:
87
- """Create a Mirascope MCPClient using stdio."""
88
-
89
- async with (
90
- ClientSession(None, None) as session, # pyright: ignore [reportArgumentType]
91
- ):
92
- raise NotImplementedError()
93
- await session.initialize()
94
- yield MCPClient(session)
95
-
96
-
97
- @contextlib.asynccontextmanager
98
- async def sse_client(
99
- url: str,
100
- list_roots_callback: ListRootsFnT | None = None,
101
- read_timeout_seconds: timedelta | None = None,
102
- sampling_callback: SamplingFnT | None = None,
103
- session: ClientSession | None = None,
104
- ) -> AsyncIterator[MCPClient]:
105
- """Create a Mirascope MCPClient using sse."""
106
-
107
- async with (
108
- mcp_sse_client(url) as (read, write),
109
- ClientSession(
110
- read,
111
- write,
112
- read_timeout_seconds=read_timeout_seconds,
113
- sampling_callback=sampling_callback,
114
- list_roots_callback=list_roots_callback,
115
- ) as session,
116
- ):
117
- await session.initialize()
118
- yield MCPClient(session)
@@ -1,49 +0,0 @@
1
- """Utilities for handling optional provider dependencies."""
2
-
3
- from collections.abc import Callable
4
-
5
-
6
- def create_import_error_stub(
7
- package_name: str, client_name: str
8
- ) -> Callable[..., None]: # pragma: no cover
9
- """Create a stub that raises ImportError when called.
10
-
11
- Args:
12
- package_name: The package/extra name (e.g., "anthropic", "openai", "google")
13
- client_name: The client name for the error message (e.g., "AnthropicProvider")
14
-
15
- Returns:
16
- A callable that raises `ImportError` with helpful message.
17
- """
18
-
19
- def _raise_not_installed() -> None:
20
- raise ImportError(
21
- f"The '{package_name}' package is required to use {client_name}. "
22
- f"Install it with: `uv add 'mirascope[{package_name}]'`. "
23
- "Or use `uv add 'mirascope[all]'` to support all providers."
24
- )
25
-
26
- return _raise_not_installed
27
-
28
-
29
- def create_provider_stub(
30
- package_name: str, provider_name: str
31
- ) -> type: # pragma: no cover
32
- """Create a stub provider class that raises ImportError when instantiated.
33
-
34
- Args:
35
- package_name: The package/extra name (e.g., "anthropic", "openai", "google")
36
- provider_name: The client name for the error message (e.g., "AnthropicProvider")
37
-
38
- Returns:
39
- A stub class that raises `ImportError` on instantiation.
40
- """
41
- error_fn = create_import_error_stub(package_name, provider_name)
42
-
43
- class _ClientStub:
44
- """Stub client that raises `ImportError` when instantiated."""
45
-
46
- def __init__(self) -> None:
47
- error_fn()
48
-
49
- return _ClientStub
@@ -1,54 +0,0 @@
1
- from functools import lru_cache
2
-
3
- from .anthropic import AnthropicProvider
4
- from .base import Provider
5
- from .google import GoogleProvider
6
- from .mlx import MLXProvider
7
- from .ollama import OllamaProvider
8
- from .openai import OpenAIProvider
9
- from .openai.completions.provider import OpenAICompletionsProvider
10
- from .openai.responses.provider import OpenAIResponsesProvider
11
- from .provider_id import ProviderId
12
- from .together import TogetherProvider
13
-
14
-
15
- @lru_cache(maxsize=256)
16
- def load_provider(
17
- provider_id: ProviderId, *, api_key: str | None = None, base_url: str | None = None
18
- ) -> Provider:
19
- """Create a cached provider instance for the specified provider id.
20
-
21
- Args:
22
- provider_id: The provider name ("openai", "anthropic", or "google").
23
- api_key: API key for authentication. If None, uses provider-specific env var.
24
- base_url: Base URL for the API. If None, uses provider-specific env var.
25
-
26
- Returns:
27
- A cached provider instance for the specified provider with the given parameters.
28
-
29
- Raises:
30
- ValueError: If the provider_id is not supported.
31
- """
32
- match provider_id:
33
- case "anthropic":
34
- return AnthropicProvider(api_key=api_key, base_url=base_url)
35
- case "google":
36
- return GoogleProvider(api_key=api_key, base_url=base_url)
37
- case "mlx": # pragma: no cover (MLX is only available on macOS)
38
- return MLXProvider()
39
- case "ollama":
40
- return OllamaProvider(api_key=api_key, base_url=base_url)
41
- case "openai":
42
- return OpenAIProvider(api_key=api_key, base_url=base_url)
43
- case "openai:completions":
44
- return OpenAICompletionsProvider(api_key=api_key, base_url=base_url)
45
- case "openai:responses":
46
- return OpenAIResponsesProvider(api_key=api_key, base_url=base_url)
47
- case "together":
48
- return TogetherProvider(api_key=api_key, base_url=base_url)
49
- case _: # pragma: no cover
50
- raise ValueError(f"Unknown provider: '{provider_id}'")
51
-
52
-
53
- load = load_provider
54
- """Convenient alias as `llm.providers.load`"""