mirascope 1.25.7__py3-none-any.whl → 2.0.0a0__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 (474) hide show
  1. mirascope/__init__.py +3 -59
  2. mirascope/graphs/__init__.py +22 -0
  3. mirascope/{experimental/graphs → graphs}/finite_state_machine.py +70 -159
  4. mirascope/llm/__init__.py +206 -16
  5. mirascope/llm/agents/__init__.py +15 -0
  6. mirascope/llm/agents/agent.py +97 -0
  7. mirascope/llm/agents/agent_template.py +45 -0
  8. mirascope/llm/agents/decorator.py +176 -0
  9. mirascope/llm/calls/__init__.py +16 -0
  10. mirascope/llm/calls/base_call.py +33 -0
  11. mirascope/llm/calls/calls.py +315 -0
  12. mirascope/llm/calls/decorator.py +255 -0
  13. mirascope/llm/clients/__init__.py +34 -0
  14. mirascope/llm/clients/anthropic/__init__.py +11 -0
  15. mirascope/llm/clients/anthropic/_utils/__init__.py +13 -0
  16. mirascope/llm/clients/anthropic/_utils/decode.py +244 -0
  17. mirascope/llm/clients/anthropic/_utils/encode.py +243 -0
  18. mirascope/llm/clients/anthropic/clients.py +819 -0
  19. mirascope/llm/clients/anthropic/model_ids.py +8 -0
  20. mirascope/llm/clients/base/__init__.py +15 -0
  21. mirascope/llm/clients/base/_utils.py +192 -0
  22. mirascope/llm/clients/base/client.py +1256 -0
  23. mirascope/llm/clients/base/kwargs.py +12 -0
  24. mirascope/llm/clients/base/params.py +93 -0
  25. mirascope/llm/clients/google/__init__.py +6 -0
  26. mirascope/llm/clients/google/_utils/__init__.py +13 -0
  27. mirascope/llm/clients/google/_utils/decode.py +231 -0
  28. mirascope/llm/clients/google/_utils/encode.py +279 -0
  29. mirascope/llm/clients/google/clients.py +853 -0
  30. mirascope/llm/clients/google/message.py +7 -0
  31. mirascope/llm/clients/google/model_ids.py +15 -0
  32. mirascope/llm/clients/openai/__init__.py +25 -0
  33. mirascope/llm/clients/openai/completions/__init__.py +9 -0
  34. mirascope/llm/clients/openai/completions/_utils/__init__.py +13 -0
  35. mirascope/llm/clients/openai/completions/_utils/decode.py +187 -0
  36. mirascope/llm/clients/openai/completions/_utils/encode.py +358 -0
  37. mirascope/llm/clients/openai/completions/_utils/model_features.py +81 -0
  38. mirascope/llm/clients/openai/completions/clients.py +833 -0
  39. mirascope/llm/clients/openai/completions/model_ids.py +8 -0
  40. mirascope/llm/clients/openai/responses/__init__.py +9 -0
  41. mirascope/llm/clients/openai/responses/_utils/__init__.py +13 -0
  42. mirascope/llm/clients/openai/responses/_utils/decode.py +194 -0
  43. mirascope/llm/clients/openai/responses/_utils/encode.py +333 -0
  44. mirascope/llm/clients/openai/responses/_utils/model_features.py +87 -0
  45. mirascope/llm/clients/openai/responses/clients.py +832 -0
  46. mirascope/llm/clients/openai/responses/model_ids.py +8 -0
  47. mirascope/llm/clients/openai/shared/__init__.py +7 -0
  48. mirascope/llm/clients/openai/shared/_utils.py +55 -0
  49. mirascope/llm/clients/providers.py +175 -0
  50. mirascope/llm/content/__init__.py +70 -0
  51. mirascope/llm/content/audio.py +173 -0
  52. mirascope/llm/content/document.py +94 -0
  53. mirascope/llm/content/image.py +206 -0
  54. mirascope/llm/content/text.py +47 -0
  55. mirascope/llm/content/thought.py +58 -0
  56. mirascope/llm/content/tool_call.py +63 -0
  57. mirascope/llm/content/tool_output.py +26 -0
  58. mirascope/llm/context/__init__.py +6 -0
  59. mirascope/llm/context/_utils.py +28 -0
  60. mirascope/llm/context/context.py +24 -0
  61. mirascope/llm/exceptions.py +105 -0
  62. mirascope/llm/formatting/__init__.py +22 -0
  63. mirascope/llm/formatting/_utils.py +74 -0
  64. mirascope/llm/formatting/format.py +104 -0
  65. mirascope/llm/formatting/from_call_args.py +30 -0
  66. mirascope/llm/formatting/partial.py +58 -0
  67. mirascope/llm/formatting/types.py +109 -0
  68. mirascope/llm/mcp/__init__.py +5 -0
  69. mirascope/llm/mcp/client.py +118 -0
  70. mirascope/llm/messages/__init__.py +32 -0
  71. mirascope/llm/messages/message.py +182 -0
  72. mirascope/llm/models/__init__.py +16 -0
  73. mirascope/llm/models/models.py +1243 -0
  74. mirascope/llm/prompts/__init__.py +33 -0
  75. mirascope/llm/prompts/_utils.py +60 -0
  76. mirascope/llm/prompts/decorator.py +286 -0
  77. mirascope/llm/prompts/protocols.py +99 -0
  78. mirascope/llm/responses/__init__.py +57 -0
  79. mirascope/llm/responses/_utils.py +56 -0
  80. mirascope/llm/responses/base_response.py +91 -0
  81. mirascope/llm/responses/base_stream_response.py +697 -0
  82. mirascope/llm/responses/finish_reason.py +27 -0
  83. mirascope/llm/responses/response.py +345 -0
  84. mirascope/llm/responses/root_response.py +177 -0
  85. mirascope/llm/responses/stream_response.py +572 -0
  86. mirascope/llm/responses/streams.py +363 -0
  87. mirascope/llm/tools/__init__.py +40 -0
  88. mirascope/llm/tools/_utils.py +25 -0
  89. mirascope/llm/tools/decorator.py +175 -0
  90. mirascope/llm/tools/protocols.py +96 -0
  91. mirascope/llm/tools/tool_schema.py +246 -0
  92. mirascope/llm/tools/toolkit.py +152 -0
  93. mirascope/llm/tools/tools.py +169 -0
  94. mirascope/llm/types/__init__.py +22 -0
  95. mirascope/llm/types/dataclass.py +9 -0
  96. mirascope/llm/types/jsonable.py +44 -0
  97. mirascope/llm/types/type_vars.py +19 -0
  98. mirascope-2.0.0a0.dist-info/METADATA +117 -0
  99. mirascope-2.0.0a0.dist-info/RECORD +101 -0
  100. mirascope/beta/__init__.py +0 -3
  101. mirascope/beta/openai/__init__.py +0 -17
  102. mirascope/beta/openai/realtime/__init__.py +0 -13
  103. mirascope/beta/openai/realtime/_utils/__init__.py +0 -3
  104. mirascope/beta/openai/realtime/_utils/_audio.py +0 -74
  105. mirascope/beta/openai/realtime/_utils/_protocols.py +0 -50
  106. mirascope/beta/openai/realtime/realtime.py +0 -500
  107. mirascope/beta/openai/realtime/recording.py +0 -98
  108. mirascope/beta/openai/realtime/tool.py +0 -113
  109. mirascope/beta/rag/__init__.py +0 -24
  110. mirascope/beta/rag/base/__init__.py +0 -22
  111. mirascope/beta/rag/base/chunkers/__init__.py +0 -2
  112. mirascope/beta/rag/base/chunkers/base_chunker.py +0 -37
  113. mirascope/beta/rag/base/chunkers/text_chunker.py +0 -33
  114. mirascope/beta/rag/base/config.py +0 -8
  115. mirascope/beta/rag/base/document.py +0 -11
  116. mirascope/beta/rag/base/embedders.py +0 -35
  117. mirascope/beta/rag/base/embedding_params.py +0 -18
  118. mirascope/beta/rag/base/embedding_response.py +0 -30
  119. mirascope/beta/rag/base/query_results.py +0 -7
  120. mirascope/beta/rag/base/vectorstore_params.py +0 -18
  121. mirascope/beta/rag/base/vectorstores.py +0 -37
  122. mirascope/beta/rag/chroma/__init__.py +0 -11
  123. mirascope/beta/rag/chroma/types.py +0 -62
  124. mirascope/beta/rag/chroma/vectorstores.py +0 -121
  125. mirascope/beta/rag/cohere/__init__.py +0 -11
  126. mirascope/beta/rag/cohere/embedders.py +0 -87
  127. mirascope/beta/rag/cohere/embedding_params.py +0 -29
  128. mirascope/beta/rag/cohere/embedding_response.py +0 -29
  129. mirascope/beta/rag/cohere/py.typed +0 -0
  130. mirascope/beta/rag/openai/__init__.py +0 -11
  131. mirascope/beta/rag/openai/embedders.py +0 -144
  132. mirascope/beta/rag/openai/embedding_params.py +0 -18
  133. mirascope/beta/rag/openai/embedding_response.py +0 -14
  134. mirascope/beta/rag/openai/py.typed +0 -0
  135. mirascope/beta/rag/pinecone/__init__.py +0 -19
  136. mirascope/beta/rag/pinecone/types.py +0 -143
  137. mirascope/beta/rag/pinecone/vectorstores.py +0 -148
  138. mirascope/beta/rag/weaviate/__init__.py +0 -6
  139. mirascope/beta/rag/weaviate/types.py +0 -92
  140. mirascope/beta/rag/weaviate/vectorstores.py +0 -103
  141. mirascope/core/__init__.py +0 -109
  142. mirascope/core/anthropic/__init__.py +0 -31
  143. mirascope/core/anthropic/_call.py +0 -67
  144. mirascope/core/anthropic/_call_kwargs.py +0 -13
  145. mirascope/core/anthropic/_thinking.py +0 -70
  146. mirascope/core/anthropic/_utils/__init__.py +0 -16
  147. mirascope/core/anthropic/_utils/_convert_common_call_params.py +0 -25
  148. mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -21
  149. mirascope/core/anthropic/_utils/_convert_message_params.py +0 -102
  150. mirascope/core/anthropic/_utils/_get_json_output.py +0 -31
  151. mirascope/core/anthropic/_utils/_handle_stream.py +0 -113
  152. mirascope/core/anthropic/_utils/_message_param_converter.py +0 -154
  153. mirascope/core/anthropic/_utils/_setup_call.py +0 -146
  154. mirascope/core/anthropic/call_params.py +0 -44
  155. mirascope/core/anthropic/call_response.py +0 -226
  156. mirascope/core/anthropic/call_response_chunk.py +0 -152
  157. mirascope/core/anthropic/dynamic_config.py +0 -40
  158. mirascope/core/anthropic/py.typed +0 -0
  159. mirascope/core/anthropic/stream.py +0 -204
  160. mirascope/core/anthropic/tool.py +0 -101
  161. mirascope/core/azure/__init__.py +0 -31
  162. mirascope/core/azure/_call.py +0 -67
  163. mirascope/core/azure/_call_kwargs.py +0 -13
  164. mirascope/core/azure/_utils/__init__.py +0 -14
  165. mirascope/core/azure/_utils/_convert_common_call_params.py +0 -26
  166. mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -21
  167. mirascope/core/azure/_utils/_convert_message_params.py +0 -121
  168. mirascope/core/azure/_utils/_get_credential.py +0 -33
  169. mirascope/core/azure/_utils/_get_json_output.py +0 -27
  170. mirascope/core/azure/_utils/_handle_stream.py +0 -130
  171. mirascope/core/azure/_utils/_message_param_converter.py +0 -117
  172. mirascope/core/azure/_utils/_setup_call.py +0 -183
  173. mirascope/core/azure/call_params.py +0 -59
  174. mirascope/core/azure/call_response.py +0 -215
  175. mirascope/core/azure/call_response_chunk.py +0 -105
  176. mirascope/core/azure/dynamic_config.py +0 -30
  177. mirascope/core/azure/py.typed +0 -0
  178. mirascope/core/azure/stream.py +0 -147
  179. mirascope/core/azure/tool.py +0 -93
  180. mirascope/core/base/__init__.py +0 -86
  181. mirascope/core/base/_call_factory.py +0 -256
  182. mirascope/core/base/_create.py +0 -253
  183. mirascope/core/base/_extract.py +0 -175
  184. mirascope/core/base/_extract_with_tools.py +0 -189
  185. mirascope/core/base/_partial.py +0 -95
  186. mirascope/core/base/_utils/__init__.py +0 -92
  187. mirascope/core/base/_utils/_base_message_param_converter.py +0 -22
  188. mirascope/core/base/_utils/_base_type.py +0 -26
  189. mirascope/core/base/_utils/_convert_base_model_to_base_tool.py +0 -48
  190. mirascope/core/base/_utils/_convert_base_type_to_base_tool.py +0 -24
  191. mirascope/core/base/_utils/_convert_function_to_base_tool.py +0 -139
  192. mirascope/core/base/_utils/_convert_messages_to_message_params.py +0 -178
  193. mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py +0 -20
  194. mirascope/core/base/_utils/_default_tool_docstring.py +0 -6
  195. mirascope/core/base/_utils/_extract_tool_return.py +0 -42
  196. mirascope/core/base/_utils/_fn_is_async.py +0 -24
  197. mirascope/core/base/_utils/_format_template.py +0 -32
  198. mirascope/core/base/_utils/_get_audio_type.py +0 -18
  199. mirascope/core/base/_utils/_get_common_usage.py +0 -20
  200. mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +0 -137
  201. mirascope/core/base/_utils/_get_document_type.py +0 -7
  202. mirascope/core/base/_utils/_get_dynamic_configuration.py +0 -69
  203. mirascope/core/base/_utils/_get_fields_from_call_args.py +0 -34
  204. mirascope/core/base/_utils/_get_fn_args.py +0 -23
  205. mirascope/core/base/_utils/_get_image_dimensions.py +0 -39
  206. mirascope/core/base/_utils/_get_image_type.py +0 -26
  207. mirascope/core/base/_utils/_get_metadata.py +0 -17
  208. mirascope/core/base/_utils/_get_possible_user_message_param.py +0 -21
  209. mirascope/core/base/_utils/_get_prompt_template.py +0 -28
  210. mirascope/core/base/_utils/_get_template_values.py +0 -51
  211. mirascope/core/base/_utils/_get_template_variables.py +0 -38
  212. mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py +0 -10
  213. mirascope/core/base/_utils/_is_prompt_template.py +0 -24
  214. mirascope/core/base/_utils/_json_mode_content.py +0 -17
  215. mirascope/core/base/_utils/_messages_decorator.py +0 -121
  216. mirascope/core/base/_utils/_parse_content_template.py +0 -323
  217. mirascope/core/base/_utils/_parse_prompt_messages.py +0 -63
  218. mirascope/core/base/_utils/_pil_image_to_bytes.py +0 -13
  219. mirascope/core/base/_utils/_protocols.py +0 -901
  220. mirascope/core/base/_utils/_setup_call.py +0 -79
  221. mirascope/core/base/_utils/_setup_extract_tool.py +0 -30
  222. mirascope/core/base/call_kwargs.py +0 -13
  223. mirascope/core/base/call_params.py +0 -36
  224. mirascope/core/base/call_response.py +0 -338
  225. mirascope/core/base/call_response_chunk.py +0 -130
  226. mirascope/core/base/dynamic_config.py +0 -82
  227. mirascope/core/base/from_call_args.py +0 -30
  228. mirascope/core/base/merge_decorators.py +0 -59
  229. mirascope/core/base/message_param.py +0 -175
  230. mirascope/core/base/messages.py +0 -116
  231. mirascope/core/base/metadata.py +0 -13
  232. mirascope/core/base/prompt.py +0 -497
  233. mirascope/core/base/response_model_config_dict.py +0 -9
  234. mirascope/core/base/stream.py +0 -479
  235. mirascope/core/base/stream_config.py +0 -11
  236. mirascope/core/base/structured_stream.py +0 -296
  237. mirascope/core/base/tool.py +0 -214
  238. mirascope/core/base/toolkit.py +0 -176
  239. mirascope/core/base/types.py +0 -344
  240. mirascope/core/bedrock/__init__.py +0 -34
  241. mirascope/core/bedrock/_call.py +0 -68
  242. mirascope/core/bedrock/_call_kwargs.py +0 -12
  243. mirascope/core/bedrock/_types.py +0 -104
  244. mirascope/core/bedrock/_utils/__init__.py +0 -14
  245. mirascope/core/bedrock/_utils/_convert_common_call_params.py +0 -39
  246. mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -23
  247. mirascope/core/bedrock/_utils/_convert_message_params.py +0 -111
  248. mirascope/core/bedrock/_utils/_get_json_output.py +0 -30
  249. mirascope/core/bedrock/_utils/_handle_stream.py +0 -104
  250. mirascope/core/bedrock/_utils/_message_param_converter.py +0 -172
  251. mirascope/core/bedrock/_utils/_setup_call.py +0 -258
  252. mirascope/core/bedrock/call_params.py +0 -38
  253. mirascope/core/bedrock/call_response.py +0 -248
  254. mirascope/core/bedrock/call_response_chunk.py +0 -111
  255. mirascope/core/bedrock/dynamic_config.py +0 -37
  256. mirascope/core/bedrock/py.typed +0 -0
  257. mirascope/core/bedrock/stream.py +0 -154
  258. mirascope/core/bedrock/tool.py +0 -100
  259. mirascope/core/cohere/__init__.py +0 -30
  260. mirascope/core/cohere/_call.py +0 -67
  261. mirascope/core/cohere/_call_kwargs.py +0 -11
  262. mirascope/core/cohere/_types.py +0 -20
  263. mirascope/core/cohere/_utils/__init__.py +0 -14
  264. mirascope/core/cohere/_utils/_convert_common_call_params.py +0 -26
  265. mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -24
  266. mirascope/core/cohere/_utils/_convert_message_params.py +0 -32
  267. mirascope/core/cohere/_utils/_get_json_output.py +0 -30
  268. mirascope/core/cohere/_utils/_handle_stream.py +0 -35
  269. mirascope/core/cohere/_utils/_message_param_converter.py +0 -54
  270. mirascope/core/cohere/_utils/_setup_call.py +0 -150
  271. mirascope/core/cohere/call_params.py +0 -62
  272. mirascope/core/cohere/call_response.py +0 -205
  273. mirascope/core/cohere/call_response_chunk.py +0 -125
  274. mirascope/core/cohere/dynamic_config.py +0 -32
  275. mirascope/core/cohere/py.typed +0 -0
  276. mirascope/core/cohere/stream.py +0 -113
  277. mirascope/core/cohere/tool.py +0 -93
  278. mirascope/core/costs/__init__.py +0 -5
  279. mirascope/core/costs/_anthropic_calculate_cost.py +0 -219
  280. mirascope/core/costs/_azure_calculate_cost.py +0 -11
  281. mirascope/core/costs/_bedrock_calculate_cost.py +0 -15
  282. mirascope/core/costs/_cohere_calculate_cost.py +0 -44
  283. mirascope/core/costs/_gemini_calculate_cost.py +0 -67
  284. mirascope/core/costs/_google_calculate_cost.py +0 -427
  285. mirascope/core/costs/_groq_calculate_cost.py +0 -156
  286. mirascope/core/costs/_litellm_calculate_cost.py +0 -11
  287. mirascope/core/costs/_mistral_calculate_cost.py +0 -64
  288. mirascope/core/costs/_openai_calculate_cost.py +0 -416
  289. mirascope/core/costs/_vertex_calculate_cost.py +0 -67
  290. mirascope/core/costs/_xai_calculate_cost.py +0 -104
  291. mirascope/core/costs/calculate_cost.py +0 -86
  292. mirascope/core/gemini/__init__.py +0 -40
  293. mirascope/core/gemini/_call.py +0 -67
  294. mirascope/core/gemini/_call_kwargs.py +0 -12
  295. mirascope/core/gemini/_utils/__init__.py +0 -14
  296. mirascope/core/gemini/_utils/_convert_common_call_params.py +0 -39
  297. mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -23
  298. mirascope/core/gemini/_utils/_convert_message_params.py +0 -156
  299. mirascope/core/gemini/_utils/_get_json_output.py +0 -35
  300. mirascope/core/gemini/_utils/_handle_stream.py +0 -33
  301. mirascope/core/gemini/_utils/_message_param_converter.py +0 -209
  302. mirascope/core/gemini/_utils/_setup_call.py +0 -149
  303. mirascope/core/gemini/call_params.py +0 -52
  304. mirascope/core/gemini/call_response.py +0 -216
  305. mirascope/core/gemini/call_response_chunk.py +0 -100
  306. mirascope/core/gemini/dynamic_config.py +0 -26
  307. mirascope/core/gemini/stream.py +0 -120
  308. mirascope/core/gemini/tool.py +0 -104
  309. mirascope/core/google/__init__.py +0 -29
  310. mirascope/core/google/_call.py +0 -67
  311. mirascope/core/google/_call_kwargs.py +0 -13
  312. mirascope/core/google/_utils/__init__.py +0 -14
  313. mirascope/core/google/_utils/_convert_common_call_params.py +0 -38
  314. mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -27
  315. mirascope/core/google/_utils/_convert_message_params.py +0 -297
  316. mirascope/core/google/_utils/_get_json_output.py +0 -37
  317. mirascope/core/google/_utils/_handle_stream.py +0 -58
  318. mirascope/core/google/_utils/_message_param_converter.py +0 -200
  319. mirascope/core/google/_utils/_setup_call.py +0 -201
  320. mirascope/core/google/_utils/_validate_media_type.py +0 -58
  321. mirascope/core/google/call_params.py +0 -22
  322. mirascope/core/google/call_response.py +0 -255
  323. mirascope/core/google/call_response_chunk.py +0 -135
  324. mirascope/core/google/dynamic_config.py +0 -26
  325. mirascope/core/google/stream.py +0 -199
  326. mirascope/core/google/tool.py +0 -146
  327. mirascope/core/groq/__init__.py +0 -30
  328. mirascope/core/groq/_call.py +0 -67
  329. mirascope/core/groq/_call_kwargs.py +0 -13
  330. mirascope/core/groq/_utils/__init__.py +0 -14
  331. mirascope/core/groq/_utils/_convert_common_call_params.py +0 -26
  332. mirascope/core/groq/_utils/_convert_message_params.py +0 -112
  333. mirascope/core/groq/_utils/_get_json_output.py +0 -27
  334. mirascope/core/groq/_utils/_handle_stream.py +0 -123
  335. mirascope/core/groq/_utils/_message_param_converter.py +0 -89
  336. mirascope/core/groq/_utils/_setup_call.py +0 -132
  337. mirascope/core/groq/call_params.py +0 -52
  338. mirascope/core/groq/call_response.py +0 -213
  339. mirascope/core/groq/call_response_chunk.py +0 -104
  340. mirascope/core/groq/dynamic_config.py +0 -29
  341. mirascope/core/groq/py.typed +0 -0
  342. mirascope/core/groq/stream.py +0 -135
  343. mirascope/core/groq/tool.py +0 -80
  344. mirascope/core/litellm/__init__.py +0 -28
  345. mirascope/core/litellm/_call.py +0 -67
  346. mirascope/core/litellm/_utils/__init__.py +0 -5
  347. mirascope/core/litellm/_utils/_setup_call.py +0 -109
  348. mirascope/core/litellm/call_params.py +0 -10
  349. mirascope/core/litellm/call_response.py +0 -24
  350. mirascope/core/litellm/call_response_chunk.py +0 -14
  351. mirascope/core/litellm/dynamic_config.py +0 -8
  352. mirascope/core/litellm/py.typed +0 -0
  353. mirascope/core/litellm/stream.py +0 -86
  354. mirascope/core/litellm/tool.py +0 -13
  355. mirascope/core/mistral/__init__.py +0 -36
  356. mirascope/core/mistral/_call.py +0 -65
  357. mirascope/core/mistral/_call_kwargs.py +0 -19
  358. mirascope/core/mistral/_utils/__init__.py +0 -14
  359. mirascope/core/mistral/_utils/_convert_common_call_params.py +0 -24
  360. mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -22
  361. mirascope/core/mistral/_utils/_convert_message_params.py +0 -122
  362. mirascope/core/mistral/_utils/_get_json_output.py +0 -34
  363. mirascope/core/mistral/_utils/_handle_stream.py +0 -139
  364. mirascope/core/mistral/_utils/_message_param_converter.py +0 -176
  365. mirascope/core/mistral/_utils/_setup_call.py +0 -164
  366. mirascope/core/mistral/call_params.py +0 -36
  367. mirascope/core/mistral/call_response.py +0 -205
  368. mirascope/core/mistral/call_response_chunk.py +0 -105
  369. mirascope/core/mistral/dynamic_config.py +0 -33
  370. mirascope/core/mistral/py.typed +0 -0
  371. mirascope/core/mistral/stream.py +0 -120
  372. mirascope/core/mistral/tool.py +0 -81
  373. mirascope/core/openai/__init__.py +0 -31
  374. mirascope/core/openai/_call.py +0 -67
  375. mirascope/core/openai/_call_kwargs.py +0 -13
  376. mirascope/core/openai/_utils/__init__.py +0 -14
  377. mirascope/core/openai/_utils/_convert_common_call_params.py +0 -26
  378. mirascope/core/openai/_utils/_convert_message_params.py +0 -148
  379. mirascope/core/openai/_utils/_get_json_output.py +0 -31
  380. mirascope/core/openai/_utils/_handle_stream.py +0 -138
  381. mirascope/core/openai/_utils/_message_param_converter.py +0 -105
  382. mirascope/core/openai/_utils/_setup_call.py +0 -155
  383. mirascope/core/openai/call_params.py +0 -92
  384. mirascope/core/openai/call_response.py +0 -273
  385. mirascope/core/openai/call_response_chunk.py +0 -139
  386. mirascope/core/openai/dynamic_config.py +0 -34
  387. mirascope/core/openai/py.typed +0 -0
  388. mirascope/core/openai/stream.py +0 -185
  389. mirascope/core/openai/tool.py +0 -101
  390. mirascope/core/py.typed +0 -0
  391. mirascope/core/vertex/__init__.py +0 -45
  392. mirascope/core/vertex/_call.py +0 -62
  393. mirascope/core/vertex/_call_kwargs.py +0 -12
  394. mirascope/core/vertex/_utils/__init__.py +0 -14
  395. mirascope/core/vertex/_utils/_convert_common_call_params.py +0 -37
  396. mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py +0 -23
  397. mirascope/core/vertex/_utils/_convert_message_params.py +0 -171
  398. mirascope/core/vertex/_utils/_get_json_output.py +0 -36
  399. mirascope/core/vertex/_utils/_handle_stream.py +0 -33
  400. mirascope/core/vertex/_utils/_message_param_converter.py +0 -133
  401. mirascope/core/vertex/_utils/_setup_call.py +0 -160
  402. mirascope/core/vertex/call_params.py +0 -24
  403. mirascope/core/vertex/call_response.py +0 -206
  404. mirascope/core/vertex/call_response_chunk.py +0 -99
  405. mirascope/core/vertex/dynamic_config.py +0 -28
  406. mirascope/core/vertex/stream.py +0 -119
  407. mirascope/core/vertex/tool.py +0 -101
  408. mirascope/core/xai/__init__.py +0 -28
  409. mirascope/core/xai/_call.py +0 -67
  410. mirascope/core/xai/_utils/__init__.py +0 -5
  411. mirascope/core/xai/_utils/_setup_call.py +0 -113
  412. mirascope/core/xai/call_params.py +0 -10
  413. mirascope/core/xai/call_response.py +0 -16
  414. mirascope/core/xai/call_response_chunk.py +0 -14
  415. mirascope/core/xai/dynamic_config.py +0 -8
  416. mirascope/core/xai/py.typed +0 -0
  417. mirascope/core/xai/stream.py +0 -57
  418. mirascope/core/xai/tool.py +0 -13
  419. mirascope/experimental/graphs/__init__.py +0 -5
  420. mirascope/integrations/__init__.py +0 -16
  421. mirascope/integrations/_middleware_factory.py +0 -403
  422. mirascope/integrations/langfuse/__init__.py +0 -3
  423. mirascope/integrations/langfuse/_utils.py +0 -114
  424. mirascope/integrations/langfuse/_with_langfuse.py +0 -70
  425. mirascope/integrations/logfire/__init__.py +0 -3
  426. mirascope/integrations/logfire/_utils.py +0 -225
  427. mirascope/integrations/logfire/_with_logfire.py +0 -63
  428. mirascope/integrations/otel/__init__.py +0 -10
  429. mirascope/integrations/otel/_utils.py +0 -270
  430. mirascope/integrations/otel/_with_hyperdx.py +0 -60
  431. mirascope/integrations/otel/_with_otel.py +0 -59
  432. mirascope/integrations/tenacity.py +0 -14
  433. mirascope/llm/_call.py +0 -401
  434. mirascope/llm/_context.py +0 -384
  435. mirascope/llm/_override.py +0 -3639
  436. mirascope/llm/_protocols.py +0 -500
  437. mirascope/llm/_response_metaclass.py +0 -31
  438. mirascope/llm/call_response.py +0 -158
  439. mirascope/llm/call_response_chunk.py +0 -66
  440. mirascope/llm/stream.py +0 -162
  441. mirascope/llm/tool.py +0 -64
  442. mirascope/mcp/__init__.py +0 -7
  443. mirascope/mcp/_utils.py +0 -288
  444. mirascope/mcp/client.py +0 -167
  445. mirascope/mcp/server.py +0 -356
  446. mirascope/mcp/tools.py +0 -110
  447. mirascope/py.typed +0 -0
  448. mirascope/retries/__init__.py +0 -11
  449. mirascope/retries/fallback.py +0 -131
  450. mirascope/retries/tenacity.py +0 -50
  451. mirascope/tools/__init__.py +0 -37
  452. mirascope/tools/base.py +0 -98
  453. mirascope/tools/system/__init__.py +0 -0
  454. mirascope/tools/system/_docker_operation.py +0 -166
  455. mirascope/tools/system/_file_system.py +0 -267
  456. mirascope/tools/web/__init__.py +0 -0
  457. mirascope/tools/web/_duckduckgo.py +0 -111
  458. mirascope/tools/web/_httpx.py +0 -125
  459. mirascope/tools/web/_parse_url_content.py +0 -94
  460. mirascope/tools/web/_requests.py +0 -54
  461. mirascope/v0/__init__.py +0 -43
  462. mirascope/v0/anthropic.py +0 -54
  463. mirascope/v0/base/__init__.py +0 -12
  464. mirascope/v0/base/calls.py +0 -118
  465. mirascope/v0/base/extractors.py +0 -122
  466. mirascope/v0/base/ops_utils.py +0 -207
  467. mirascope/v0/base/prompts.py +0 -48
  468. mirascope/v0/base/types.py +0 -14
  469. mirascope/v0/base/utils.py +0 -21
  470. mirascope/v0/openai.py +0 -54
  471. mirascope-1.25.7.dist-info/METADATA +0 -169
  472. mirascope-1.25.7.dist-info/RECORD +0 -378
  473. {mirascope-1.25.7.dist-info → mirascope-2.0.0a0.dist-info}/WHEEL +0 -0
  474. {mirascope-1.25.7.dist-info → mirascope-2.0.0a0.dist-info}/licenses/LICENSE +0 -0
mirascope/v0/openai.py DELETED
@@ -1,54 +0,0 @@
1
- """OpenAI modules for the v0 look-alike implementation."""
2
-
3
- from typing import ClassVar, Generic, TypeVar
4
-
5
- from openai.types.chat import ChatCompletionToolChoiceOptionParam
6
- from openai.types.chat.completion_create_params import ResponseFormat
7
- from pydantic import ConfigDict
8
-
9
- from ..core.openai import (
10
- OpenAICallResponse,
11
- OpenAICallResponseChunk,
12
- OpenAITool,
13
- openai_call,
14
- )
15
- from .base import BaseCall, BaseCallParams, BaseExtractor, ExtractedType
16
-
17
-
18
- class OpenAICallParams(BaseCallParams):
19
- """The parameters to use when calling the OpenAI API."""
20
-
21
- model: str
22
- frequency_penalty: float | None = None
23
- logit_bias: dict[str, int] | None = None
24
- logprobs: bool | None = None
25
- max_tokens: int | None = None
26
- n: int | None = None
27
- presence_penalty: float | None = None
28
- response_format: ResponseFormat | None = None
29
- seed: int | None = None
30
- stop: str | list[str] | None = None
31
- temperature: float | None = None
32
- tool_choice: ChatCompletionToolChoiceOptionParam | None = None
33
- top_logprobs: int | None = None
34
- top_p: float | None = None
35
- user: str | None = None
36
-
37
- model_config = ConfigDict(arbitrary_types_allowed=True, extra="allow")
38
-
39
-
40
- class OpenAICall(BaseCall[OpenAICallResponse, OpenAICallResponseChunk, OpenAITool]):
41
- call_params: ClassVar[BaseCallParams] = OpenAICallParams(model="gpt-4o-mini")
42
-
43
- _decorator = openai_call
44
- _provider = "openai"
45
-
46
-
47
- T = TypeVar("T", bound=ExtractedType)
48
-
49
-
50
- class OpenAIExtractor(BaseExtractor[T], Generic[T]):
51
- call_params: ClassVar[BaseCallParams] = OpenAICallParams(model="gpt-4o-mini")
52
-
53
- _decorator = openai_call
54
- _provider = "openai"
@@ -1,169 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: mirascope
3
- Version: 1.25.7
4
- Summary: LLM abstractions that aren't obstructions
5
- Project-URL: Homepage, https://mirascope.com
6
- Project-URL: Documentation, https://mirascope.com/WELCOME
7
- Project-URL: Repository, https://github.com/Mirascope/mirascope
8
- Project-URL: Issues, https://github.com/Mirascope/mirascope/issues
9
- Project-URL: Changelog, https://github.com/Mirascope/mirascope/releases
10
- Author-email: William Bakst <william@mirascope.com>, Brendan Kao <brendan@mirascope.com>
11
- Maintainer-email: William Bakst <william@mirascope.com>
12
- License: MIT License
13
-
14
- Copyright (c) 2023 Mirascope, Inc.
15
-
16
- Permission is hereby granted, free of charge, to any person obtaining a copy
17
- of this software and associated documentation files (the "Software"), to deal
18
- in the Software without restriction, including without limitation the rights
19
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20
- copies of the Software, and to permit persons to whom the Software is
21
- furnished to do so, subject to the following conditions:
22
-
23
- The above copyright notice and this permission notice shall be included in all
24
- copies or substantial portions of the Software.
25
-
26
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
31
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32
- SOFTWARE.
33
- License-File: LICENSE
34
- Keywords: agents,anthropic,artificial intelligence,bedrock,cohere,developer tools,gemini,groq,llm,llm tools,mistral,openai,prompt engineering,pydantic,vertex
35
- Classifier: Development Status :: 5 - Production/Stable
36
- Classifier: Framework :: Pydantic :: 2
37
- Classifier: Intended Audience :: Developers
38
- Classifier: License :: OSI Approved :: MIT License
39
- Classifier: Programming Language :: Python :: 3
40
- Classifier: Programming Language :: Python :: 3.10
41
- Classifier: Programming Language :: Python :: 3.11
42
- Classifier: Programming Language :: Python :: 3.12
43
- Classifier: Programming Language :: Python :: 3.13
44
- Classifier: Topic :: File Formats :: JSON
45
- Classifier: Topic :: File Formats :: JSON :: JSON Schema
46
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
47
- Classifier: Topic :: Software Development :: Libraries
48
- Requires-Python: >=3.10
49
- Requires-Dist: docstring-parser<1.0,>=0.15
50
- Requires-Dist: jiter>=0.5.0
51
- Requires-Dist: pydantic<3.0,>=2.7.4
52
- Requires-Dist: typing-extensions>=4.10.0
53
- Provides-Extra: anthropic
54
- Requires-Dist: anthropic<1.0,>=0.29.0; extra == 'anthropic'
55
- Provides-Extra: azure
56
- Requires-Dist: aiohttp<4.0,>=3.10.5; extra == 'azure'
57
- Requires-Dist: azure-ai-inference<2.0,>=1.0.0b4; extra == 'azure'
58
- Provides-Extra: bedrock
59
- Requires-Dist: aioboto3<14,>=13.1.1; extra == 'bedrock'
60
- Requires-Dist: boto3-stubs[bedrock-runtime]<2,>=1.35.32; extra == 'bedrock'
61
- Requires-Dist: boto3<2,>=1.34.70; extra == 'bedrock'
62
- Requires-Dist: types-aioboto3[bedrock-runtime]<14,>=13.1.1; extra == 'bedrock'
63
- Provides-Extra: cohere
64
- Requires-Dist: cohere<6,>=5.5.8; extra == 'cohere'
65
- Provides-Extra: gemini
66
- Requires-Dist: google-generativeai<1,>=0.4.0; extra == 'gemini'
67
- Requires-Dist: pillow<11,>=10.4.0; extra == 'gemini'
68
- Provides-Extra: google
69
- Requires-Dist: google-genai<2,>=1.2.0; extra == 'google'
70
- Requires-Dist: pillow<11,>=10.4.0; extra == 'google'
71
- Requires-Dist: proto-plus>=1.24.0; extra == 'google'
72
- Provides-Extra: groq
73
- Requires-Dist: groq<1,>=0.9.0; extra == 'groq'
74
- Provides-Extra: hyperdx
75
- Requires-Dist: hyperdx-opentelemetry<1,>=0.1.0; extra == 'hyperdx'
76
- Provides-Extra: langfuse
77
- Requires-Dist: langfuse<3,>=2.30.0; extra == 'langfuse'
78
- Provides-Extra: litellm
79
- Requires-Dist: litellm<2,>=1.42.12; extra == 'litellm'
80
- Provides-Extra: logfire
81
- Requires-Dist: logfire<4,>=1.0.0; extra == 'logfire'
82
- Provides-Extra: mcp
83
- Requires-Dist: mcp>=1.3.0; extra == 'mcp'
84
- Provides-Extra: mistral
85
- Requires-Dist: mistralai<2,>=1.0.0; extra == 'mistral'
86
- Provides-Extra: openai
87
- Requires-Dist: openai<2,>=1.6.0; extra == 'openai'
88
- Provides-Extra: opentelemetry
89
- Requires-Dist: opentelemetry-api<2,>=1.22.0; extra == 'opentelemetry'
90
- Requires-Dist: opentelemetry-sdk<2,>=1.22.0; extra == 'opentelemetry'
91
- Provides-Extra: realtime
92
- Requires-Dist: numpy<2,>=1.26.4; extra == 'realtime'
93
- Requires-Dist: pydub<1,>=0.25.1; extra == 'realtime'
94
- Requires-Dist: sounddevice<1,>=0.5.1; extra == 'realtime'
95
- Requires-Dist: websockets<14,>=13.1; extra == 'realtime'
96
- Provides-Extra: tenacity
97
- Requires-Dist: tenacity<9,>=8.4.2; extra == 'tenacity'
98
- Provides-Extra: vertex
99
- Requires-Dist: google-cloud-aiplatform<2,>=1.38.0; extra == 'vertex'
100
- Provides-Extra: xai
101
- Requires-Dist: openai<2,>=1.6.0; extra == 'xai'
102
- Description-Content-Type: text/markdown
103
-
104
- <p align="center">
105
- <a href="https://mirascope.com/#mirascope">
106
- <img src="https://github.com/user-attachments/assets/58b04850-8f30-40a6-be68-96ed2aa9b6d8" />
107
- </a>
108
- </p>
109
-
110
- <p align="center">
111
- <a href="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Mirascope/mirascope/actions/workflows/tests.yml/badge.svg?branch=main" alt="Tests"/></a>
112
- <a href="https://codecov.io/github/Mirascope/mirascope" target="_blank"><img src="https://codecov.io/github/Mirascope/mirascope/graph/badge.svg?token=HAEAWT3KC9" alt="Coverage"/></a>
113
- <a href="https://mirascope.com/docs/mirascope" target="_blank"><img src="https://img.shields.io/badge/docs-available-brightgreen" alt="Docs"/></a>
114
- <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/v/mirascope.svg" alt="PyPI Version"/></a>
115
- <a href="https://pypi.python.org/pypi/mirascope" target="_blank"><img src="https://img.shields.io/pypi/pyversions/mirascope.svg" alt="Stars"/></a>
116
- <a href="https://github.com/Mirascope/mirascope/tree/main/LICENSE"><img src="https://img.shields.io/github/license/Mirascope/mirascope.svg" alt="License"/></a>
117
- <a href="https://github.com/Mirascope/mirascope/stargazers" target="_blank"><img src="https://img.shields.io/github/stars/Mirascope/mirascope.svg" alt="Stars"/></a>
118
- </p>
119
-
120
- ---
121
-
122
- Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Mistral](https://mistral.ai/), [Google (Gemini/Vertex)](https://googleapis.github.io/python-genai/), [Groq](https://groq.com/), [Cohere](https://cohere.com/), [LiteLLM](https://www.litellm.ai/), [Azure AI](https://azure.microsoft.com/en-us/solutions/ai), and [Bedrock](https://aws.amazon.com/bedrock/).
123
-
124
- Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.
125
-
126
- ## 30 Second Quickstart
127
-
128
- Install Mirascope, specifying the provider(s) you intend to use, and set your API key:
129
-
130
- ```bash
131
- pip install "mirascope[openai]"
132
- export OPENAI_API_KEY=XXXXX
133
- ```
134
-
135
- Make your first call to an LLM to extract the title and author of a book from unstructured text:
136
-
137
- ```python
138
- from mirascope import llm
139
- from pydantic import BaseModel
140
-
141
- class Book(BaseModel):
142
- title: str
143
- author: str
144
-
145
- @llm.call(provider="openai", model="gpt-4o-mini", response_model=Book)
146
- def extract_book(text: str) -> str:
147
- return f"Extract {text}"
148
-
149
- book = extract_book("The Name of the Wind by Patrick Rothfuss")
150
- assert isinstance(book, Book)
151
- print(book)
152
- # Output: title='The Name of the Wind' author='Patrick Rothfuss'
153
- ```
154
-
155
- ## Tutorials
156
-
157
- Check out our [quickstart tutorial](https://mirascope.com/docs/mirascope/getting-started/quickstart) and many other tutorials for an interactive way to getting started with Mirascope.
158
-
159
- ## Usage
160
-
161
- For a complete guide on how to use all of the various features Mirascope has to offer, read through our [Learn](https://mirascope.com/learn) documentation.
162
-
163
- ## Versioning
164
-
165
- Mirascope uses [Semantic Versioning](https://semver.org/).
166
-
167
- ## Licence
168
-
169
- This project is licensed under the terms of the [MIT License](https://github.com/Mirascope/mirascope/tree/main/LICENSE).
@@ -1,378 +0,0 @@
1
- mirascope/__init__.py,sha256=Rmt0CqSEEEqc7KhW10KzQHgGij11PIKRrNQ_y4IU4eY,1127
2
- mirascope/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- mirascope/beta/__init__.py,sha256=YsIIE5w3nKj0Ywcs_Y5tSE6WlHKR-nQwwbhNF1R8UW8,43
4
- mirascope/beta/openai/__init__.py,sha256=a7xllQBfcpO6kYwZ5Zv1CWzN9qpS1SJoBgb1J20F-Hk,257
5
- mirascope/beta/openai/realtime/__init__.py,sha256=kYEaLHjek8LsxR5xQB2JYMvCsHxi0MjtPGA4Nos4bgs,286
6
- mirascope/beta/openai/realtime/realtime.py,sha256=_sc2HBJ26OfOLssosziytYLnRLNGupck7rKHeDZWhDM,19457
7
- mirascope/beta/openai/realtime/recording.py,sha256=ZRvJbCQ2TdtlNEM-D4I8kTyQZ3tfR0KAdk6RhzBlqus,2876
8
- mirascope/beta/openai/realtime/tool.py,sha256=ROQJSS31-s82yHiiSeCrF3vy7WXJMg4XnTj5skHcJoo,3309
9
- mirascope/beta/openai/realtime/_utils/__init__.py,sha256=Jginrcpj_EkhdcMe79CtrN5FbS6_jt-fIKPOQ74U0Qg,55
10
- mirascope/beta/openai/realtime/_utils/_audio.py,sha256=5M9olfNXRq4EBuScvbrWc4AVPsf7LvDiT9ZeJ3P6TPc,1884
11
- mirascope/beta/openai/realtime/_utils/_protocols.py,sha256=oQSTwoAVg81NKnNaIpP9hMFqnn8sNstnLPaR9cMa7Dc,1440
12
- mirascope/beta/rag/__init__.py,sha256=xWtAif91Eb4fRWAhIxraRqSPGins6S7D5AzlEVKknPw,466
13
- mirascope/beta/rag/base/__init__.py,sha256=9svbynyBNzLelpCBCqoT4vwY9E2QXMFkPXk8EdIvyFY,631
14
- mirascope/beta/rag/base/config.py,sha256=PgO1syia3jSqrze7zA1K0ZA0ephNZiSzMspI9GC_zTE,186
15
- mirascope/beta/rag/base/document.py,sha256=cdHLyevVWgvIeld2p-A2nwfzrFDlIaySm3CX4glQwxM,207
16
- mirascope/beta/rag/base/embedders.py,sha256=0X-GV1o4C8FjtoILQZJPkJvldK4NSoLzKIr99tFhun0,1181
17
- mirascope/beta/rag/base/embedding_params.py,sha256=HZWonqnSxvUGNe6flxmicyVlDwYBt8L-OcQxQod0On8,526
18
- mirascope/beta/rag/base/embedding_response.py,sha256=21k-_JKdvTMF5KFKjIkDYji4CJFKok4TAryKiEgPp4A,942
19
- mirascope/beta/rag/base/query_results.py,sha256=ceGSaMzZ8X3qfC-5CwW1yftYhchUR67kHc1bR9PZty4,190
20
- mirascope/beta/rag/base/vectorstore_params.py,sha256=4gErLjESDuYlwKsQqhqrhbojMCue4Mz_vgBY36Yos28,525
21
- mirascope/beta/rag/base/vectorstores.py,sha256=BUnIWHIp_T3v-TNaoqT-XBseNYzDXHBXOERT2F_G_uI,1370
22
- mirascope/beta/rag/base/chunkers/__init__.py,sha256=DFSBx6sNnnfR0nua74T1SGuRcwQoUSqHf0OOF783ZB4,76
23
- mirascope/beta/rag/base/chunkers/base_chunker.py,sha256=hLK9iZ7_QYnc3HEN0j4nEv-JTaRFnswJESrFNsioOtY,958
24
- mirascope/beta/rag/base/chunkers/text_chunker.py,sha256=C9o-gYytXoCBeMxOQtjCTBSu3JDkSxDAR_AI9KZG7Ek,913
25
- mirascope/beta/rag/chroma/__init__.py,sha256=iYH8JKfNz6DrvR9c_z_YdzT5qdfMx9rg4SP4okISyRg,276
26
- mirascope/beta/rag/chroma/types.py,sha256=cfqLoM5bqyAPcVRQC7KZ34cIQpwo8P_GXhgm-TZa-LY,2179
27
- mirascope/beta/rag/chroma/vectorstores.py,sha256=iBgOezpyVbwLou1aQrKEkoapH8ZcikoDcZ3EHkc8f60,4089
28
- mirascope/beta/rag/cohere/__init__.py,sha256=hZfZKIn1B7NdfaUJARWFppDwXAW93p2cHM2uB0OyMtk,300
29
- mirascope/beta/rag/cohere/embedders.py,sha256=0V8o147p_nxiWt5nkfiUvtbeWNUH9En81yrv1AJJSJQ,2966
30
- mirascope/beta/rag/cohere/embedding_params.py,sha256=TTT_oDFe22lzjcm8wIPU3snzklHtlWbh_o-Ks73XSaM,1020
31
- mirascope/beta/rag/cohere/embedding_response.py,sha256=DjV5QbygsXdkNkdgPnnRTd2FbGuEFxYTQkxH4p4WHVs,1127
32
- mirascope/beta/rag/cohere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- mirascope/beta/rag/openai/__init__.py,sha256=BHotLt8oCzdvxKrCGRQUjS0T9WYfVyzXkB1mWl7zJL4,295
34
- mirascope/beta/rag/openai/embedders.py,sha256=yGeScGZTmvUmLs8HTl6coRlFrikDi6kJY61YW46A3Vs,5452
35
- mirascope/beta/rag/openai/embedding_params.py,sha256=5jKzLsRsdPAo0QsDWYJN2I94s02_Av4MMvSMLhwde8w,729
36
- mirascope/beta/rag/openai/embedding_response.py,sha256=4Rrk8L3J_Z89iKij7ZwJfbmn2lQ3nA1idr3zGrn-z8U,582
37
- mirascope/beta/rag/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- mirascope/beta/rag/pinecone/__init__.py,sha256=zek8AjyFPFp0eyijsEoUtSskMk01svV4Y5d1qgiHvCM,421
39
- mirascope/beta/rag/pinecone/types.py,sha256=Bn-yRCqGp9ASPFsezRs4KwxNfdqnjUjeMq8P5vw6-0k,4743
40
- mirascope/beta/rag/pinecone/vectorstores.py,sha256=ZcLwVmrxNMq5a2mLI-3F9XJ_UYDryKoKqMMQs0iHquM,5127
41
- mirascope/beta/rag/weaviate/__init__.py,sha256=eod9OprMo1zdDb-waYWtBJKWuYQRx7v-QEen-wzm_5w,231
42
- mirascope/beta/rag/weaviate/types.py,sha256=-2r2Vy71kpLlRJgVqWoE3atub5a2eymHPSjTHuSqCfQ,2984
43
- mirascope/beta/rag/weaviate/vectorstores.py,sha256=8Nwy-QRHwSUdvMkqEhqmUkN7y_CzQN7bop7do1K8v4w,3606
44
- mirascope/core/__init__.py,sha256=10mn-PHVEOUu0aZ-CIOZDl89exoRcJVDBB1xWK938YA,2074
45
- mirascope/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- mirascope/core/anthropic/__init__.py,sha256=GB-CULa3jYEPv1ZDyZjNCKQJbrc6ojqu8WNRSFElQ-4,918
47
- mirascope/core/anthropic/_call.py,sha256=LXUR__AyexD-hsPMPKpA7IFuh8Cfc0uAg1GrJSxiWnU,2358
48
- mirascope/core/anthropic/_call_kwargs.py,sha256=EoXSl2B5FoLD_Nv03-ttXjiKlpBihZGXu6U-Ol3qwZ8,389
49
- mirascope/core/anthropic/_thinking.py,sha256=huHH20tdXgS6GpDz5cYFgf5HzmzrJ8FaUNfrBepkf4w,1882
50
- mirascope/core/anthropic/call_params.py,sha256=OUUTHGCXxKilTmjqpgmAdgKuF-oO_WX7tZJdEtWarS0,1357
51
- mirascope/core/anthropic/call_response.py,sha256=ufUDPAqZcGQtA5YDLirvJiY9MWnDr01O4ZzXS7PCk8c,7004
52
- mirascope/core/anthropic/call_response_chunk.py,sha256=ERv3arJxwOUJTtGRcAVj4xHPbzZfo6U5itC0lYvrEfg,4738
53
- mirascope/core/anthropic/dynamic_config.py,sha256=kZV4ApAnm3P1X5gKPJ3hbr45K6tgaNX8L6Ca8NjTkxU,1192
54
- mirascope/core/anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
- mirascope/core/anthropic/stream.py,sha256=bQPuNs9vuwO5qdqGskXoj1WgzUUW0JxVgtAXkMnsaOs,6988
56
- mirascope/core/anthropic/tool.py,sha256=HtbYV5j4itV8v6lTyLDY72NMX2kxRaXVgpZ_m89HqIk,2891
57
- mirascope/core/anthropic/_utils/__init__.py,sha256=GDO3G2dvWsE8UhFyQ1lKkRVMeOrqqogBISRKJYJmoEQ,493
58
- mirascope/core/anthropic/_utils/_convert_common_call_params.py,sha256=ILd7AH_atmPUPj7I74EsmxG3rmWC7b5tgjnlR24jKUs,765
59
- mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=UqqiDEaw20_nDbQUvRJC-ZneCd35f_2GEUpiUNMibr0,704
60
- mirascope/core/anthropic/_utils/_convert_message_params.py,sha256=paDIPksOzZK5yhckUX8-3y5czUIWDxdWCwJmzI6rmEE,4270
61
- mirascope/core/anthropic/_utils/_get_json_output.py,sha256=vkHvhc96RLrGREYVCKr14Umq80EUa7pCtlcImjXB5gA,1157
62
- mirascope/core/anthropic/_utils/_handle_stream.py,sha256=6Ll2FQt1KWrz5jqgeP1NikHEjlrSbfPUQCH4eoX4eVA,4010
63
- mirascope/core/anthropic/_utils/_message_param_converter.py,sha256=pGzEMPyp3JLIXv64h73LI1s13yh7AnwJO7y12C2aCSg,6729
64
- mirascope/core/anthropic/_utils/_setup_call.py,sha256=xPY6O7MMOwaot5xZSSHqyGyazJxVHPx77W20jZ-cK6E,4812
65
- mirascope/core/azure/__init__.py,sha256=7Dpkf10T-TGxk7Lstej6x6s6On7QjI0qeE2ABO7QWmQ,852
66
- mirascope/core/azure/_call.py,sha256=SHqSJe6_4zgn4Y9PkpDl4vXvLuT4QmVnWUcws9e_RR8,2237
67
- mirascope/core/azure/_call_kwargs.py,sha256=q38xKSgCBWi8DLScepG-KnUfgi67AU6xr2uOHwCZ2mI,435
68
- mirascope/core/azure/call_params.py,sha256=NK_ggVJbactDip85DbfCaqSWRpO0CgwN1svY-KW4_Yg,1836
69
- mirascope/core/azure/call_response.py,sha256=FzSqAunmZCeVhQIei2_YcUqZBnJUgmEFFT4jHiJFm28,7068
70
- mirascope/core/azure/call_response_chunk.py,sha256=bWgpT-XldmetNwcQmpVVHRCLn6B6UKM6NK_RAxb2Zio,3224
71
- mirascope/core/azure/dynamic_config.py,sha256=6SBMGFce7tuXdwHrlKNISpZxVxUnnumbIQB9lGR6nbs,1066
72
- mirascope/core/azure/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- mirascope/core/azure/stream.py,sha256=XfEO6sOgnXiOhhuagrFdtFI-oQECxBP0Zt0wbfUH1TU,4637
74
- mirascope/core/azure/tool.py,sha256=SAhrGT-_rO0i4Jv9rMEFbMDYPqsm415qXUtHY3aNhrQ,2682
75
- mirascope/core/azure/_utils/__init__.py,sha256=v9ILkXOs2qfFwuKWlOb9k7X09fmLnmKzYe1iMP2Zlag,387
76
- mirascope/core/azure/_utils/_convert_common_call_params.py,sha256=mDmrDIEOn2nm4mTFQvv8ErM0xDvjtupvIL9beycPx4I,790
77
- mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=Tn9tf--eJ1__iapf-D67UYwHFOBoEgTIJSVn8nqos3Q,823
78
- mirascope/core/azure/_utils/_convert_message_params.py,sha256=qUs88dNeUw57XpHW7ihk3HZ96phfPssPS-A_49eypw0,5085
79
- mirascope/core/azure/_utils/_get_credential.py,sha256=hEWoKtB27PLZtC35qvPx36CPvQ9eHzr4tDFcq-13rqI,970
80
- mirascope/core/azure/_utils/_get_json_output.py,sha256=Qec7WJY5is1Q63Vp9uUNNfkRwgxhdoLMCI7AF_e2t90,1017
81
- mirascope/core/azure/_utils/_handle_stream.py,sha256=M_BGnjBGWTPefNyIMuJSHiDxIvqmENmqfVlDx_qzL1c,4638
82
- mirascope/core/azure/_utils/_message_param_converter.py,sha256=JAUeHObtd_V225YyZqEruuih3HRozq43pqjYJCbJj8A,4443
83
- mirascope/core/azure/_utils/_setup_call.py,sha256=cdUof-RCxsPbKuJvevsEUYXU-ckoql3wTevNEQiEpz4,6496
84
- mirascope/core/base/__init__.py,sha256=tBy5Q2jrioxxYji_tArS-fcxBYmIBbhmGGZDpkhDjE8,2111
85
- mirascope/core/base/_call_factory.py,sha256=YdFHAa9WtGfYeqVcM2xaDNh5gMg584rOe26_E51-1to,9663
86
- mirascope/core/base/_create.py,sha256=M6dpcWwtyb6O7pa9pT0rdwhYEUcuB2iu2uv97kAU1qk,10090
87
- mirascope/core/base/_extract.py,sha256=QTqkArgmgR17OB5jTP86Wo-TW-BcouOcK9gdMy-EcNw,6799
88
- mirascope/core/base/_extract_with_tools.py,sha256=MW4v8D1xty7LqLb5RwMFkX-peQqA73CtAVwGm7mC5w8,7338
89
- mirascope/core/base/_partial.py,sha256=w_ACCgsDKNLtMyAP-lNmfRdrFEPmzh2BT4aninajxyY,3240
90
- mirascope/core/base/call_kwargs.py,sha256=0mznCsrj1dYxvdwYNF0RKbc9CiU5G6WvvcjPqOMsOE4,351
91
- mirascope/core/base/call_params.py,sha256=wtuuOY-SwIZYCDBKfn_xRC0Kf1cUuI4eSQaXu6VrtaE,1331
92
- mirascope/core/base/call_response.py,sha256=2f7ETVpr3ZPcTfGJ7aQp4xlN-7fU7IWDvdfT-fMzDr0,10632
93
- mirascope/core/base/call_response_chunk.py,sha256=ZfulgERwgva55TLrQI9XimX8bpgOqBNLs_I-_kELl-4,3606
94
- mirascope/core/base/dynamic_config.py,sha256=V5IG2X5gPFpfQ47uO8JU1zoC2eNdRftsRZEmwhRPaYI,2859
95
- mirascope/core/base/from_call_args.py,sha256=8ijMX7PN6a4o6uLdmXJlSRnE-rEVJU5NLxUmNrS8dvU,909
96
- mirascope/core/base/merge_decorators.py,sha256=9pQYXuTxLh4mGKVIsnR5pYBkYCaQjg85TTelC6XDldE,1988
97
- mirascope/core/base/message_param.py,sha256=5AtuTmpscZKsXengBPkPV4F33Et0BQRpfeRwMMvqqdY,3822
98
- mirascope/core/base/messages.py,sha256=tn38kanabpq6fabxvb0p8zo5fZBBz6Yotl1szCgh3xg,2671
99
- mirascope/core/base/metadata.py,sha256=V9hgMkj6m3QGsu4H5LhCxBZBYQLoygJv0CeLIf1DF0M,382
100
- mirascope/core/base/prompt.py,sha256=M5PK9JoEsWTQ-kzNCpZKdDGzWAkb8MS267xEFCPfpAU,15414
101
- mirascope/core/base/response_model_config_dict.py,sha256=OUdx_YkV2vBzUSSB2OYLAAHf22T7jvF5tRuc6c-vhNQ,254
102
- mirascope/core/base/stream.py,sha256=ZHjC9MQ3HT9KMbqCKTB0um2fvMLJmRYU_eSGdfRj79I,17274
103
- mirascope/core/base/stream_config.py,sha256=vwWqNh9NJhTYjiJmfDbC9D5O84je_lBRhNOt4wI3FHM,238
104
- mirascope/core/base/structured_stream.py,sha256=FIvLXXKninrpQ5P7MsLEqGrU4cfvEDiPbueZqgJ4Dlw,10395
105
- mirascope/core/base/tool.py,sha256=or8Zv0reSLSGjBAxlcfX4MzEQyhyPv-HOivJLJ9rQGs,7220
106
- mirascope/core/base/toolkit.py,sha256=GmZquYPqvQL2J9Hd6StEwx6jfeFsqtcUyxKvp4iW_7Q,6271
107
- mirascope/core/base/types.py,sha256=4GVyVzHThWJU2Og-wpVbYNPZD8QMdHltIAV83FUlisM,9247
108
- mirascope/core/base/_utils/__init__.py,sha256=Tm-9-6k7cZL3IaqebOEaKpTg9nFUMfAGHHeKmC3YzLQ,3192
109
- mirascope/core/base/_utils/_base_message_param_converter.py,sha256=mavWnEEonk3BoinyqtGm-avNq-KvtW6YAW2NMAXIO2Y,695
110
- mirascope/core/base/_utils/_base_type.py,sha256=x8ZabSxZZNAy6ER-VQEkB6mNyjWcGSCBivFydFNIRUE,700
111
- mirascope/core/base/_utils/_convert_base_model_to_base_tool.py,sha256=JoHf1CbRwK91dABm5xLhdIPmeMSFS_nj-qW9OQu_YJ0,1750
112
- mirascope/core/base/_utils/_convert_base_type_to_base_tool.py,sha256=fAOfqqoT0_vk1i-h-lCdWQYYeTjZ3fTiCgwGmgtHk9o,734
113
- mirascope/core/base/_utils/_convert_function_to_base_tool.py,sha256=squjro0oxwXOiavcf4bSHjHS94uSeCBGpykacoFpKx8,5729
114
- mirascope/core/base/_utils/_convert_messages_to_message_params.py,sha256=9gys7ZPBAiuQH5hdi4_bL0KH32Q96fESyKDW5S0-9Js,4532
115
- mirascope/core/base/_utils/_convert_provider_finish_reason_to_finish_reason.py,sha256=Mki5mYbYX8vUW-oosC4PaRNUHW_T5xAQWti3_1ndtTk,611
116
- mirascope/core/base/_utils/_default_tool_docstring.py,sha256=JLyryjGDaHMU-P7gUpnjkPyELCQsQgi8AP4Dp_yXPOM,277
117
- mirascope/core/base/_utils/_extract_tool_return.py,sha256=HYx7F7JIDonr4n4_1DWpNeZl4kaD0OdwlmdzV3qmHDk,1575
118
- mirascope/core/base/_utils/_fn_is_async.py,sha256=dMrvkwqyyNhuaQUHtNMxpMoBoHqZuHPbh4nqfK-KKi0,728
119
- mirascope/core/base/_utils/_format_template.py,sha256=3l0Iq1LxQhocR588bzUDtfLalfiq_Rw_tHrVdgoZHiA,1061
120
- mirascope/core/base/_utils/_get_audio_type.py,sha256=PN8MlgKgl5OIDANgSUlI4UarLkfBHfWmWWls9shPM8M,683
121
- mirascope/core/base/_utils/_get_common_usage.py,sha256=s9Gvq0wl4ZM1V3zmI0LDEIG8wIxWEOXkjuDBjtyFx9s,675
122
- mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py,sha256=vAjvM_2pE4paDOPnehzer6-THpKRkzveTBlr8fCpyGU,4226
123
- mirascope/core/base/_utils/_get_document_type.py,sha256=XKuXlSssVLT_hR7XQHKY2fjhTN2v00DTIZDzH37MN-8,237
124
- mirascope/core/base/_utils/_get_dynamic_configuration.py,sha256=4zyGYhJLJF7TfO-ZD2bLZOF46_RFIb_zQq5NaZH6ugA,2033
125
- mirascope/core/base/_utils/_get_fields_from_call_args.py,sha256=UxisQxdsNppyDxYscyDbRa3NkHd943a83V5hBot9kRI,1124
126
- mirascope/core/base/_utils/_get_fn_args.py,sha256=g4k-w44NwVvypfRq4kNAX8v-kaBX-i9lg4CKY-g6FaM,731
127
- mirascope/core/base/_utils/_get_image_dimensions.py,sha256=cQTVJO7X0kACazqjGMMl_Pee3On_l1iD1n7BBb_7gGA,1262
128
- mirascope/core/base/_utils/_get_image_type.py,sha256=2BvCbPQWxsuTYQYsdm7_V_l1bX-eYioIIQNK6T_DAxk,856
129
- mirascope/core/base/_utils/_get_metadata.py,sha256=j1HHSlcVAVpF7XmhzcqmPdorFwdgdicqYwsGGrE1PHs,563
130
- mirascope/core/base/_utils/_get_possible_user_message_param.py,sha256=iU1hcKuRDWByk8MvOMyrdM5SZ3Zsnrcr4Ljp5r40IwE,690
131
- mirascope/core/base/_utils/_get_prompt_template.py,sha256=m5CIVhlNsnCIDiE1c5fnb_8NID-w-f0KEK2pUS3YJGs,941
132
- mirascope/core/base/_utils/_get_template_values.py,sha256=TRCl0g26m_hb93VMkVFqonzABCET9-yrSVBBPXWg2qA,1928
133
- mirascope/core/base/_utils/_get_template_variables.py,sha256=uwxkrkeZEzsWRskNJLxHoGhkefFC7fNAEZLhWdTZ6Jk,1057
134
- mirascope/core/base/_utils/_get_unsupported_tool_config_keys.py,sha256=fG34xCSnQ2VW3IDf7u4zSD6051E-UYyC6Jwm4LvXR-g,395
135
- mirascope/core/base/_utils/_is_prompt_template.py,sha256=WfUYtvmlw-Yx5eYuechyQKo4DGVWRXNePoN3Bw70xvo,621
136
- mirascope/core/base/_utils/_json_mode_content.py,sha256=EMWnlmyEQV2VgX7D5lbovw1i3JKQKtpXt3TI6wP_vI4,675
137
- mirascope/core/base/_utils/_messages_decorator.py,sha256=dnvbhmwvzGcew8LU0Q_HlDrsIXai-4LuMeZ3Z2-z6wA,3873
138
- mirascope/core/base/_utils/_parse_content_template.py,sha256=8GoisGbizGBbksUpUE7IbzVJrt76Mfdu-PI9e2OPIi4,10807
139
- mirascope/core/base/_utils/_parse_prompt_messages.py,sha256=lGDYxvwea--gnE3LChNF9b1uxKrAKlYkVb9Ep7fM_zo,2523
140
- mirascope/core/base/_utils/_pil_image_to_bytes.py,sha256=qN8nYwRU1hgX1TjEpLKk5i-GBtxBQjTIp2KlMIdbBe8,387
141
- mirascope/core/base/_utils/_protocols.py,sha256=Ca6wOHK-yBdRQV68fmxmbnwMI3gie7DJ_Zn2CilDUG8,28493
142
- mirascope/core/base/_utils/_setup_call.py,sha256=tnvs73IU4GDGkgqvqko0f2KKpAO-hK3bQUUW7C0Z94A,3107
143
- mirascope/core/base/_utils/_setup_extract_tool.py,sha256=y_guGnX6j748T3uygqrMijxEnI8ffrD0UWPP_qg9zoE,1290
144
- mirascope/core/bedrock/__init__.py,sha256=bbBnEu4vqofB76SdUrMCjx8pmiZFRySeSXGbfvADxL4,973
145
- mirascope/core/bedrock/_call.py,sha256=8Z8sdzpTdJsMHBev35B1KH3O16_eMLbtTkOmPB7bzvo,2317
146
- mirascope/core/bedrock/_call_kwargs.py,sha256=N1d_iglnwZW3JrcaT8WTOeuLT5MYcVLU5vS8u8uyEL4,408
147
- mirascope/core/bedrock/_types.py,sha256=ntmzYsgT6wuigv1GavkdqCvJnAYRsFvVuIwxafE4DFY,3229
148
- mirascope/core/bedrock/call_params.py,sha256=3eKNYTteCTaPLqvAcy1vHU5aY9nMVNhmApL45ugPbrQ,1716
149
- mirascope/core/bedrock/call_response.py,sha256=V9YFYdPxW415t-yBq4Y5Jexn5hkewiePnWv9gghW9JA,8359
150
- mirascope/core/bedrock/call_response_chunk.py,sha256=EAs0mJseL-C4dlnEhggtUT8_s6L2d5lSAqrIjLxQepI,3524
151
- mirascope/core/bedrock/dynamic_config.py,sha256=X6v93X9g14mfvkGLL08yX-xTFGgX8y8bVngNmExdUhQ,1166
152
- mirascope/core/bedrock/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- mirascope/core/bedrock/stream.py,sha256=UyA6b7l3-MjEULzo-DXF-le7N3oQw6W5FFk48_K93a0,5219
154
- mirascope/core/bedrock/tool.py,sha256=tgt__paZyzpN1_NdTVKh-2hIWHah2Ect8lAfM1GEl-s,2758
155
- mirascope/core/bedrock/_utils/__init__.py,sha256=OYpHXxPRbgasCLz_emLatmNa5WCb_S6pvVFHcNoGy9E,389
156
- mirascope/core/bedrock/_utils/_convert_common_call_params.py,sha256=i17yrW-_7qdIsf-zS3OD5HIO0uykCdfanPsjV3WxTEY,1091
157
- mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=A67-Q3zgpXh9q0iub5IfJw9VRgHvK-pczt1Btot_jks,792
158
- mirascope/core/bedrock/_utils/_convert_message_params.py,sha256=ZPFj34ed0-4bmMldj4tR6EGb9RsuHkXzSwjmwEeN-KU,4680
159
- mirascope/core/bedrock/_utils/_get_json_output.py,sha256=hW-IBBQ5YW85VljjFJHDDtu66zsaF2ydTbFxgCX_j6A,1159
160
- mirascope/core/bedrock/_utils/_handle_stream.py,sha256=s8KNMNDKzvSIkFROtaZgbEJry78X_qCzTvGmHcL7UW0,3776
161
- mirascope/core/bedrock/_utils/_message_param_converter.py,sha256=BCoFozjclkqAZq1InB1ar_IAVGMW9xclU1bK-oi2zI0,6765
162
- mirascope/core/bedrock/_utils/_setup_call.py,sha256=XQs-JlviE0uhbBxEpjXP8812NbiObLYx5VkAwJJAF84,9168
163
- mirascope/core/cohere/__init__.py,sha256=vk73WFGBOEmMFEiqWMRnPfxsCBDlDcq8SaLB2A6RKeo,830
164
- mirascope/core/cohere/_call.py,sha256=y0nB_7h7FWCNxHRPywtAVCYXyeYX3uzTyYBPWnuLwUE,2261
165
- mirascope/core/cohere/_call_kwargs.py,sha256=YmHwiofs0QADGp0wXUtOr_Z5Pt849zaCtIZmVyjw2OM,292
166
- mirascope/core/cohere/_types.py,sha256=dMcep2mhuUUUmKvFUmdoxkq4Zg5AtB2xquROiBbwRvo,1017
167
- mirascope/core/cohere/call_params.py,sha256=xtmELsLkjfyfUoNbZpn3JET-gJxo1EIvlcwxgMw3gcw,1860
168
- mirascope/core/cohere/call_response.py,sha256=2nvT9tBqW0N6Kekf_W93rb8NBYdkT_lOvaXn57A9pXU,6362
169
- mirascope/core/cohere/call_response_chunk.py,sha256=M-EkkGOuNFnYqzAxn5HbE9EFmU4IRUA4kNPFnzl-nBs,3806
170
- mirascope/core/cohere/dynamic_config.py,sha256=noH36l6qGGnClVz0EtMqeW_0e4-oTCviU5SLIl8YS64,941
171
- mirascope/core/cohere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
- mirascope/core/cohere/stream.py,sha256=63vrbbFudQ6Z63dexPuL34sX-y3Q3arX-9zALLt3Nb4,3391
173
- mirascope/core/cohere/tool.py,sha256=fWp4aYVUFo8D6bOmh1WtBnTn9-jRMQvK6PRVw313xLs,2870
174
- mirascope/core/cohere/_utils/__init__.py,sha256=gVNO0OaGN-YpZXNEAGR8tTxKg36Zhsj5sAPDeOfHy3Y,388
175
- mirascope/core/cohere/_utils/_convert_common_call_params.py,sha256=PHJ8IaTfOiU_MY5Lef-dpOCTmAi8zZmS7ic79iwkKJU,804
176
- mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=JP8bUgIf1kATRejvcaS27wTTr8i-wQhCzue2fLSXd2I,795
177
- mirascope/core/cohere/_utils/_convert_message_params.py,sha256=RE_SPJs7FQE1f3g0aJnUQ6VPsPq0FzN0zLVeeB-ky7Y,1227
178
- mirascope/core/cohere/_utils/_get_json_output.py,sha256=65gJEpp2ThxGDXJQZyGACpyC-93SbDCthj3aXNrhg-M,1151
179
- mirascope/core/cohere/_utils/_handle_stream.py,sha256=X7sPmnhKlRr8j6-Ds8ZGkajriCEKMYxzDRYltmHYfWI,1181
180
- mirascope/core/cohere/_utils/_message_param_converter.py,sha256=IXuPK1mwA69LmcRFGzipwpn73YuKAnETtbUS0KAC_w0,1911
181
- mirascope/core/cohere/_utils/_setup_call.py,sha256=xdyXamNXYzjRldzQ-xyu-WvH7A7LjNuE2W-w9zP-f9U,4603
182
- mirascope/core/costs/__init__.py,sha256=yh17QpYkspXEgHG7cjyh-v86TXdv6Nmoz_wWNc4F1ww,123
183
- mirascope/core/costs/_anthropic_calculate_cost.py,sha256=G5jkMLTKsgbQL-Z42LAdsPdOQZVWDUpcqSlIEn9L7qQ,8916
184
- mirascope/core/costs/_azure_calculate_cost.py,sha256=E4SBA5BBXteipS9HiaEqhVmnckfnl0PJGeX9XMtT0wA,268
185
- mirascope/core/costs/_bedrock_calculate_cost.py,sha256=bAxF7rdu2VwDz7sZuN8e3Pe3Thn8ICl7eCxMhbmkjao,557
186
- mirascope/core/costs/_cohere_calculate_cost.py,sha256=nqt-H79SOljN35GOHPuYsrN6kBzNANzJFX8HBikit_Q,1266
187
- mirascope/core/costs/_gemini_calculate_cost.py,sha256=2zBrG49ZdX2IyoybC8_akaJU4RWCunvkfIvH7HajAgg,2298
188
- mirascope/core/costs/_google_calculate_cost.py,sha256=t3DMnt3w10e6rtofhhnLT40Y-qgdCxsehnjLLp5yrhs,14537
189
- mirascope/core/costs/_groq_calculate_cost.py,sha256=1AEN3b8hY2dSzdPtoHxAj7Zt6EOEDczzu63ZfijWisQ,5695
190
- mirascope/core/costs/_litellm_calculate_cost.py,sha256=0gS8EvLzCsl1JkzA1W621PM9-64mkpS2XXlKotqZ36A,241
191
- mirascope/core/costs/_mistral_calculate_cost.py,sha256=QhutXiWTCRHbrnyKZs-9JZPiF58IAEC2L8sRtBpzH3E,3218
192
- mirascope/core/costs/_openai_calculate_cost.py,sha256=P7083lU29TVZDK8dT-_JEpQi984x-KJUhzfjmukXMQY,15918
193
- mirascope/core/costs/_vertex_calculate_cost.py,sha256=KxW2nk0wskNjt-1itvlV-KR6qzOwBwa5V6UzzRetbbQ,2350
194
- mirascope/core/costs/_xai_calculate_cost.py,sha256=fUFwXMQhWjWK2UtApKragK4G5xmgy9zJSuou05Rajzk,3267
195
- mirascope/core/costs/calculate_cost.py,sha256=j8BKH5QN0t89JcLZWfklvKPV873Opzn5rFJuejyvb9Y,3043
196
- mirascope/core/gemini/__init__.py,sha256=x7GxY48nHa6nNFhoaS3ED8NK_DwF2bNEGXiWU865m7c,1105
197
- mirascope/core/gemini/_call.py,sha256=g47rUaE4V_onORvRUP9GlgnQKda28dV1Ge2YACvrD-c,2344
198
- mirascope/core/gemini/_call_kwargs.py,sha256=4f34gl1BPM14wkd0fGJw_58jYzxgGgNvZkjVI5d1hgU,360
199
- mirascope/core/gemini/call_params.py,sha256=aEXhgZVB0npcT6wL_p7GVGIE3vi_JOiMKdgWtpXTezQ,1723
200
- mirascope/core/gemini/call_response.py,sha256=7A2S60Vq2cmI3HkbtW-d3j-WPty2OXGxUp8RrHMKFxg,6391
201
- mirascope/core/gemini/call_response_chunk.py,sha256=YRyCrPLY5F79h_q3Yk6bg2ZiER_PpbAsg41ucy06QQ4,2915
202
- mirascope/core/gemini/dynamic_config.py,sha256=_bmJUVHFyrr3zKea96lES20q4GPOelK3W7K1DcX0mZ8,836
203
- mirascope/core/gemini/stream.py,sha256=1OIS-rrrDfRVRL86_HYatJ5uUKVLG2eRFx_PVb2YrCQ,3621
204
- mirascope/core/gemini/tool.py,sha256=ohO2kJPuAnYmO-t5WdavRbeSMgSfn66-A-6PEYraDPA,3073
205
- mirascope/core/gemini/_utils/__init__.py,sha256=0ZThXHighRBkotSbO4L19q1MN7T0LDoVVE4qJ5XW_-Q,388
206
- mirascope/core/gemini/_utils/_convert_common_call_params.py,sha256=1ZTpwqain90Va70xC9r9-_1YEIyvyZdjMiejN7E6yY4,1072
207
- mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
208
- mirascope/core/gemini/_utils/_convert_message_params.py,sha256=GYqU8pnjCa9Y-iIqkhPyvXegANtr8EJ9A3YwRDyR_dc,6864
209
- mirascope/core/gemini/_utils/_get_json_output.py,sha256=C2aeeEmcC-mBnbRL8aq3yohdCZJWMJc78E2GYqefK9k,1240
210
- mirascope/core/gemini/_utils/_handle_stream.py,sha256=1JoRIjwuVehVIjkvT_U2r9TMvMZB96ldp1n1AGon-tw,1153
211
- mirascope/core/gemini/_utils/_message_param_converter.py,sha256=4r_H1xtJErtLsrui8sG8YTIEjOiqQq_QA6fsMStwG8I,8359
212
- mirascope/core/gemini/_utils/_setup_call.py,sha256=QaboJO2k1D2ingfHuPSpb-YjMGRIcTIFN5Qe54eMCXM,4992
213
- mirascope/core/google/__init__.py,sha256=5EhyiomPnjOS59FgfQP2uPCXS74ZJrGYvJ_CZbYdF40,790
214
- mirascope/core/google/_call.py,sha256=GJOPyvHzVlSXvJpgQhJFg4wFHFUYsvvrbjhNxU-nSl8,2344
215
- mirascope/core/google/_call_kwargs.py,sha256=baCYcxWsmV06ATw6nuQhh6FPm3k6oWmKOn0MyjESDGc,372
216
- mirascope/core/google/call_params.py,sha256=9Dt5m1pPVjpl5Qppz6Egl_9FyGjjz9aGCnXkVps7C_Q,538
217
- mirascope/core/google/call_response.py,sha256=SuNN7WV5HuZBda36Vd0CLnMuzwcnZbDYDgM6z2P8pjY,7922
218
- mirascope/core/google/call_response_chunk.py,sha256=4d4YS-NyGxidB_8EkD8V_XzohcBxnTg3h8JEvgrKWPk,4028
219
- mirascope/core/google/dynamic_config.py,sha256=O6j8F0fLVFuuNwURneu5OpPuu_bMEtbDEFHhJXRT6V0,857
220
- mirascope/core/google/stream.py,sha256=voWrLRDfoG7NtNSNNRS44x9tNM6Y_i_9_V8bO1-Sx_k,6551
221
- mirascope/core/google/tool.py,sha256=61a9Ejdxz41pwaab9VE2yvP_J1Aebua3BeRPJ_GJSnE,5138
222
- mirascope/core/google/_utils/__init__.py,sha256=vL0hx6WKW5lqpUcFTFCFGvmwtR-pts0JzWgCXhaUVrI,388
223
- mirascope/core/google/_utils/_convert_common_call_params.py,sha256=TF7GWBHcpfzb7XmrxKp3gnaONITYF93lqr4XkSVz_uU,1195
224
- mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ig4tb7Zanz-tyZpvc9Ncd47a2FNTOS7-wl1PYBq-4cY,879
225
- mirascope/core/google/_utils/_convert_message_params.py,sha256=n0EbY3QPd4cpYRxWMDwV5s79Lqoj5d2CrcqUOdmn5Jg,13435
226
- mirascope/core/google/_utils/_get_json_output.py,sha256=sxDgT0Ra6YJynL5_hhakf0dNJEhZm0DfAgfcvC_DAFU,1596
227
- mirascope/core/google/_utils/_handle_stream.py,sha256=xTaQvAWnJ195YI_h68USvit4-G8T_fogmtBZFhu1qoE,2238
228
- mirascope/core/google/_utils/_message_param_converter.py,sha256=8N3etkSjoyU0wxcGVw13A5EtI7iphBD4pHG87iUCkZg,8094
229
- mirascope/core/google/_utils/_setup_call.py,sha256=UoV4McGgSS79PKErjArCmrq1HmpFvq2qegJYoyY4P5U,6469
230
- mirascope/core/google/_utils/_validate_media_type.py,sha256=qLSoUlv5l5AZJ_PAsGFZmHNNdJHiB3jbFuAR2Ckga6s,1746
231
- mirascope/core/groq/__init__.py,sha256=8jWCQScdei_TImGMWUwiKnlOwffQqaXdAL-bluFmEL0,798
232
- mirascope/core/groq/_call.py,sha256=gR8VN5IaYWIFXc0csn995q59FM0nBs-xVFjkVycPjMM,2223
233
- mirascope/core/groq/_call_kwargs.py,sha256=trT8AdQ-jdQPYKlGngIMRwwQuvKuvAbvI1yyozftOuI,425
234
- mirascope/core/groq/call_params.py,sha256=FchtsaeohTzYKzY9f2fUIzjgG2y4OtsnRWiHsUBLdi0,1619
235
- mirascope/core/groq/call_response.py,sha256=wEcOeanmYjD9FmrvgBXs7h6ptbfZcQugjvBl7g2Nq_k,7045
236
- mirascope/core/groq/call_response_chunk.py,sha256=lhlL7XelfBWzCY8SkCYHnstrTXo14s6aUsMRreuEYR0,3094
237
- mirascope/core/groq/dynamic_config.py,sha256=AjcXBVeBdMiI6ObHanX3TVMKYxm4iWhXju3m6d-ZWMY,937
238
- mirascope/core/groq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
- mirascope/core/groq/stream.py,sha256=hlz9k5XVJfAH290_5RG2cYHiG-7tO7BuiJpDLn--tzY,4457
240
- mirascope/core/groq/tool.py,sha256=mCUkDHqcZX3Kb44p6gDF9psswWjEBjegCHHbIgoziVc,2319
241
- mirascope/core/groq/_utils/__init__.py,sha256=Eu1QZZWKg_QhCIQPnjFc2izio83IfRx6NvLJY8mz9fc,386
242
- mirascope/core/groq/_utils/_convert_common_call_params.py,sha256=vRvabHCsB5h-Bv-dpMpNAHrQ6rrbAyc52V09x-zXTx0,725
243
- mirascope/core/groq/_utils/_convert_message_params.py,sha256=23fMq7-hnDrYyNQ8AJowwygPxvX7cf4efsXAFMBttwg,4676
244
- mirascope/core/groq/_utils/_get_json_output.py,sha256=vMbXmHC6OIwkg0TjyCTTUtIww3lfbApNy6yWgoAijGA,1012
245
- mirascope/core/groq/_utils/_handle_stream.py,sha256=CsjFZYip-Xxo-ZP6dSdNrIW9xSl-feTnYiYv-r39U0s,4605
246
- mirascope/core/groq/_utils/_message_param_converter.py,sha256=znFVMmYHAMceHZ6ya9QEIZKVjDtYTj5ZU-TP29x0Uho,3587
247
- mirascope/core/groq/_utils/_setup_call.py,sha256=fsXbP1NpzpJ3rq3oMvNEvgN4TJzudYb2zrW7JwKhbBM,4424
248
- mirascope/core/litellm/__init__.py,sha256=gsgXatPQTmEESU7h-eZ2DMurDeHYO9wXqKYMS_L3wl8,779
249
- mirascope/core/litellm/_call.py,sha256=mSCU9nT0ZQTru6BppGJgtudAWqWFs0a6m5q-VYbM-ow,2391
250
- mirascope/core/litellm/call_params.py,sha256=6bnAHDkHaltwMzaF-REE80kZgZxLldL6QD341a1m-PI,270
251
- mirascope/core/litellm/call_response.py,sha256=N6oEp4KLyi9wLhwiJ33AyGlY-xVGlE1QvB5NJiohN7E,739
252
- mirascope/core/litellm/call_response_chunk.py,sha256=cd43hZunl0VFtwInjMIJPIOl3mjomAvbG2Bzg2KZsoY,460
253
- mirascope/core/litellm/dynamic_config.py,sha256=ZKyVTht2qfJ2ams3HrlRierq2sE01SqiBimh51rE_6A,296
254
- mirascope/core/litellm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
- mirascope/core/litellm/stream.py,sha256=icE1YxWJlFW30k99mcYRdgKywb3z-3VUvYJFho_Yarg,3442
256
- mirascope/core/litellm/tool.py,sha256=qG9-CU4OJ1lzIVWXQRGtyGHNu8P6viUfG1vmDupPhg0,287
257
- mirascope/core/litellm/_utils/__init__.py,sha256=cJLLm3wKSo_t2fMoTD-QzYvOkO7M7dWM5UerYMgHv80,112
258
- mirascope/core/litellm/_utils/_setup_call.py,sha256=qQJKg5pMIcnvRUdKx65PbCR6dSZDziNg6wlezVrcpls,3493
259
- mirascope/core/mistral/__init__.py,sha256=75tjaJC9nioECzQumC0FYITjosMsXCO1VzPV1t41PCU,893
260
- mirascope/core/mistral/_call.py,sha256=p9aSLYVSNgaIGA5SqCgGuT7iWN5WLfwmXubk4IF-w_I,2274
261
- mirascope/core/mistral/_call_kwargs.py,sha256=vZxlADPx4muIePARGdfKOVQpxpIoaXT9tCG6kY5oxSQ,513
262
- mirascope/core/mistral/call_params.py,sha256=wWHWI9hRnfloGhQurMwCcka9c1u_TwgcN84Ih6qVBXs,1054
263
- mirascope/core/mistral/call_response.py,sha256=Qt4M9l5a7u7t2awISdm90SuWJzAhosXmqRj1R1AgfIY,6294
264
- mirascope/core/mistral/call_response_chunk.py,sha256=HvoPONyOcbMQPWnrG0qBCfiT6PHLaPR9nrByUuT1Cro,3130
265
- mirascope/core/mistral/dynamic_config.py,sha256=-pzTvXf870NxEhjpgjqPahFWqqifzMhSbvM0kXs2G_s,937
266
- mirascope/core/mistral/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
- mirascope/core/mistral/stream.py,sha256=AuLhdYd2oNBNmoRV05mkuEDEgAiqbc6GPT9T3LeV1u8,3616
268
- mirascope/core/mistral/tool.py,sha256=CUZQksDSc4JtwJSzr21zqhH1QJMMceu1drZmIl7Ntsw,2314
269
- mirascope/core/mistral/_utils/__init__.py,sha256=OEbMTcG48qVN68NOTsDjXhuX-NrW9mlGUKr3nmBR3gc,389
270
- mirascope/core/mistral/_utils/_convert_common_call_params.py,sha256=7nDwJ3vtzErHQHKmuNUpiq0yLkBS6mO_6X0JJpHzQbY,663
271
- mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ZxS1jyEweJYbjOdb543sPKSI17oUhATbs1JsIYVzKkA,720
272
- mirascope/core/mistral/_utils/_convert_message_params.py,sha256=nW18Bh4wQ-Nc00hu86d6hE9nC5wk_76dV7CXahfyQHo,4737
273
- mirascope/core/mistral/_utils/_get_json_output.py,sha256=WxZqpaVec8J5hRYemEHjCK-VhQeAyZ2c-ipWMArXM4o,1243
274
- mirascope/core/mistral/_utils/_handle_stream.py,sha256=9HowP742tvtXDuq8jO3KGPEnOL92xSP3fMP4SqkjC9E,5083
275
- mirascope/core/mistral/_utils/_message_param_converter.py,sha256=CCkL4iTei5Ce5ke0h_QnFOdjxulx4Vmyw3a0wDK_T0E,6889
276
- mirascope/core/mistral/_utils/_setup_call.py,sha256=bVTkWZMVIRKRD-L4ptOxy1QF-KSnlfrveOEYwYqjhqY,5057
277
- mirascope/core/openai/__init__.py,sha256=lOzSimt1AaWyFW2s_w1So5lIn7K2rpj3bEFicjoiyjM,882
278
- mirascope/core/openai/_call.py,sha256=ExXdY3rjBbil0ija2HlGMRvcOE2zOOj13rgliw8nmFc,2260
279
- mirascope/core/openai/_call_kwargs.py,sha256=x53EZmxqroNewR194M_JkRP1Ejuh4BTtDL-b7XNSo2Q,435
280
- mirascope/core/openai/call_params.py,sha256=TmUID-ssX9XDvLrqoLftxO08_oPB3zCMh-fIErD4s4w,3101
281
- mirascope/core/openai/call_response.py,sha256=m-y7TePiy0SJALIeTR4Vy0Ph70FHyMwNaeEpaaKyrD0,9045
282
- mirascope/core/openai/call_response_chunk.py,sha256=GLHiLEb-bRvTtBA9O2zlz8Dzqi7lwladRlNPwM0jv-g,4261
283
- mirascope/core/openai/dynamic_config.py,sha256=D36E3CMpXSaj5I8FEmtzMJz9gtTsNz1pVW_iM3dOCcw,1045
284
- mirascope/core/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
- mirascope/core/openai/stream.py,sha256=jyI9Q4-Ne4N34n30RzRCYsi8z-hFqXbV_Occ7KrFkW4,6174
286
- mirascope/core/openai/tool.py,sha256=iJWJQrY3-1Rq5OywzKFO9JUAcglneGD0UtkS3pcA0pg,3154
287
- mirascope/core/openai/_utils/__init__.py,sha256=Y1nMFOydpFvMWcuoB8TzMD33uZoMIM0C8_kYJkv_JJE,388
288
- mirascope/core/openai/_utils/_convert_common_call_params.py,sha256=gvxsRdULxiC2137M9l53hUmF0ZkBxFQFurhWBcl_5Cg,739
289
- mirascope/core/openai/_utils/_convert_message_params.py,sha256=B4pNV-QDR6bLaJVif1pjEogeEASzhPA6YokPGGLQaNw,6219
290
- mirascope/core/openai/_utils/_get_json_output.py,sha256=Q_5R6NFFDvmLoz9BQiymC5AEyYvxKPH2_XnOQZ8hIkU,1215
291
- mirascope/core/openai/_utils/_handle_stream.py,sha256=adsHAcTtGyMMFU9xnUsE4Yd2wrhSNSjcVddkS74mli0,5226
292
- mirascope/core/openai/_utils/_message_param_converter.py,sha256=r6zJ54xHMxxJ-2daY8l5FyDIa0HsdXeP0cN1wHNt6-E,4101
293
- mirascope/core/openai/_utils/_setup_call.py,sha256=8zxNZrWcZgBxi4kwzeXHsxFoJW0n0MZYSmSAYj3ossk,5500
294
- mirascope/core/vertex/__init__.py,sha256=eg_kNX956OYABi3leev5GyDg0KK8QopgztBtrMX7TGE,1435
295
- mirascope/core/vertex/_call.py,sha256=ebQmWoQLnxScyxhnGKU3MmHkXXzzs_Sw2Yf-d3nZFwU,2323
296
- mirascope/core/vertex/_call_kwargs.py,sha256=6JxQt1bAscbhPWTGESG1TiskB-i5imDHqLMgbMHmyfI,353
297
- mirascope/core/vertex/call_params.py,sha256=ISBnMITxAtvuGmpLF9UdkqcDS43RwtuuVakk01YIHDs,706
298
- mirascope/core/vertex/call_response.py,sha256=ATzIX1uSxMxzmh3R-PW_wmbxevyBEx6-Za9Fpf0epWM,6258
299
- mirascope/core/vertex/call_response_chunk.py,sha256=MDCeDjzFonqRpFdoQnfJRGDPiJakLB9n-o2WyOGLKNw,2926
300
- mirascope/core/vertex/dynamic_config.py,sha256=KISQf7c2Rf1EpaS_2Ik6beA1w9uz_dAvMBk4nQcrdaM,809
301
- mirascope/core/vertex/stream.py,sha256=FYhCtYRfQ6lEccHO5ZKVrQJ8iafpelVFIzykO3xVjGE,3544
302
- mirascope/core/vertex/tool.py,sha256=l8DGC6rh6mvXyDVzAzOMYtxQyym-XLlJSr7082TVGK0,3173
303
- mirascope/core/vertex/_utils/__init__.py,sha256=pD3-tMQD7Oe-k6T50wKb0vAsQ-nt4XFbJVam7m3leZg,388
304
- mirascope/core/vertex/_utils/_convert_common_call_params.py,sha256=v-kKo6vQdlQiQQnA3hRaS7NWCdzheVE0OGbLV4-8XLE,1056
305
- mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
306
- mirascope/core/vertex/_utils/_convert_message_params.py,sha256=e2Q5B-CrNTNJ1b7lDobs96eAJnOQDJq5PSuuouD5TUE,7476
307
- mirascope/core/vertex/_utils/_get_json_output.py,sha256=NxbdPPde9lyWSaWQYNPFgmFfOLwNBuyLKwXcS6q6GHw,1298
308
- mirascope/core/vertex/_utils/_handle_stream.py,sha256=zUhwnkGUdQvfU8AJ3u975HoNR1BfaWH7_VBcmBaNmuU,1139
309
- mirascope/core/vertex/_utils/_message_param_converter.py,sha256=wtysOaa9JsodMrAy1xUBWbIIjt9bIMTjBBfb3LpKFOc,5460
310
- mirascope/core/vertex/_utils/_setup_call.py,sha256=9LXR-8sFumEJvUYm58VQTBMkZMOR45K86-sTkA7xuFY,5110
311
- mirascope/core/xai/__init__.py,sha256=_5TaPqkZI-kU8FhF7ZSZz6I2cnnCgOVIM36hGiDh_Kc,699
312
- mirascope/core/xai/_call.py,sha256=gMCRzQFMPsWclPoyY--8189ajzX7BVkcwsGEdZALBLQ,2317
313
- mirascope/core/xai/call_params.py,sha256=1zRuST6shKUI1A_Fw6kqybObHiPpO2Nn0GEioOAtows,266
314
- mirascope/core/xai/call_response.py,sha256=u-hfLQtazSVBz4DnKLCuz-R2oT0ki21PhUEueJcH-Rw,440
315
- mirascope/core/xai/call_response_chunk.py,sha256=lnLNhzG1vFUYCgy267ZvteqrLtkddrrsRjfKS70YSdE,448
316
- mirascope/core/xai/dynamic_config.py,sha256=GOVAuS1eso4qrTG1SNAfs6TWB8aOuWFtDXcm5BTVFr8,288
317
- mirascope/core/xai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
- mirascope/core/xai/stream.py,sha256=qnGhY8FCbq4MRYyL_1_WagLhjL5v_Pzu3HOrcQ7D03Q,2159
319
- mirascope/core/xai/tool.py,sha256=W_UaEatgrtHkuDVILQSaBoomN3zFMS9YnXky-Py6MRY,275
320
- mirascope/core/xai/_utils/__init__.py,sha256=gHldtQYziYseLvCM0yvH-O87sFdvbP5pvz66hEllaj0,108
321
- mirascope/core/xai/_utils/_setup_call.py,sha256=0pCy8SqEQQEFUrCYTe6EEn_z7GuTY7-Gb9hnwkoBbH8,3523
322
- mirascope/experimental/graphs/__init__.py,sha256=xwvU6T5lqfMXeHZ0IN8cepzkFkSURpeeV7ozokjzaBY,162
323
- mirascope/experimental/graphs/finite_state_machine.py,sha256=xsiguJCW7nyMuITezYKHevM1R2LIs1rdMeqw5kmJITs,26470
324
- mirascope/integrations/__init__.py,sha256=ieLWknpbkO_gABIVl9790YTTCCRO9ISQ35-1SeOSU0Q,392
325
- mirascope/integrations/_middleware_factory.py,sha256=v-S-hVU5S7P9Lu8PiKyUhmtp_rbQaIJ1droC8BcKBAE,17362
326
- mirascope/integrations/tenacity.py,sha256=jk64MBncCMbgoQMaXQgjxg9Y9UstRqTt2RCeA86pdCU,326
327
- mirascope/integrations/langfuse/__init__.py,sha256=wG3eBXwGPbFedB28L1K_q1iCf_dERjVmTDCWK4nHZyM,71
328
- mirascope/integrations/langfuse/_utils.py,sha256=FPqmiBhzWKitFXn6RkWJ1unH8z_ebNLtaBuRD73fQLs,3430
329
- mirascope/integrations/langfuse/_with_langfuse.py,sha256=UTA--jCB9K8SqUmaVz_X_rBJA9W0adpbrPWJtPOFU-4,1880
330
- mirascope/integrations/logfire/__init__.py,sha256=OWceKOygazwUG1XLGvSu3T2-AqnuBxf3--fbwGZ1G9o,68
331
- mirascope/integrations/logfire/_utils.py,sha256=2BU37ucJPPYviQvMbrD0Qcqhh5hLifYN7PeaBK4bAk0,7108
332
- mirascope/integrations/logfire/_with_logfire.py,sha256=DfN6QbCrTlR1K3bS4M43rP8rvYKPgAqfx2k0MpzHY3g,1799
333
- mirascope/integrations/otel/__init__.py,sha256=OzboYfm3fUNwKTuu08KX83hQHYI4oZYN2DjgXoKcJS4,225
334
- mirascope/integrations/otel/_utils.py,sha256=SCVb3MpcpqLpCpumJEbEdINceNdusnyT6iuKPz66sBc,8778
335
- mirascope/integrations/otel/_with_hyperdx.py,sha256=f17uxXQk5zZPtyj6zwPwJz5i7atsnUPOoq1LqT8JO0E,1637
336
- mirascope/integrations/otel/_with_otel.py,sha256=tbjd6BEbcSfnsm5CWHBoHwbRNrHt6-t4or-SYGQSD-w,1659
337
- mirascope/llm/__init__.py,sha256=LI3YkfIZLJ_Pzkm2x4W0HbKO-EHDDojc5oYp7qO6YNs,508
338
- mirascope/llm/_call.py,sha256=_YOmo5Y4NU2Jz1XcgEEI94UCyzgiAFrKwIH7o2KQ5vM,13933
339
- mirascope/llm/_context.py,sha256=vtHJkLlFfUwyR_hYEHXAw3xunpHhLn67k4kuFw50GR8,12481
340
- mirascope/llm/_override.py,sha256=m4MdOhM-aJRIGP7NBJhscq3ISNct6FBPn3jjmryFo_Q,112292
341
- mirascope/llm/_protocols.py,sha256=HXspRAC0PduGqbh2BM0CGe5iVj7CC3ZKMPAYvFvbDNQ,16406
342
- mirascope/llm/_response_metaclass.py,sha256=6DLQb5IrqMldyEXHT_pAsr2DlUVc9CmZuZiBXG37WK8,851
343
- mirascope/llm/call_response.py,sha256=tJ6jHZ4PFaYf_4Hn9OihlVqOxNEM9d6gAi4Bo15XXnQ,4825
344
- mirascope/llm/call_response_chunk.py,sha256=bZwO43ipc6PO1VLgGSaAPRqCIUyZD_Ty5oxdJX62yno,1966
345
- mirascope/llm/stream.py,sha256=GtUKyLBlKqqZTOKjdL9FLInCXJ0ZOEAe6nymbjKwyTQ,5293
346
- mirascope/llm/tool.py,sha256=MQRJBPhP1d-OyOz3PE_VsKmSXca0chySyYO1U9OW8ck,1824
347
- mirascope/mcp/__init__.py,sha256=1tvG-fRD-_mr2vF3M49OgTLR7Vw8zdT6LucxnY4prF8,282
348
- mirascope/mcp/_utils.py,sha256=yLTSGApgzTq-0jrU3bkORlaCG4XvhaFhsfr4YZpT2gA,9455
349
- mirascope/mcp/client.py,sha256=ZK88o4UelR9htFWAWDbw084ZTrRL8tONdxlIX62adnM,5608
350
- mirascope/mcp/server.py,sha256=weXBk9ZmUcfZ5SZcR-dGRxvVXRMpn5UsE6ancnK1HZk,12402
351
- mirascope/mcp/tools.py,sha256=IT7CEqbBBiFc7mkaRpWIepUpuy_oSdcEa4cwGopEYWc,3079
352
- mirascope/retries/__init__.py,sha256=xw3jJm-vL4kR10VaKN6A8KGoP2CsAg5_Gy1eWVMgYhQ,249
353
- mirascope/retries/fallback.py,sha256=yT-vg7QkDwLHidTenq0HoX0RzbPc2G6IXILGluhzdGc,5063
354
- mirascope/retries/tenacity.py,sha256=stBJPjEpUzP53IBVBFtqY2fUSgmOV1-sIIXZZJ9pvLY,1387
355
- mirascope/tools/__init__.py,sha256=wsMYzSvGlFblPcsIF2YV92eZlDHSraWbjB5TicORUyA,959
356
- mirascope/tools/base.py,sha256=Bdnf9Te2tnPnvBS-dEeXVPv_jn5-z9FY_MQmBwP1ijU,3429
357
- mirascope/tools/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
- mirascope/tools/system/_docker_operation.py,sha256=eosRLlV8GjXd--7AADEnS8DuMGMB-n8n6jHrZha4vfE,6138
359
- mirascope/tools/system/_file_system.py,sha256=LclUoBjzk9MWK8UgQn2ulD0ofGpUncEcDQ_O9qdglmo,8892
360
- mirascope/tools/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- mirascope/tools/web/_duckduckgo.py,sha256=vKPcBW_wXAB1lB_W9BW5pmRlIGBZL82AbhvwpOdENvY,3684
362
- mirascope/tools/web/_httpx.py,sha256=9v-6_ALr-D5qf3TbJpO3-JoG1-TpH1fR5K2REju1lPQ,4566
363
- mirascope/tools/web/_parse_url_content.py,sha256=Wa5Omjx-q-Q-LxYlN42wEkUAhPpuLfYh1qSTjtv8Jdc,3374
364
- mirascope/tools/web/_requests.py,sha256=ExdzaKs6I2hx-MFtFNYq3xeRF8ewScm75KCf-FWNptk,1887
365
- mirascope/v0/__init__.py,sha256=BfM7dzuJssYjRpI-5A8quXvVlyeLlnwss0J0WTCVvU4,3115
366
- mirascope/v0/anthropic.py,sha256=G_36FJlyJ5QNxPn36DltFVcxYHhA_bDfjWjXp_L7xuE,1492
367
- mirascope/v0/openai.py,sha256=01F_yPeP1h-UO5U7DtmB8xfKhAmGs7e3yzG818q0qoM,1655
368
- mirascope/v0/base/__init__.py,sha256=IvAeqVvDQwQc6hKgQNp-N9mcuXcDQ4XrWgLinYiQR10,248
369
- mirascope/v0/base/calls.py,sha256=7JmDZbWSNkQ3njYTw0C8Dk73NttOwusACml4s7sRy1w,4156
370
- mirascope/v0/base/extractors.py,sha256=6PASapliHGrMNVsO3IGFDTSmv22nPkVdg0zgPky6LDY,4246
371
- mirascope/v0/base/ops_utils.py,sha256=1Qq-VIwgHBaYutiZsS2MUQ4OgPC3APyywI5bTiTAmAE,8161
372
- mirascope/v0/base/prompts.py,sha256=FM2Yz98cSnDceYogiwPrp4BALf3_F3d4fIOCGAkd-SE,1298
373
- mirascope/v0/base/types.py,sha256=ZfatJoX0Yl0e3jhv0D_MhiSVHLYUeJsdN3um3iE10zY,352
374
- mirascope/v0/base/utils.py,sha256=XREPENRQTu8gpMhHU8RC8qH_am3FfGUvY-dJ6x8i-mw,681
375
- mirascope-1.25.7.dist-info/METADATA,sha256=OQFqlGjtm2zzU6RkIL-Pm6WVZsB5qEiBc2dN2zZnjaQ,8542
376
- mirascope-1.25.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
377
- mirascope-1.25.7.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
378
- mirascope-1.25.7.dist-info/RECORD,,