mirascope 1.19.0__py3-none-any.whl → 1.20.1__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 (90) hide show
  1. mirascope/__init__.py +4 -0
  2. mirascope/beta/openai/realtime/realtime.py +7 -8
  3. mirascope/beta/openai/realtime/tool.py +2 -2
  4. mirascope/core/__init__.py +10 -1
  5. mirascope/core/anthropic/_utils/__init__.py +0 -2
  6. mirascope/core/anthropic/_utils/_convert_message_params.py +1 -7
  7. mirascope/core/anthropic/_utils/_message_param_converter.py +48 -31
  8. mirascope/core/anthropic/call_response.py +7 -9
  9. mirascope/core/anthropic/call_response_chunk.py +10 -0
  10. mirascope/core/anthropic/stream.py +6 -8
  11. mirascope/core/azure/_utils/__init__.py +0 -2
  12. mirascope/core/azure/call_response.py +7 -10
  13. mirascope/core/azure/call_response_chunk.py +6 -1
  14. mirascope/core/azure/stream.py +6 -8
  15. mirascope/core/base/__init__.py +10 -1
  16. mirascope/core/base/_utils/__init__.py +2 -0
  17. mirascope/core/base/_utils/_get_image_dimensions.py +39 -0
  18. mirascope/core/base/call_response.py +36 -6
  19. mirascope/core/base/call_response_chunk.py +15 -1
  20. mirascope/core/base/stream.py +25 -3
  21. mirascope/core/base/types.py +276 -2
  22. mirascope/core/bedrock/_utils/__init__.py +0 -2
  23. mirascope/core/bedrock/call_response.py +7 -10
  24. mirascope/core/bedrock/call_response_chunk.py +6 -0
  25. mirascope/core/bedrock/stream.py +6 -10
  26. mirascope/core/cohere/_utils/__init__.py +0 -2
  27. mirascope/core/cohere/call_response.py +7 -10
  28. mirascope/core/cohere/call_response_chunk.py +6 -0
  29. mirascope/core/cohere/stream.py +5 -8
  30. mirascope/core/costs/__init__.py +5 -0
  31. mirascope/core/{anthropic/_utils/_calculate_cost.py → costs/_anthropic_calculate_cost.py} +45 -14
  32. mirascope/core/{azure/_utils/_calculate_cost.py → costs/_azure_calculate_cost.py} +3 -3
  33. mirascope/core/{bedrock/_utils/_calculate_cost.py → costs/_bedrock_calculate_cost.py} +3 -3
  34. mirascope/core/{cohere/_utils/_calculate_cost.py → costs/_cohere_calculate_cost.py} +12 -8
  35. mirascope/core/{gemini/_utils/_calculate_cost.py → costs/_gemini_calculate_cost.py} +7 -7
  36. mirascope/core/costs/_google_calculate_cost.py +427 -0
  37. mirascope/core/costs/_groq_calculate_cost.py +156 -0
  38. mirascope/core/costs/_litellm_calculate_cost.py +11 -0
  39. mirascope/core/costs/_mistral_calculate_cost.py +64 -0
  40. mirascope/core/costs/_openai_calculate_cost.py +416 -0
  41. mirascope/core/{vertex/_utils/_calculate_cost.py → costs/_vertex_calculate_cost.py} +8 -7
  42. mirascope/core/{xai/_utils/_calculate_cost.py → costs/_xai_calculate_cost.py} +9 -9
  43. mirascope/core/costs/calculate_cost.py +86 -0
  44. mirascope/core/gemini/_utils/__init__.py +0 -2
  45. mirascope/core/gemini/call_response.py +7 -10
  46. mirascope/core/gemini/call_response_chunk.py +6 -1
  47. mirascope/core/gemini/stream.py +5 -8
  48. mirascope/core/google/_utils/__init__.py +0 -2
  49. mirascope/core/google/_utils/_setup_call.py +21 -2
  50. mirascope/core/google/call_response.py +9 -10
  51. mirascope/core/google/call_response_chunk.py +6 -1
  52. mirascope/core/google/stream.py +5 -8
  53. mirascope/core/groq/_utils/__init__.py +0 -2
  54. mirascope/core/groq/call_response.py +22 -10
  55. mirascope/core/groq/call_response_chunk.py +6 -0
  56. mirascope/core/groq/stream.py +5 -8
  57. mirascope/core/litellm/call_response.py +3 -4
  58. mirascope/core/litellm/stream.py +30 -22
  59. mirascope/core/mistral/_utils/__init__.py +0 -2
  60. mirascope/core/mistral/call_response.py +7 -10
  61. mirascope/core/mistral/call_response_chunk.py +6 -0
  62. mirascope/core/mistral/stream.py +5 -8
  63. mirascope/core/openai/_utils/__init__.py +0 -2
  64. mirascope/core/openai/_utils/_convert_message_params.py +4 -4
  65. mirascope/core/openai/call_response.py +30 -10
  66. mirascope/core/openai/call_response_chunk.py +6 -0
  67. mirascope/core/openai/stream.py +5 -8
  68. mirascope/core/vertex/_utils/__init__.py +0 -2
  69. mirascope/core/vertex/call_response.py +5 -10
  70. mirascope/core/vertex/call_response_chunk.py +6 -0
  71. mirascope/core/vertex/stream.py +5 -8
  72. mirascope/core/xai/_utils/__init__.py +1 -2
  73. mirascope/core/xai/call_response.py +0 -11
  74. mirascope/llm/__init__.py +10 -2
  75. mirascope/llm/_protocols.py +8 -28
  76. mirascope/llm/call_response.py +6 -6
  77. mirascope/llm/call_response_chunk.py +12 -3
  78. mirascope/llm/llm_call.py +21 -23
  79. mirascope/llm/llm_override.py +56 -27
  80. mirascope/llm/stream.py +7 -7
  81. mirascope/llm/tool.py +1 -1
  82. mirascope/retries/fallback.py +1 -1
  83. {mirascope-1.19.0.dist-info → mirascope-1.20.1.dist-info}/METADATA +1 -1
  84. {mirascope-1.19.0.dist-info → mirascope-1.20.1.dist-info}/RECORD +86 -82
  85. mirascope/core/google/_utils/_calculate_cost.py +0 -215
  86. mirascope/core/groq/_utils/_calculate_cost.py +0 -69
  87. mirascope/core/mistral/_utils/_calculate_cost.py +0 -48
  88. mirascope/core/openai/_utils/_calculate_cost.py +0 -246
  89. {mirascope-1.19.0.dist-info → mirascope-1.20.1.dist-info}/WHEEL +0 -0
  90. {mirascope-1.19.0.dist-info → mirascope-1.20.1.dist-info}/licenses/LICENSE +0 -0
@@ -5,22 +5,22 @@ from __future__ import annotations
5
5
  from collections.abc import Callable
6
6
  from typing import TYPE_CHECKING, Any, Literal, ParamSpec, TypeVar, overload
7
7
 
8
- from mirascope.core.base import CommonCallParams
9
- from mirascope.llm._protocols import Provider
10
- from mirascope.llm.llm_call import _call
8
+ from ..core.base import CommonCallParams
9
+ from ..core.base.types import LocalProvider, Provider
10
+ from .llm_call import _call
11
11
 
12
12
  if TYPE_CHECKING:
13
- from mirascope.core.anthropic import AnthropicCallParams
14
- from mirascope.core.azure import AzureCallParams
15
- from mirascope.core.bedrock import BedrockCallParams
16
- from mirascope.core.cohere import CohereCallParams
17
- from mirascope.core.gemini import GeminiCallParams
18
- from mirascope.core.google import GoogleCallParams
19
- from mirascope.core.groq import GroqCallParams
20
- from mirascope.core.litellm import LiteLLMCallParams
21
- from mirascope.core.mistral import MistralCallParams
22
- from mirascope.core.openai import OpenAICallParams
23
- from mirascope.core.vertex import VertexCallParams
13
+ from ..core.anthropic import AnthropicCallParams
14
+ from ..core.azure import AzureCallParams
15
+ from ..core.bedrock import BedrockCallParams
16
+ from ..core.cohere import CohereCallParams
17
+ from ..core.gemini import GeminiCallParams
18
+ from ..core.google import GoogleCallParams
19
+ from ..core.groq import GroqCallParams
20
+ from ..core.litellm import LiteLLMCallParams
21
+ from ..core.mistral import MistralCallParams
22
+ from ..core.openai import OpenAICallParams
23
+ from ..core.vertex import VertexCallParams
24
24
  else:
25
25
  AnthropicCallParams = AzureCallParams = BedrockCallParams = CohereCallParams = (
26
26
  GeminiCallParams
@@ -42,6 +42,8 @@ def override(
42
42
  call_params: CommonCallParams | AnthropicCallParams | None = None,
43
43
  client: Any = None, # noqa: ANN401
44
44
  ) -> Callable[_P, _R]: ...
45
+
46
+
45
47
  @overload
46
48
  def override(
47
49
  provider_agnostic_call: Callable[_P, _R],
@@ -51,6 +53,8 @@ def override(
51
53
  call_params: CommonCallParams | AzureCallParams | None = None,
52
54
  client: Any = None, # noqa: ANN401
53
55
  ) -> Callable[_P, _R]: ...
56
+
57
+
54
58
  @overload
55
59
  def override(
56
60
  provider_agnostic_call: Callable[_P, _R],
@@ -60,6 +64,8 @@ def override(
60
64
  call_params: CommonCallParams | BedrockCallParams | None = None,
61
65
  client: Any = None, # noqa: ANN401
62
66
  ) -> Callable[_P, _R]: ...
67
+
68
+
63
69
  @overload
64
70
  def override(
65
71
  provider_agnostic_call: Callable[_P, _R],
@@ -69,6 +75,8 @@ def override(
69
75
  call_params: CommonCallParams | CohereCallParams | None = None,
70
76
  client: Any = None, # noqa: ANN401
71
77
  ) -> Callable[_P, _R]: ...
78
+
79
+
72
80
  @overload
73
81
  def override(
74
82
  provider_agnostic_call: Callable[_P, _R],
@@ -78,6 +86,8 @@ def override(
78
86
  call_params: CommonCallParams | GeminiCallParams | None = None,
79
87
  client: Any = None, # noqa: ANN401
80
88
  ) -> Callable[_P, _R]: ...
89
+
90
+
81
91
  @overload
82
92
  def override(
83
93
  provider_agnostic_call: Callable[_P, _R],
@@ -98,6 +108,8 @@ def override(
98
108
  call_params: CommonCallParams | GroqCallParams | None = None,
99
109
  client: Any = None, # noqa: ANN401
100
110
  ) -> Callable[_P, _R]: ...
111
+
112
+
101
113
  @overload
102
114
  def override(
103
115
  provider_agnostic_call: Callable[_P, _R],
@@ -107,6 +119,8 @@ def override(
107
119
  call_params: CommonCallParams | MistralCallParams | None = None,
108
120
  client: Any = None, # noqa: ANN401
109
121
  ) -> Callable[_P, _R]: ...
122
+
123
+
110
124
  @overload
111
125
  def override(
112
126
  provider_agnostic_call: Callable[_P, _R],
@@ -116,6 +130,8 @@ def override(
116
130
  call_params: CommonCallParams | OpenAICallParams | None = None,
117
131
  client: Any = None, # noqa: ANN401
118
132
  ) -> Callable[_P, _R]: ...
133
+
134
+
119
135
  @overload
120
136
  def override(
121
137
  provider_agnostic_call: Callable[_P, _R],
@@ -125,6 +141,8 @@ def override(
125
141
  call_params: CommonCallParams | LiteLLMCallParams | None = None,
126
142
  client: Any = None, # noqa: ANN401
127
143
  ) -> Callable[_P, _R]: ...
144
+
145
+
128
146
  @overload
129
147
  def override(
130
148
  provider_agnostic_call: Callable[_P, _R],
@@ -134,6 +152,8 @@ def override(
134
152
  call_params: CommonCallParams | VertexCallParams | None = None,
135
153
  client: Any = None, # noqa: ANN401
136
154
  ) -> Callable[_P, _R]: ...
155
+
156
+
137
157
  @overload
138
158
  def override(
139
159
  provider_agnostic_call: Callable[_P, _R],
@@ -143,6 +163,8 @@ def override(
143
163
  call_params: CommonCallParams | None = None,
144
164
  client: Any = None, # noqa: ANN401
145
165
  ) -> Callable[_P, _R]: ...
166
+
167
+
146
168
  @overload
147
169
  def override(
148
170
  provider_agnostic_call: Callable[_P, _R],
@@ -157,7 +179,7 @@ def override(
157
179
  def override(
158
180
  provider_agnostic_call: Callable[_P, _R],
159
181
  *,
160
- provider: Provider | None = None,
182
+ provider: Provider | LocalProvider | None = None,
161
183
  model: str | None = None,
162
184
  call_params: CommonCallParams
163
185
  | AnthropicCallParams
@@ -185,20 +207,27 @@ def override(
185
207
  Returns:
186
208
  The overridden function.
187
209
  """
188
- _original_args = provider_agnostic_call._original_args # pyright: ignore [reportFunctionMemberAccess]
189
- if provider is not None and not model and call_params is None and client is None:
210
+ if (provider and not model) or (model and not provider):
190
211
  raise ValueError(
191
- "If provider is specified, model or call_params must also be specified."
212
+ "Provider and model must both be overridden if either is overridden."
192
213
  )
193
214
 
215
+ original_provider = provider_agnostic_call._original_provider # pyright: ignore [reportFunctionMemberAccess]
216
+ original_args = provider_agnostic_call._original_args # pyright: ignore [reportFunctionMemberAccess]
217
+
218
+ # Note: if switching providers, we will always use `client` since `original_client`
219
+ # would be from a different provider and fail.
220
+ if provider and provider == original_provider:
221
+ client = client or original_args["client"]
222
+
194
223
  return _call( # pyright: ignore [reportReturnType]
195
- provider=provider or provider_agnostic_call._original_provider, # pyright: ignore [reportFunctionMemberAccess]
196
- model=model or _original_args["model"],
197
- stream=_original_args["stream"],
198
- tools=_original_args["tools"],
199
- response_model=_original_args["response_model"],
200
- output_parser=_original_args["output_parser"],
201
- json_mode=_original_args["json_mode"],
202
- client=client or _original_args["client"],
203
- call_params=call_params or _original_args["call_params"],
224
+ provider=provider or original_provider,
225
+ model=model or original_args["model"],
226
+ stream=original_args["stream"],
227
+ tools=original_args["tools"],
228
+ response_model=original_args["response_model"],
229
+ output_parser=original_args["output_parser"],
230
+ json_mode=original_args["json_mode"],
231
+ client=client,
232
+ call_params=call_params or original_args["call_params"],
204
233
  )(provider_agnostic_call._original_fn) # pyright: ignore [reportFunctionMemberAccess]
mirascope/llm/stream.py CHANGED
@@ -5,7 +5,7 @@ from __future__ import annotations
5
5
  from collections.abc import AsyncGenerator, Generator
6
6
  from typing import Any, Generic, TypeVar
7
7
 
8
- from mirascope.core.base import (
8
+ from ..core.base import (
9
9
  BaseCallParams,
10
10
  BaseCallResponse,
11
11
  BaseCallResponseChunk,
@@ -13,12 +13,12 @@ from mirascope.core.base import (
13
13
  BaseMessageParam,
14
14
  BaseTool,
15
15
  )
16
- from mirascope.core.base.call_response import JsonableType
17
- from mirascope.core.base.stream import BaseStream
18
- from mirascope.core.base.types import FinishReason
19
- from mirascope.llm.call_response import CallResponse
20
- from mirascope.llm.call_response_chunk import CallResponseChunk
21
- from mirascope.llm.tool import Tool
16
+ from ..core.base.call_response import JsonableType
17
+ from ..core.base.stream import BaseStream
18
+ from ..core.base.types import FinishReason
19
+ from ..llm.call_response import CallResponse
20
+ from ..llm.call_response_chunk import CallResponseChunk
21
+ from .tool import Tool
22
22
 
23
23
  _BaseCallResponseT = TypeVar("_BaseCallResponseT", bound=BaseCallResponse)
24
24
  _BaseCallResponseChunkT = TypeVar(
mirascope/llm/tool.py CHANGED
@@ -6,7 +6,7 @@ from typing import Any, TypeVar
6
6
 
7
7
  from pydantic._internal._model_construction import ModelMetaclass
8
8
 
9
- from mirascope.core.base.tool import BaseTool
9
+ from ..core.base.tool import BaseTool
10
10
 
11
11
  _ToolResponseT = TypeVar("_ToolResponseT", bound=BaseTool)
12
12
 
@@ -8,7 +8,7 @@ from typing_extensions import NotRequired, Required, TypedDict
8
8
 
9
9
  from .. import llm
10
10
  from ..core.base import CommonCallParams
11
- from ..llm._protocols import Provider
11
+ from ..core.base.types import Provider
12
12
 
13
13
  _P = ParamSpec("_P")
14
14
  _R = TypeVar("_R")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mirascope
3
- Version: 1.19.0
3
+ Version: 1.20.1
4
4
  Summary: LLM abstractions that aren't obstructions
5
5
  Project-URL: Homepage, https://mirascope.com
6
6
  Project-URL: Documentation, https://mirascope.com/WELCOME
@@ -1,11 +1,11 @@
1
- mirascope/__init__.py,sha256=WMa4cvnfRli9wLRuO5qbTPM3ltgpXnI_so2z2WH6nDM,1013
1
+ mirascope/__init__.py,sha256=9tlaOwtuiqux3XRp13S50-miVOXdNUFQPpgJ52DAigk,1083
2
2
  mirascope/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  mirascope/beta/__init__.py,sha256=YsIIE5w3nKj0Ywcs_Y5tSE6WlHKR-nQwwbhNF1R8UW8,43
4
4
  mirascope/beta/openai/__init__.py,sha256=a7xllQBfcpO6kYwZ5Zv1CWzN9qpS1SJoBgb1J20F-Hk,257
5
5
  mirascope/beta/openai/realtime/__init__.py,sha256=kYEaLHjek8LsxR5xQB2JYMvCsHxi0MjtPGA4Nos4bgs,286
6
- mirascope/beta/openai/realtime/realtime.py,sha256=RpwoXXdd4wZOEJIIsS815RGBUa4uWp1JntObbFq3vqY,19500
6
+ mirascope/beta/openai/realtime/realtime.py,sha256=_sc2HBJ26OfOLssosziytYLnRLNGupck7rKHeDZWhDM,19457
7
7
  mirascope/beta/openai/realtime/recording.py,sha256=ZRvJbCQ2TdtlNEM-D4I8kTyQZ3tfR0KAdk6RhzBlqus,2876
8
- mirascope/beta/openai/realtime/tool.py,sha256=-0YT0asVcUR6_7wXOAyQXDrCmQjgdSwAwuIYfVYSGwM,3321
8
+ mirascope/beta/openai/realtime/tool.py,sha256=ROQJSS31-s82yHiiSeCrF3vy7WXJMg4XnTj5skHcJoo,3309
9
9
  mirascope/beta/openai/realtime/_utils/__init__.py,sha256=Jginrcpj_EkhdcMe79CtrN5FbS6_jt-fIKPOQ74U0Qg,55
10
10
  mirascope/beta/openai/realtime/_utils/_audio.py,sha256=5M9olfNXRq4EBuScvbrWc4AVPsf7LvDiT9ZeJ3P6TPc,1884
11
11
  mirascope/beta/openai/realtime/_utils/_protocols.py,sha256=oQSTwoAVg81NKnNaIpP9hMFqnn8sNstnLPaR9cMa7Dc,1440
@@ -41,39 +41,37 @@ mirascope/beta/rag/pinecone/vectorstores.py,sha256=ZcLwVmrxNMq5a2mLI-3F9XJ_UYDry
41
41
  mirascope/beta/rag/weaviate/__init__.py,sha256=eod9OprMo1zdDb-waYWtBJKWuYQRx7v-QEen-wzm_5w,231
42
42
  mirascope/beta/rag/weaviate/types.py,sha256=-2r2Vy71kpLlRJgVqWoE3atub5a2eymHPSjTHuSqCfQ,2984
43
43
  mirascope/beta/rag/weaviate/vectorstores.py,sha256=8Nwy-QRHwSUdvMkqEhqmUkN7y_CzQN7bop7do1K8v4w,3606
44
- mirascope/core/__init__.py,sha256=bNYO5iH0WYq09KFJZpUm5pquBbCO8CUqFekWB4U-5gQ,1846
44
+ mirascope/core/__init__.py,sha256=SqxvVLwoIfxE8LJZfoXLFgMYujDUcYiAkZ_riTD6CO8,2030
45
45
  mirascope/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  mirascope/core/anthropic/__init__.py,sha256=GB-CULa3jYEPv1ZDyZjNCKQJbrc6ojqu8WNRSFElQ-4,918
47
47
  mirascope/core/anthropic/_call.py,sha256=LXUR__AyexD-hsPMPKpA7IFuh8Cfc0uAg1GrJSxiWnU,2358
48
48
  mirascope/core/anthropic/_call_kwargs.py,sha256=EoXSl2B5FoLD_Nv03-ttXjiKlpBihZGXu6U-Ol3qwZ8,389
49
49
  mirascope/core/anthropic/call_params.py,sha256=K51kCyIf6us3Tl2SPgkqrZoacZTNwaMuVj23hFJcVBk,1238
50
- mirascope/core/anthropic/call_response.py,sha256=D8eshm98BZIwVWrU2kMjI-jLMPAiA6ntzM2Rpzl2598,6263
51
- mirascope/core/anthropic/call_response_chunk.py,sha256=xyChfLv4ScBbzk-V12npwV-NDH9NOwAVosA76z3tfdE,3799
50
+ mirascope/core/anthropic/call_response.py,sha256=HsnYw9II46UC6JP5-hK5q5a-twJiyZOs4_HytRyalrM,6203
51
+ mirascope/core/anthropic/call_response_chunk.py,sha256=Pzpc4nHUqA-OhMaBvdT7sJOexgRbrevNebqHm1HGrrA,4113
52
52
  mirascope/core/anthropic/dynamic_config.py,sha256=kZV4ApAnm3P1X5gKPJ3hbr45K6tgaNX8L6Ca8NjTkxU,1192
53
53
  mirascope/core/anthropic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- mirascope/core/anthropic/stream.py,sha256=5aOJY3hEFtu3gPpJZdUiuY4fOYWyNB5MYi_Idul1scc,4912
54
+ mirascope/core/anthropic/stream.py,sha256=VviSkdl_K6v6kCWXH8x0zOpspt13ZcafU7aUjZiqXsk,4852
55
55
  mirascope/core/anthropic/tool.py,sha256=HtbYV5j4itV8v6lTyLDY72NMX2kxRaXVgpZ_m89HqIk,2891
56
- mirascope/core/anthropic/_utils/__init__.py,sha256=xHjaWpLBcUOW_tuBrOBQ2MewFr5Kga-LBYuqw1ZTP_U,559
57
- mirascope/core/anthropic/_utils/_calculate_cost.py,sha256=tbiBag0GEDEqwQw5BvwpUsInLRJoRU42KW1hYJyfAHA,7678
56
+ mirascope/core/anthropic/_utils/__init__.py,sha256=GDO3G2dvWsE8UhFyQ1lKkRVMeOrqqogBISRKJYJmoEQ,493
58
57
  mirascope/core/anthropic/_utils/_convert_common_call_params.py,sha256=ILd7AH_atmPUPj7I74EsmxG3rmWC7b5tgjnlR24jKUs,765
59
58
  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=UVsrvgpZIRnzZzEE-HW3gfZBR7Y4Gvq1RDAWusc8wuM,4466
59
+ mirascope/core/anthropic/_utils/_convert_message_params.py,sha256=xTbdMg7AXVCD7qEoqQ934Q_u6eSngwEPB7h-zRCIN_4,4127
61
60
  mirascope/core/anthropic/_utils/_get_json_output.py,sha256=vkHvhc96RLrGREYVCKr14Umq80EUa7pCtlcImjXB5gA,1157
62
61
  mirascope/core/anthropic/_utils/_handle_stream.py,sha256=6Ll2FQt1KWrz5jqgeP1NikHEjlrSbfPUQCH4eoX4eVA,4010
63
- mirascope/core/anthropic/_utils/_message_param_converter.py,sha256=CIeOA0SXtuDnhpqBlt5_nkg14ASzBRk1-1JpHY4QDq0,6546
62
+ mirascope/core/anthropic/_utils/_message_param_converter.py,sha256=3npGrdXV_Lt7IIkEcIXN17CdOoo1937_D5aIL3aWv28,7301
64
63
  mirascope/core/anthropic/_utils/_setup_call.py,sha256=tR-SFT_ZJd_Gk7RY4NOU3do536RRO3US4IfOuyAapOw,4340
65
64
  mirascope/core/azure/__init__.py,sha256=7Dpkf10T-TGxk7Lstej6x6s6On7QjI0qeE2ABO7QWmQ,852
66
65
  mirascope/core/azure/_call.py,sha256=SHqSJe6_4zgn4Y9PkpDl4vXvLuT4QmVnWUcws9e_RR8,2237
67
66
  mirascope/core/azure/_call_kwargs.py,sha256=q38xKSgCBWi8DLScepG-KnUfgi67AU6xr2uOHwCZ2mI,435
68
67
  mirascope/core/azure/call_params.py,sha256=NK_ggVJbactDip85DbfCaqSWRpO0CgwN1svY-KW4_Yg,1836
69
- mirascope/core/azure/call_response.py,sha256=6V-83KaznRmubrdD4aV-umFrpJnItZlJ6osO3rTE-oQ,6985
70
- mirascope/core/azure/call_response_chunk.py,sha256=5SEQ-aCMoIHCO9sIAzjAKwT-jYUqZbkAzrM6wPv62p4,3003
68
+ mirascope/core/azure/call_response.py,sha256=0jn2hHAOPoN_Q5J9Vg40iUGgJ3UjhJWqbwm81Dyrgno,6901
69
+ mirascope/core/azure/call_response_chunk.py,sha256=2NorPZ6szna3G-xDx63kuPuMQ7PCh5WNeGhiBRvwCYM,3155
71
70
  mirascope/core/azure/dynamic_config.py,sha256=6SBMGFce7tuXdwHrlKNISpZxVxUnnumbIQB9lGR6nbs,1066
72
71
  mirascope/core/azure/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- mirascope/core/azure/stream.py,sha256=D5pTQa0FLwPjyaUV4TN_a8oK53Qr1Opfv0z4x0sUn6A,4697
72
+ mirascope/core/azure/stream.py,sha256=XfEO6sOgnXiOhhuagrFdtFI-oQECxBP0Zt0wbfUH1TU,4637
74
73
  mirascope/core/azure/tool.py,sha256=SAhrGT-_rO0i4Jv9rMEFbMDYPqsm415qXUtHY3aNhrQ,2682
75
- mirascope/core/azure/_utils/__init__.py,sha256=WrcNkwnIi8sioHEn5fzQ5UTN4thg21VPLIexX2yMNxU,453
76
- mirascope/core/azure/_utils/_calculate_cost.py,sha256=TcpxFcFzbGFeCKHyQW_UFEB0DBQAA9ViRAIcqOsugHo,317
74
+ mirascope/core/azure/_utils/__init__.py,sha256=v9ILkXOs2qfFwuKWlOb9k7X09fmLnmKzYe1iMP2Zlag,387
77
75
  mirascope/core/azure/_utils/_convert_common_call_params.py,sha256=mDmrDIEOn2nm4mTFQvv8ErM0xDvjtupvIL9beycPx4I,790
78
76
  mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=Tn9tf--eJ1__iapf-D67UYwHFOBoEgTIJSVn8nqos3Q,823
79
77
  mirascope/core/azure/_utils/_convert_message_params.py,sha256=qUs88dNeUw57XpHW7ihk3HZ96phfPssPS-A_49eypw0,5085
@@ -82,7 +80,7 @@ mirascope/core/azure/_utils/_get_json_output.py,sha256=Qec7WJY5is1Q63Vp9uUNNfkRw
82
80
  mirascope/core/azure/_utils/_handle_stream.py,sha256=M_BGnjBGWTPefNyIMuJSHiDxIvqmENmqfVlDx_qzL1c,4638
83
81
  mirascope/core/azure/_utils/_message_param_converter.py,sha256=JAUeHObtd_V225YyZqEruuih3HRozq43pqjYJCbJj8A,4443
84
82
  mirascope/core/azure/_utils/_setup_call.py,sha256=cdUof-RCxsPbKuJvevsEUYXU-ckoql3wTevNEQiEpz4,6496
85
- mirascope/core/base/__init__.py,sha256=ahRkRK1nXqs97byuFeTvIv0f1m8R5VNqbcV0Y0_AAUY,1958
83
+ mirascope/core/base/__init__.py,sha256=mENqcLNM5-FCh4lyDGihOAegQSAzSoIK744pBMkJinM,2067
86
84
  mirascope/core/base/_call_factory.py,sha256=YdFHAa9WtGfYeqVcM2xaDNh5gMg584rOe26_E51-1to,9663
87
85
  mirascope/core/base/_create.py,sha256=1UNRA6pwMguaiLyLiQkPzTk12ASaXT_hh7jlNw4UFX4,10016
88
86
  mirascope/core/base/_extract.py,sha256=QTqkArgmgR17OB5jTP86Wo-TW-BcouOcK9gdMy-EcNw,6799
@@ -90,8 +88,8 @@ mirascope/core/base/_extract_with_tools.py,sha256=MW4v8D1xty7LqLb5RwMFkX-peQqA73
90
88
  mirascope/core/base/_partial.py,sha256=w_ACCgsDKNLtMyAP-lNmfRdrFEPmzh2BT4aninajxyY,3240
91
89
  mirascope/core/base/call_kwargs.py,sha256=0mznCsrj1dYxvdwYNF0RKbc9CiU5G6WvvcjPqOMsOE4,351
92
90
  mirascope/core/base/call_params.py,sha256=wtuuOY-SwIZYCDBKfn_xRC0Kf1cUuI4eSQaXu6VrtaE,1331
93
- mirascope/core/base/call_response.py,sha256=VuujT75WMOnfOO7Y7YqNyhdbHf7fF-MLRDUqBNo9qX4,9405
94
- mirascope/core/base/call_response_chunk.py,sha256=YXw_7c7PsMv5K0UuE3vIznr-BssjAPdqCAhIZT36AEA,3172
91
+ mirascope/core/base/call_response.py,sha256=Z30zh8qqiKmnuxadt2ch6vxN2LAkQv7sKHaonuSbJ44,10271
92
+ mirascope/core/base/call_response_chunk.py,sha256=ZfulgERwgva55TLrQI9XimX8bpgOqBNLs_I-_kELl-4,3606
95
93
  mirascope/core/base/dynamic_config.py,sha256=V5IG2X5gPFpfQ47uO8JU1zoC2eNdRftsRZEmwhRPaYI,2859
96
94
  mirascope/core/base/from_call_args.py,sha256=8ijMX7PN6a4o6uLdmXJlSRnE-rEVJU5NLxUmNrS8dvU,909
97
95
  mirascope/core/base/merge_decorators.py,sha256=9pQYXuTxLh4mGKVIsnR5pYBkYCaQjg85TTelC6XDldE,1988
@@ -100,13 +98,13 @@ mirascope/core/base/messages.py,sha256=jD8SGjP3VQJsRfDo71ifHfwTMH4bHtYyjXQKyWRy_
100
98
  mirascope/core/base/metadata.py,sha256=V9hgMkj6m3QGsu4H5LhCxBZBYQLoygJv0CeLIf1DF0M,382
101
99
  mirascope/core/base/prompt.py,sha256=M5PK9JoEsWTQ-kzNCpZKdDGzWAkb8MS267xEFCPfpAU,15414
102
100
  mirascope/core/base/response_model_config_dict.py,sha256=OUdx_YkV2vBzUSSB2OYLAAHf22T7jvF5tRuc6c-vhNQ,254
103
- mirascope/core/base/stream.py,sha256=BwU9hPopb08fv4iFkd4yHTQidvIL984-1GuylFIuMBk,16580
101
+ mirascope/core/base/stream.py,sha256=ZHjC9MQ3HT9KMbqCKTB0um2fvMLJmRYU_eSGdfRj79I,17274
104
102
  mirascope/core/base/stream_config.py,sha256=vwWqNh9NJhTYjiJmfDbC9D5O84je_lBRhNOt4wI3FHM,238
105
103
  mirascope/core/base/structured_stream.py,sha256=FIvLXXKninrpQ5P7MsLEqGrU4cfvEDiPbueZqgJ4Dlw,10395
106
104
  mirascope/core/base/tool.py,sha256=ISk4MKfNljfsMe0rEwW0J8Dqty7WXJej7gV2oSiVxa8,6885
107
105
  mirascope/core/base/toolkit.py,sha256=GmZquYPqvQL2J9Hd6StEwx6jfeFsqtcUyxKvp4iW_7Q,6271
108
- mirascope/core/base/types.py,sha256=Z8aNsECJ2cOwcA9qZTmDKcGzvWjHOuIJgGkO7FhfUHQ,1794
109
- mirascope/core/base/_utils/__init__.py,sha256=aWk12g8Xnrie14rwiIbUINvk_jOSfT0A7j4uTlu2zZU,2985
106
+ mirascope/core/base/types.py,sha256=4GVyVzHThWJU2Og-wpVbYNPZD8QMdHltIAV83FUlisM,9247
107
+ mirascope/core/base/_utils/__init__.py,sha256=dbN-XSnpb-jdQtHvs5zhiAXLNac1nxA-2718fAXIgpI,3069
110
108
  mirascope/core/base/_utils/_base_message_param_converter.py,sha256=WcfVQXf-SqtwgcRwi0GgyCba5ErsnnMMdu61CAm4Qn4,676
111
109
  mirascope/core/base/_utils/_base_type.py,sha256=x8ZabSxZZNAy6ER-VQEkB6mNyjWcGSCBivFydFNIRUE,700
112
110
  mirascope/core/base/_utils/_convert_base_model_to_base_tool.py,sha256=JoHf1CbRwK91dABm5xLhdIPmeMSFS_nj-qW9OQu_YJ0,1750
@@ -125,6 +123,7 @@ mirascope/core/base/_utils/_get_document_type.py,sha256=XKuXlSssVLT_hR7XQHKY2fjh
125
123
  mirascope/core/base/_utils/_get_dynamic_configuration.py,sha256=4zyGYhJLJF7TfO-ZD2bLZOF46_RFIb_zQq5NaZH6ugA,2033
126
124
  mirascope/core/base/_utils/_get_fields_from_call_args.py,sha256=UxisQxdsNppyDxYscyDbRa3NkHd943a83V5hBot9kRI,1124
127
125
  mirascope/core/base/_utils/_get_fn_args.py,sha256=g4k-w44NwVvypfRq4kNAX8v-kaBX-i9lg4CKY-g6FaM,731
126
+ mirascope/core/base/_utils/_get_image_dimensions.py,sha256=cQTVJO7X0kACazqjGMMl_Pee3On_l1iD1n7BBb_7gGA,1262
128
127
  mirascope/core/base/_utils/_get_image_type.py,sha256=2BvCbPQWxsuTYQYsdm7_V_l1bX-eYioIIQNK6T_DAxk,856
129
128
  mirascope/core/base/_utils/_get_metadata.py,sha256=j1HHSlcVAVpF7XmhzcqmPdorFwdgdicqYwsGGrE1PHs,563
130
129
  mirascope/core/base/_utils/_get_possible_user_message_param.py,sha256=iU1hcKuRDWByk8MvOMyrdM5SZ3Zsnrcr4Ljp5r40IwE,690
@@ -146,14 +145,13 @@ mirascope/core/bedrock/_call.py,sha256=8Z8sdzpTdJsMHBev35B1KH3O16_eMLbtTkOmPB7bz
146
145
  mirascope/core/bedrock/_call_kwargs.py,sha256=N1d_iglnwZW3JrcaT8WTOeuLT5MYcVLU5vS8u8uyEL4,408
147
146
  mirascope/core/bedrock/_types.py,sha256=ntmzYsgT6wuigv1GavkdqCvJnAYRsFvVuIwxafE4DFY,3229
148
147
  mirascope/core/bedrock/call_params.py,sha256=3eKNYTteCTaPLqvAcy1vHU5aY9nMVNhmApL45ugPbrQ,1716
149
- mirascope/core/bedrock/call_response.py,sha256=tBJcBOhjnFPjXUPDOgdNN_vgGbovIidlJs5HHPvCB4k,8308
150
- mirascope/core/bedrock/call_response_chunk.py,sha256=oH5fmS3NVOqHOthKKtBPbMdujmjmvKCMBXvSMSV9s9A,3348
148
+ mirascope/core/bedrock/call_response.py,sha256=KHBA5OQmCbDwK7CneFimRt2gj1aHE0iHKrfC6zH2aKM,8224
149
+ mirascope/core/bedrock/call_response_chunk.py,sha256=EAs0mJseL-C4dlnEhggtUT8_s6L2d5lSAqrIjLxQepI,3524
151
150
  mirascope/core/bedrock/dynamic_config.py,sha256=X6v93X9g14mfvkGLL08yX-xTFGgX8y8bVngNmExdUhQ,1166
152
151
  mirascope/core/bedrock/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- mirascope/core/bedrock/stream.py,sha256=yMPOiwd4d0ncGVg9Ci2e7aChTO4w_DR9ryBQlzApESU,5288
152
+ mirascope/core/bedrock/stream.py,sha256=UyA6b7l3-MjEULzo-DXF-le7N3oQw6W5FFk48_K93a0,5219
154
153
  mirascope/core/bedrock/tool.py,sha256=rE5rx-CyJTy5kFOtYwZh9kkr4eR_4uUxGqDQRS9OWSE,2657
155
- mirascope/core/bedrock/_utils/__init__.py,sha256=E3aGPg8HteKUPfTmkZhoukrnZUs2WA9xoZDrjGBI0_8,455
156
- mirascope/core/bedrock/_utils/_calculate_cost.py,sha256=Z8CfSgnDifhDBe3RBO9pq3HG9yoTrpQed5EDMwuDjcg,606
154
+ mirascope/core/bedrock/_utils/__init__.py,sha256=OYpHXxPRbgasCLz_emLatmNa5WCb_S6pvVFHcNoGy9E,389
157
155
  mirascope/core/bedrock/_utils/_convert_common_call_params.py,sha256=i17yrW-_7qdIsf-zS3OD5HIO0uykCdfanPsjV3WxTEY,1091
158
156
  mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=A67-Q3zgpXh9q0iub5IfJw9VRgHvK-pczt1Btot_jks,792
159
157
  mirascope/core/bedrock/_utils/_convert_message_params.py,sha256=ZPFj34ed0-4bmMldj4tR6EGb9RsuHkXzSwjmwEeN-KU,4680
@@ -166,14 +164,13 @@ mirascope/core/cohere/_call.py,sha256=y0nB_7h7FWCNxHRPywtAVCYXyeYX3uzTyYBPWnuLwU
166
164
  mirascope/core/cohere/_call_kwargs.py,sha256=YmHwiofs0QADGp0wXUtOr_Z5Pt849zaCtIZmVyjw2OM,292
167
165
  mirascope/core/cohere/_types.py,sha256=dMcep2mhuUUUmKvFUmdoxkq4Zg5AtB2xquROiBbwRvo,1017
168
166
  mirascope/core/cohere/call_params.py,sha256=xtmELsLkjfyfUoNbZpn3JET-gJxo1EIvlcwxgMw3gcw,1860
169
- mirascope/core/cohere/call_response.py,sha256=P4Jc5q8qHeTaXxxmdJtDQoOziCbBLAoGuCEDeIcRnV0,6279
170
- mirascope/core/cohere/call_response_chunk.py,sha256=BmhVaFItss0WskJqhkapSmOPKbrfHjQUK0XTd9Ox_ys,3630
167
+ mirascope/core/cohere/call_response.py,sha256=mCr9133MV5Iy4SK7pB7V6IFSJMb7VgWZ3PiUcgkS6GI,6191
168
+ mirascope/core/cohere/call_response_chunk.py,sha256=M-EkkGOuNFnYqzAxn5HbE9EFmU4IRUA4kNPFnzl-nBs,3806
171
169
  mirascope/core/cohere/dynamic_config.py,sha256=noH36l6qGGnClVz0EtMqeW_0e4-oTCviU5SLIl8YS64,941
172
170
  mirascope/core/cohere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
- mirascope/core/cohere/stream.py,sha256=RMzq4SYD3JfCqT_2ErDdbyzUu1s4qUI3AVAu6pdJqp8,3509
171
+ mirascope/core/cohere/stream.py,sha256=63vrbbFudQ6Z63dexPuL34sX-y3Q3arX-9zALLt3Nb4,3391
174
172
  mirascope/core/cohere/tool.py,sha256=fWp4aYVUFo8D6bOmh1WtBnTn9-jRMQvK6PRVw313xLs,2870
175
- mirascope/core/cohere/_utils/__init__.py,sha256=yCu26gZulDyG9zDquYGtms6UKlK1GEY7o9Y_94RiiAk,454
176
- mirascope/core/cohere/_utils/_calculate_cost.py,sha256=LE0egtaNJxG8KHLY3pH4MzTsKK6Jy2X-t3G5kOnsIQk,1157
173
+ mirascope/core/cohere/_utils/__init__.py,sha256=gVNO0OaGN-YpZXNEAGR8tTxKg36Zhsj5sAPDeOfHy3Y,388
177
174
  mirascope/core/cohere/_utils/_convert_common_call_params.py,sha256=PHJ8IaTfOiU_MY5Lef-dpOCTmAi8zZmS7ic79iwkKJU,804
178
175
  mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=JP8bUgIf1kATRejvcaS27wTTr8i-wQhCzue2fLSXd2I,795
179
176
  mirascope/core/cohere/_utils/_convert_message_params.py,sha256=RE_SPJs7FQE1f3g0aJnUQ6VPsPq0FzN0zLVeeB-ky7Y,1227
@@ -181,17 +178,30 @@ mirascope/core/cohere/_utils/_get_json_output.py,sha256=65gJEpp2ThxGDXJQZyGACpyC
181
178
  mirascope/core/cohere/_utils/_handle_stream.py,sha256=X7sPmnhKlRr8j6-Ds8ZGkajriCEKMYxzDRYltmHYfWI,1181
182
179
  mirascope/core/cohere/_utils/_message_param_converter.py,sha256=IXuPK1mwA69LmcRFGzipwpn73YuKAnETtbUS0KAC_w0,1911
183
180
  mirascope/core/cohere/_utils/_setup_call.py,sha256=xdyXamNXYzjRldzQ-xyu-WvH7A7LjNuE2W-w9zP-f9U,4603
181
+ mirascope/core/costs/__init__.py,sha256=yh17QpYkspXEgHG7cjyh-v86TXdv6Nmoz_wWNc4F1ww,123
182
+ mirascope/core/costs/_anthropic_calculate_cost.py,sha256=G5jkMLTKsgbQL-Z42LAdsPdOQZVWDUpcqSlIEn9L7qQ,8916
183
+ mirascope/core/costs/_azure_calculate_cost.py,sha256=E4SBA5BBXteipS9HiaEqhVmnckfnl0PJGeX9XMtT0wA,268
184
+ mirascope/core/costs/_bedrock_calculate_cost.py,sha256=bAxF7rdu2VwDz7sZuN8e3Pe3Thn8ICl7eCxMhbmkjao,557
185
+ mirascope/core/costs/_cohere_calculate_cost.py,sha256=nqt-H79SOljN35GOHPuYsrN6kBzNANzJFX8HBikit_Q,1266
186
+ mirascope/core/costs/_gemini_calculate_cost.py,sha256=2zBrG49ZdX2IyoybC8_akaJU4RWCunvkfIvH7HajAgg,2298
187
+ mirascope/core/costs/_google_calculate_cost.py,sha256=t3DMnt3w10e6rtofhhnLT40Y-qgdCxsehnjLLp5yrhs,14537
188
+ mirascope/core/costs/_groq_calculate_cost.py,sha256=1AEN3b8hY2dSzdPtoHxAj7Zt6EOEDczzu63ZfijWisQ,5695
189
+ mirascope/core/costs/_litellm_calculate_cost.py,sha256=0gS8EvLzCsl1JkzA1W621PM9-64mkpS2XXlKotqZ36A,241
190
+ mirascope/core/costs/_mistral_calculate_cost.py,sha256=QhutXiWTCRHbrnyKZs-9JZPiF58IAEC2L8sRtBpzH3E,3218
191
+ mirascope/core/costs/_openai_calculate_cost.py,sha256=P7083lU29TVZDK8dT-_JEpQi984x-KJUhzfjmukXMQY,15918
192
+ mirascope/core/costs/_vertex_calculate_cost.py,sha256=KxW2nk0wskNjt-1itvlV-KR6qzOwBwa5V6UzzRetbbQ,2350
193
+ mirascope/core/costs/_xai_calculate_cost.py,sha256=fUFwXMQhWjWK2UtApKragK4G5xmgy9zJSuou05Rajzk,3267
194
+ mirascope/core/costs/calculate_cost.py,sha256=j8BKH5QN0t89JcLZWfklvKPV873Opzn5rFJuejyvb9Y,3043
184
195
  mirascope/core/gemini/__init__.py,sha256=x7GxY48nHa6nNFhoaS3ED8NK_DwF2bNEGXiWU865m7c,1105
185
196
  mirascope/core/gemini/_call.py,sha256=g47rUaE4V_onORvRUP9GlgnQKda28dV1Ge2YACvrD-c,2344
186
197
  mirascope/core/gemini/_call_kwargs.py,sha256=4f34gl1BPM14wkd0fGJw_58jYzxgGgNvZkjVI5d1hgU,360
187
198
  mirascope/core/gemini/call_params.py,sha256=aEXhgZVB0npcT6wL_p7GVGIE3vi_JOiMKdgWtpXTezQ,1723
188
- mirascope/core/gemini/call_response.py,sha256=sZWm02tDW3lWl2WDYXem1suws_PpH3DXUe3BQG1fKSY,6304
189
- mirascope/core/gemini/call_response_chunk.py,sha256=G-nDxXe6hazQTNMt96yx-Qel3VbLq0wIsOOe6NLTEU8,2763
199
+ mirascope/core/gemini/call_response.py,sha256=ZJsyER0oXXOlNbSWxD7k-2THUUoOEFTyuCwyp4yb2vQ,6220
200
+ mirascope/core/gemini/call_response_chunk.py,sha256=YRyCrPLY5F79h_q3Yk6bg2ZiER_PpbAsg41ucy06QQ4,2915
190
201
  mirascope/core/gemini/dynamic_config.py,sha256=_bmJUVHFyrr3zKea96lES20q4GPOelK3W7K1DcX0mZ8,836
191
- mirascope/core/gemini/stream.py,sha256=6ZToMusLGPOyARLyRCEslryvfahmhR8B_ys4NkAIG0g,3739
202
+ mirascope/core/gemini/stream.py,sha256=1OIS-rrrDfRVRL86_HYatJ5uUKVLG2eRFx_PVb2YrCQ,3621
192
203
  mirascope/core/gemini/tool.py,sha256=ohO2kJPuAnYmO-t5WdavRbeSMgSfn66-A-6PEYraDPA,3073
193
- mirascope/core/gemini/_utils/__init__.py,sha256=rRJHluu810Jel3Bu3ok_8uyfPWnXYC0r1K5QuKPOAUo,454
194
- mirascope/core/gemini/_utils/_calculate_cost.py,sha256=AdKOSWhrFNdnTRd_E_xt80cVvjC3HiASfIrbGqKx2_0,2302
204
+ mirascope/core/gemini/_utils/__init__.py,sha256=0ZThXHighRBkotSbO4L19q1MN7T0LDoVVE4qJ5XW_-Q,388
195
205
  mirascope/core/gemini/_utils/_convert_common_call_params.py,sha256=1ZTpwqain90Va70xC9r9-_1YEIyvyZdjMiejN7E6yY4,1072
196
206
  mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
197
207
  mirascope/core/gemini/_utils/_convert_message_params.py,sha256=GYqU8pnjCa9Y-iIqkhPyvXegANtr8EJ9A3YwRDyR_dc,6864
@@ -203,33 +213,31 @@ mirascope/core/google/__init__.py,sha256=5EhyiomPnjOS59FgfQP2uPCXS74ZJrGYvJ_CZbY
203
213
  mirascope/core/google/_call.py,sha256=GJOPyvHzVlSXvJpgQhJFg4wFHFUYsvvrbjhNxU-nSl8,2344
204
214
  mirascope/core/google/_call_kwargs.py,sha256=baCYcxWsmV06ATw6nuQhh6FPm3k6oWmKOn0MyjESDGc,372
205
215
  mirascope/core/google/call_params.py,sha256=9Dt5m1pPVjpl5Qppz6Egl_9FyGjjz9aGCnXkVps7C_Q,538
206
- mirascope/core/google/call_response.py,sha256=ysyHPkX7ott83WWxAOabKwC6Utopcnmt806kXIFAuj0,7361
207
- mirascope/core/google/call_response_chunk.py,sha256=d2zBPO2txlg7lz59Z3ayBk7rDyz96r_tT6Qo4B86on4,3275
216
+ mirascope/core/google/call_response.py,sha256=U1jyuIQ1F3E6HR4Q2540rDDXkX64b0uAK2F7CPCr-pQ,7385
217
+ mirascope/core/google/call_response_chunk.py,sha256=oORYaGjOBv4U1IVhsR_ZS-Vr-B58I8G0-9d6Kcj9RM4,3427
208
218
  mirascope/core/google/dynamic_config.py,sha256=O6j8F0fLVFuuNwURneu5OpPuu_bMEtbDEFHhJXRT6V0,857
209
- mirascope/core/google/stream.py,sha256=ZRheoBvKEv1XFgHoATeiBdo5W1v8KK46f5WRhCfZ0ME,4584
219
+ mirascope/core/google/stream.py,sha256=bTxB8OUrKXxzmcX0C7_-LqtBfaAAazA5HjKZGSxxtLw,4466
210
220
  mirascope/core/google/tool.py,sha256=hHHKlC6CIfv55XqG0NUsBf8eEgUNpgvaBuljq5_NopE,3030
211
- mirascope/core/google/_utils/__init__.py,sha256=5MKOhK3NFseq2AlapU8TtWS82f8Z0ayJCs3WMsDyc4E,454
212
- mirascope/core/google/_utils/_calculate_cost.py,sha256=n4cB8KPIpcP5fihXmKWZCfZ_DAsjs_Pd5rWN0-TVWGg,9018
221
+ mirascope/core/google/_utils/__init__.py,sha256=vL0hx6WKW5lqpUcFTFCFGvmwtR-pts0JzWgCXhaUVrI,388
213
222
  mirascope/core/google/_utils/_convert_common_call_params.py,sha256=KA-z6uvRtdD4WydC0eXd3dzQuSh4x4WKNR8PAqFNUVY,1065
214
223
  mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ig4tb7Zanz-tyZpvc9Ncd47a2FNTOS7-wl1PYBq-4cY,879
215
224
  mirascope/core/google/_utils/_convert_message_params.py,sha256=5FcMqK20OISCr00HP33w8219B1cNoy1AXkUmOeaIdkU,8079
216
225
  mirascope/core/google/_utils/_get_json_output.py,sha256=sxDgT0Ra6YJynL5_hhakf0dNJEhZm0DfAgfcvC_DAFU,1596
217
226
  mirascope/core/google/_utils/_handle_stream.py,sha256=BxFuheAu1LKPrPsDxxiLWd2KoajkwJyx2_QT1NXwtWE,1212
218
227
  mirascope/core/google/_utils/_message_param_converter.py,sha256=eucmZl-zfU3cQiH5VVLs8_fJWf8zLg4-Q8KKChYFez4,6579
219
- mirascope/core/google/_utils/_setup_call.py,sha256=LAoIrNTTF5EOHNLZroBcN8sNKOjMYKJ07hM49yBaUgE,5791
228
+ mirascope/core/google/_utils/_setup_call.py,sha256=2t3yRly_I4l2jtJ8pJwi2f2crq7PF4d1Gh4EAaWgZcU,6361
220
229
  mirascope/core/google/_utils/_validate_media_type.py,sha256=sUOjKpC498L-NCiECejAAfSzMUAvZT84rf-2Yo-JE58,1042
221
230
  mirascope/core/groq/__init__.py,sha256=8jWCQScdei_TImGMWUwiKnlOwffQqaXdAL-bluFmEL0,798
222
231
  mirascope/core/groq/_call.py,sha256=gR8VN5IaYWIFXc0csn995q59FM0nBs-xVFjkVycPjMM,2223
223
232
  mirascope/core/groq/_call_kwargs.py,sha256=trT8AdQ-jdQPYKlGngIMRwwQuvKuvAbvI1yyozftOuI,425
224
233
  mirascope/core/groq/call_params.py,sha256=FchtsaeohTzYKzY9f2fUIzjgG2y4OtsnRWiHsUBLdi0,1619
225
- mirascope/core/groq/call_response.py,sha256=m9Rkd34WdM-DYMSfB_QNMLP3alTC4VYGAAncXgADReI,6396
226
- mirascope/core/groq/call_response_chunk.py,sha256=pzAFzv7KGsvTwXlXVHuDZMkB9UoVVeqIkwKtKeJ5_dg,2918
234
+ mirascope/core/groq/call_response.py,sha256=hnkwjzAyr8QP6WMOESXgh-6ciaemlXRQ8rmDm4u0A5M,6880
235
+ mirascope/core/groq/call_response_chunk.py,sha256=lhlL7XelfBWzCY8SkCYHnstrTXo14s6aUsMRreuEYR0,3094
227
236
  mirascope/core/groq/dynamic_config.py,sha256=AjcXBVeBdMiI6ObHanX3TVMKYxm4iWhXju3m6d-ZWMY,937
228
237
  mirascope/core/groq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
- mirascope/core/groq/stream.py,sha256=g7FF3kGkQ04pKW1VfEoeKPpiazb1zt340ijSiZQmiyc,4575
238
+ mirascope/core/groq/stream.py,sha256=hlz9k5XVJfAH290_5RG2cYHiG-7tO7BuiJpDLn--tzY,4457
230
239
  mirascope/core/groq/tool.py,sha256=mCUkDHqcZX3Kb44p6gDF9psswWjEBjegCHHbIgoziVc,2319
231
- mirascope/core/groq/_utils/__init__.py,sha256=SNhwvsAOc-vVHQrbZFmf1dGlGBFl42hqJrTW7Gjlrzw,452
232
- mirascope/core/groq/_utils/_calculate_cost.py,sha256=NDDtYiJy6x243PyGVNCS8rxATFYn4GmgeLEkDtJL8Yo,2554
240
+ mirascope/core/groq/_utils/__init__.py,sha256=Eu1QZZWKg_QhCIQPnjFc2izio83IfRx6NvLJY8mz9fc,386
233
241
  mirascope/core/groq/_utils/_convert_common_call_params.py,sha256=vRvabHCsB5h-Bv-dpMpNAHrQ6rrbAyc52V09x-zXTx0,725
234
242
  mirascope/core/groq/_utils/_convert_message_params.py,sha256=23fMq7-hnDrYyNQ8AJowwygPxvX7cf4efsXAFMBttwg,4676
235
243
  mirascope/core/groq/_utils/_get_json_output.py,sha256=vMbXmHC6OIwkg0TjyCTTUtIww3lfbApNy6yWgoAijGA,1012
@@ -239,11 +247,11 @@ mirascope/core/groq/_utils/_setup_call.py,sha256=fsXbP1NpzpJ3rq3oMvNEvgN4TJzudYb
239
247
  mirascope/core/litellm/__init__.py,sha256=gsgXatPQTmEESU7h-eZ2DMurDeHYO9wXqKYMS_L3wl8,779
240
248
  mirascope/core/litellm/_call.py,sha256=mSCU9nT0ZQTru6BppGJgtudAWqWFs0a6m5q-VYbM-ow,2391
241
249
  mirascope/core/litellm/call_params.py,sha256=6bnAHDkHaltwMzaF-REE80kZgZxLldL6QD341a1m-PI,270
242
- mirascope/core/litellm/call_response.py,sha256=cPhGUKmRWboiwXr-qofgRhFNzKFhvv7i9n1u9wqVi40,706
250
+ mirascope/core/litellm/call_response.py,sha256=N6oEp4KLyi9wLhwiJ33AyGlY-xVGlE1QvB5NJiohN7E,739
243
251
  mirascope/core/litellm/call_response_chunk.py,sha256=cd43hZunl0VFtwInjMIJPIOl3mjomAvbG2Bzg2KZsoY,460
244
252
  mirascope/core/litellm/dynamic_config.py,sha256=ZKyVTht2qfJ2ams3HrlRierq2sE01SqiBimh51rE_6A,296
245
253
  mirascope/core/litellm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
- mirascope/core/litellm/stream.py,sha256=7l7wxn728lb_OKrEFAVVZ3y37hZRzyif1lJLtSGHQrY,3122
254
+ mirascope/core/litellm/stream.py,sha256=icE1YxWJlFW30k99mcYRdgKywb3z-3VUvYJFho_Yarg,3442
247
255
  mirascope/core/litellm/tool.py,sha256=qG9-CU4OJ1lzIVWXQRGtyGHNu8P6viUfG1vmDupPhg0,287
248
256
  mirascope/core/litellm/_utils/__init__.py,sha256=cJLLm3wKSo_t2fMoTD-QzYvOkO7M7dWM5UerYMgHv80,112
249
257
  mirascope/core/litellm/_utils/_setup_call.py,sha256=qQJKg5pMIcnvRUdKx65PbCR6dSZDziNg6wlezVrcpls,3493
@@ -251,14 +259,13 @@ mirascope/core/mistral/__init__.py,sha256=75tjaJC9nioECzQumC0FYITjosMsXCO1VzPV1t
251
259
  mirascope/core/mistral/_call.py,sha256=p9aSLYVSNgaIGA5SqCgGuT7iWN5WLfwmXubk4IF-w_I,2274
252
260
  mirascope/core/mistral/_call_kwargs.py,sha256=vZxlADPx4muIePARGdfKOVQpxpIoaXT9tCG6kY5oxSQ,513
253
261
  mirascope/core/mistral/call_params.py,sha256=wWHWI9hRnfloGhQurMwCcka9c1u_TwgcN84Ih6qVBXs,1054
254
- mirascope/core/mistral/call_response.py,sha256=4pwNSmdszHe5HtziWSIYA7BNEVkUUvLn-2bp0VA_tz0,6188
255
- mirascope/core/mistral/call_response_chunk.py,sha256=-lo4XL_x-pHWEC4WrE6Ohc6wn91iDzXnqelJJywjFBE,2954
262
+ mirascope/core/mistral/call_response.py,sha256=rHgO70a4cGPBqEWWEP9Tp8TJUIiPHDr1l8OQaiuF1mw,6104
263
+ mirascope/core/mistral/call_response_chunk.py,sha256=HvoPONyOcbMQPWnrG0qBCfiT6PHLaPR9nrByUuT1Cro,3130
256
264
  mirascope/core/mistral/dynamic_config.py,sha256=-pzTvXf870NxEhjpgjqPahFWqqifzMhSbvM0kXs2G_s,937
257
265
  mirascope/core/mistral/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
- mirascope/core/mistral/stream.py,sha256=6mG43lq1vMbSznVq32hWsTlOHJQEIXpLdN302NvwMHo,3734
266
+ mirascope/core/mistral/stream.py,sha256=AuLhdYd2oNBNmoRV05mkuEDEgAiqbc6GPT9T3LeV1u8,3616
259
267
  mirascope/core/mistral/tool.py,sha256=1vY_I16Ma7gnNLkmsWEt7amv_xMiIgbCbFDVm2WIsP8,2279
260
- mirascope/core/mistral/_utils/__init__.py,sha256=_3PFMvGOXngCCxBce_8ob0IkuMrHW9crTuuTWTEawaw,455
261
- mirascope/core/mistral/_utils/_calculate_cost.py,sha256=mlxfL57jYecaXlc5Xn5FBs42jNbnenlevGs1oTOwUB4,2136
268
+ mirascope/core/mistral/_utils/__init__.py,sha256=OEbMTcG48qVN68NOTsDjXhuX-NrW9mlGUKr3nmBR3gc,389
262
269
  mirascope/core/mistral/_utils/_convert_common_call_params.py,sha256=7nDwJ3vtzErHQHKmuNUpiq0yLkBS6mO_6X0JJpHzQbY,663
263
270
  mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ZxS1jyEweJYbjOdb543sPKSI17oUhATbs1JsIYVzKkA,720
264
271
  mirascope/core/mistral/_utils/_convert_message_params.py,sha256=nW18Bh4wQ-Nc00hu86d6hE9nC5wk_76dV7CXahfyQHo,4737
@@ -270,16 +277,15 @@ mirascope/core/openai/__init__.py,sha256=lOzSimt1AaWyFW2s_w1So5lIn7K2rpj3bEFicjo
270
277
  mirascope/core/openai/_call.py,sha256=ExXdY3rjBbil0ija2HlGMRvcOE2zOOj13rgliw8nmFc,2260
271
278
  mirascope/core/openai/_call_kwargs.py,sha256=x53EZmxqroNewR194M_JkRP1Ejuh4BTtDL-b7XNSo2Q,435
272
279
  mirascope/core/openai/call_params.py,sha256=DAjh2oZ2cLpBSh4wQAq24zsT9LBOJQLjev3AWIDcc2M,3052
273
- mirascope/core/openai/call_response.py,sha256=_fbpYel3FevgOx4jLkQy8Ndj0klIWlhW94rkdQ7BDMQ,8124
274
- mirascope/core/openai/call_response_chunk.py,sha256=6UFmRzusIivkmJOdzPTLfKIFy_Ft2E4RMxqwFGDlDcs,4085
280
+ mirascope/core/openai/call_response.py,sha256=HBpuP87Moi0JXuatTQL_VygfI2m-RxBCJhbFasHV4Eo,8875
281
+ mirascope/core/openai/call_response_chunk.py,sha256=GLHiLEb-bRvTtBA9O2zlz8Dzqi7lwladRlNPwM0jv-g,4261
275
282
  mirascope/core/openai/dynamic_config.py,sha256=D36E3CMpXSaj5I8FEmtzMJz9gtTsNz1pVW_iM3dOCcw,1045
276
283
  mirascope/core/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
- mirascope/core/openai/stream.py,sha256=T4xR_8fJ6mL74UwJ6aNELNHIc9Dxt9NYTu2BZAdrREM,6292
284
+ mirascope/core/openai/stream.py,sha256=jyI9Q4-Ne4N34n30RzRCYsi8z-hFqXbV_Occ7KrFkW4,6174
278
285
  mirascope/core/openai/tool.py,sha256=iJWJQrY3-1Rq5OywzKFO9JUAcglneGD0UtkS3pcA0pg,3154
279
- mirascope/core/openai/_utils/__init__.py,sha256=J4ZMAuU4X0PN-nbYj2ikX2EgYRq-T00GbontdmkTcH0,454
280
- mirascope/core/openai/_utils/_calculate_cost.py,sha256=bMxDAuVFgO8B-_INxhYg0n11mQdZIOWNvw4YHWb3uwM,9467
286
+ mirascope/core/openai/_utils/__init__.py,sha256=Y1nMFOydpFvMWcuoB8TzMD33uZoMIM0C8_kYJkv_JJE,388
281
287
  mirascope/core/openai/_utils/_convert_common_call_params.py,sha256=gvxsRdULxiC2137M9l53hUmF0ZkBxFQFurhWBcl_5Cg,739
282
- mirascope/core/openai/_utils/_convert_message_params.py,sha256=KHn6GWovhHLshwLa3szxc2OB3ymRpebGrjazSqRSrE8,6257
288
+ mirascope/core/openai/_utils/_convert_message_params.py,sha256=1VkGEQktopnhmYWJ8-xJKi1KY54ego7Jc3xBhdezbBA,6236
283
289
  mirascope/core/openai/_utils/_get_json_output.py,sha256=Q_5R6NFFDvmLoz9BQiymC5AEyYvxKPH2_XnOQZ8hIkU,1215
284
290
  mirascope/core/openai/_utils/_handle_stream.py,sha256=adsHAcTtGyMMFU9xnUsE4Yd2wrhSNSjcVddkS74mli0,5226
285
291
  mirascope/core/openai/_utils/_message_param_converter.py,sha256=r6zJ54xHMxxJ-2daY8l5FyDIa0HsdXeP0cN1wHNt6-E,4101
@@ -288,13 +294,12 @@ mirascope/core/vertex/__init__.py,sha256=eg_kNX956OYABi3leev5GyDg0KK8QopgztBtrMX
288
294
  mirascope/core/vertex/_call.py,sha256=ebQmWoQLnxScyxhnGKU3MmHkXXzzs_Sw2Yf-d3nZFwU,2323
289
295
  mirascope/core/vertex/_call_kwargs.py,sha256=6JxQt1bAscbhPWTGESG1TiskB-i5imDHqLMgbMHmyfI,353
290
296
  mirascope/core/vertex/call_params.py,sha256=ISBnMITxAtvuGmpLF9UdkqcDS43RwtuuVakk01YIHDs,706
291
- mirascope/core/vertex/call_response.py,sha256=C8-VfZKtaNRcJmMgwC2GbG7A6JIsiV4O5oIn5EJd5ng,6249
292
- mirascope/core/vertex/call_response_chunk.py,sha256=iuEmVx0oSq-5ZdRIFduic2n4qsboNXzsU2yVGedQjuQ,2750
297
+ mirascope/core/vertex/call_response.py,sha256=l6T_FRCkT2tqKX0rUlyLB-0NesMmdLmzeLNjkn6UVSg,6087
298
+ mirascope/core/vertex/call_response_chunk.py,sha256=MDCeDjzFonqRpFdoQnfJRGDPiJakLB9n-o2WyOGLKNw,2926
293
299
  mirascope/core/vertex/dynamic_config.py,sha256=KISQf7c2Rf1EpaS_2Ik6beA1w9uz_dAvMBk4nQcrdaM,809
294
- mirascope/core/vertex/stream.py,sha256=tIsd4Xd5suR9PWGuNTWpkxnBgyrau1ENZeTWxt-71rk,3662
300
+ mirascope/core/vertex/stream.py,sha256=FYhCtYRfQ6lEccHO5ZKVrQJ8iafpelVFIzykO3xVjGE,3544
295
301
  mirascope/core/vertex/tool.py,sha256=l8DGC6rh6mvXyDVzAzOMYtxQyym-XLlJSr7082TVGK0,3173
296
- mirascope/core/vertex/_utils/__init__.py,sha256=LeQDo5oQqnblIh9AXJzFeMYnEkJkJAcg9EU-HCh-SVk,454
297
- mirascope/core/vertex/_utils/_calculate_cost.py,sha256=tArdRx-OOit9A79jxUHPT8ioczMNkb87qre27CXz96M,2334
302
+ mirascope/core/vertex/_utils/__init__.py,sha256=pD3-tMQD7Oe-k6T50wKb0vAsQ-nt4XFbJVam7m3leZg,388
298
303
  mirascope/core/vertex/_utils/_convert_common_call_params.py,sha256=v-kKo6vQdlQiQQnA3hRaS7NWCdzheVE0OGbLV4-8XLE,1056
299
304
  mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
300
305
  mirascope/core/vertex/_utils/_convert_message_params.py,sha256=e2Q5B-CrNTNJ1b7lDobs96eAJnOQDJq5PSuuouD5TUE,7476
@@ -305,14 +310,13 @@ mirascope/core/vertex/_utils/_setup_call.py,sha256=9LXR-8sFumEJvUYm58VQTBMkZMOR4
305
310
  mirascope/core/xai/__init__.py,sha256=_5TaPqkZI-kU8FhF7ZSZz6I2cnnCgOVIM36hGiDh_Kc,699
306
311
  mirascope/core/xai/_call.py,sha256=gMCRzQFMPsWclPoyY--8189ajzX7BVkcwsGEdZALBLQ,2317
307
312
  mirascope/core/xai/call_params.py,sha256=1zRuST6shKUI1A_Fw6kqybObHiPpO2Nn0GEioOAtows,266
308
- mirascope/core/xai/call_response.py,sha256=bCEYwgB26PDMxkDNnqnqV-S_aB3Nb3zOy8bdZVMM4WA,750
313
+ mirascope/core/xai/call_response.py,sha256=u-hfLQtazSVBz4DnKLCuz-R2oT0ki21PhUEueJcH-Rw,440
309
314
  mirascope/core/xai/call_response_chunk.py,sha256=lnLNhzG1vFUYCgy267ZvteqrLtkddrrsRjfKS70YSdE,448
310
315
  mirascope/core/xai/dynamic_config.py,sha256=GOVAuS1eso4qrTG1SNAfs6TWB8aOuWFtDXcm5BTVFr8,288
311
316
  mirascope/core/xai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
317
  mirascope/core/xai/stream.py,sha256=qnGhY8FCbq4MRYyL_1_WagLhjL5v_Pzu3HOrcQ7D03Q,2159
313
318
  mirascope/core/xai/tool.py,sha256=W_UaEatgrtHkuDVILQSaBoomN3zFMS9YnXky-Py6MRY,275
314
- mirascope/core/xai/_utils/__init__.py,sha256=hcuidzh8NCae0bIhuiXeVcv_gCZM_grvE4TuqO8FeGE,170
315
- mirascope/core/xai/_utils/_calculate_cost.py,sha256=yi-MeiMAHA3inm0NHs7iFR3qv2tppoUkNaHndqvbiz8,3253
319
+ mirascope/core/xai/_utils/__init__.py,sha256=gHldtQYziYseLvCM0yvH-O87sFdvbP5pvz66hEllaj0,108
316
320
  mirascope/core/xai/_utils/_setup_call.py,sha256=0pCy8SqEQQEFUrCYTe6EEn_z7GuTY7-Gb9hnwkoBbH8,3523
317
321
  mirascope/integrations/__init__.py,sha256=ieLWknpbkO_gABIVl9790YTTCCRO9ISQ35-1SeOSU0Q,392
318
322
  mirascope/integrations/_middleware_factory.py,sha256=rv9MaNgn7AL9Z7qADMRxxD9A_abePqj80Y0SReU9LrE,17305
@@ -327,21 +331,21 @@ mirascope/integrations/otel/__init__.py,sha256=OzboYfm3fUNwKTuu08KX83hQHYI4oZYN2
327
331
  mirascope/integrations/otel/_utils.py,sha256=SCVb3MpcpqLpCpumJEbEdINceNdusnyT6iuKPz66sBc,8778
328
332
  mirascope/integrations/otel/_with_hyperdx.py,sha256=f17uxXQk5zZPtyj6zwPwJz5i7atsnUPOoq1LqT8JO0E,1637
329
333
  mirascope/integrations/otel/_with_otel.py,sha256=tbjd6BEbcSfnsm5CWHBoHwbRNrHt6-t4or-SYGQSD-w,1659
330
- mirascope/llm/__init__.py,sha256=RUzuwlWxguzFIcOF7lTqfZ4pQ6vzEbltBf7rNRlq9t4,227
331
- mirascope/llm/_protocols.py,sha256=3Zo9hnWxEkqFkAUT1mzbmyerWsMPPYmJdy7iGYQAyRA,17068
334
+ mirascope/llm/__init__.py,sha256=wu7j3316Cx0ju9eS8UwCIpG_bGK3RRHCxD5SRlLZyHY,317
335
+ mirascope/llm/_protocols.py,sha256=30708fzTNv7k6Ix3T0NwmSDnQ9BP9ZrHLAmumIfzuFI,16783
332
336
  mirascope/llm/_response_metaclass.py,sha256=6DLQb5IrqMldyEXHT_pAsr2DlUVc9CmZuZiBXG37WK8,851
333
- mirascope/llm/call_response.py,sha256=KzbBXljVhhSHFmF3IzJtYKJCvs2MicdSGc0ATYjtvx4,4868
334
- mirascope/llm/call_response_chunk.py,sha256=9Vyi5_hpgill5CB8BwfSj33VR8sirY2ceTRbru0G3Sw,1820
335
- mirascope/llm/llm_call.py,sha256=J9jM6mJWjyQecWfGoU6-9Ve5oZhGTMVaZlz4PTJ5rHY,9876
336
- mirascope/llm/llm_override.py,sha256=xupkxlvzNSQvWpfmHpGze2CtmQqE1a3ZjCDdPznTeaQ,6523
337
- mirascope/llm/stream.py,sha256=yR08MwUbxIxeJIHigIuf277FR1vOha6E6CJZK6f_XFA,5901
338
- mirascope/llm/tool.py,sha256=Rz9W2g0I9bnTHFdIzTIEje8VMe2Di4AZhrNhgQusSjA,1832
337
+ mirascope/llm/call_response.py,sha256=U40eOKbKfzrmLsQ9j31kH_NUpc_vKGu6I7Ee0WNL6J8,4810
338
+ mirascope/llm/call_response_chunk.py,sha256=ABVkAtCG9m-vmoLWv3J39V-8R4LTjlCRrM9IkpELnKE,2048
339
+ mirascope/llm/llm_call.py,sha256=XR0TQtkGJi7MnRCpA4xOddrbszp7FwFQs8lNAwjFbq4,9726
340
+ mirascope/llm/llm_override.py,sha256=riGazYBfcaTBjxEjIpMqQ-Neo8QgOx1EYzK5fKTSK3M,6681
341
+ mirascope/llm/stream.py,sha256=_6OG7APLBGn9wrion4GT86KIPDBxxfTMUsBTyNmML9E,5840
342
+ mirascope/llm/tool.py,sha256=MQRJBPhP1d-OyOz3PE_VsKmSXca0chySyYO1U9OW8ck,1824
339
343
  mirascope/mcp/__init__.py,sha256=mGboroTrBbzuZ_8uBssOhkqiJOJ4mNCvaJvS7mhumhg,155
340
344
  mirascope/mcp/client.py,sha256=ZsjaT6E5i4Cdm3iVp2-JTuDniUlzynWeeJvnBAtuffQ,11123
341
345
  mirascope/mcp/server.py,sha256=7BjZO3DkaiokEOgJOY9fbEX3M6YwAExN6Kw9s-Dp7Sc,11737
342
346
  mirascope/mcp/tools.py,sha256=IKQZCiQHh_YxJM-V90U9Z6xPQTYIfWFDBj8khhHDiw4,2254
343
347
  mirascope/retries/__init__.py,sha256=xw3jJm-vL4kR10VaKN6A8KGoP2CsAg5_Gy1eWVMgYhQ,249
344
- mirascope/retries/fallback.py,sha256=xnN7CgQ2SaYMUNeeRoHAeFeola5DhgRd6O-0FRB95yE,4875
348
+ mirascope/retries/fallback.py,sha256=LPSyIfPAHajt3-M_Z1M4ZSbgHjbXghMBbb9fjNQ27UU,4876
345
349
  mirascope/retries/tenacity.py,sha256=stBJPjEpUzP53IBVBFtqY2fUSgmOV1-sIIXZZJ9pvLY,1387
346
350
  mirascope/tools/__init__.py,sha256=wsMYzSvGlFblPcsIF2YV92eZlDHSraWbjB5TicORUyA,959
347
351
  mirascope/tools/base.py,sha256=Bdnf9Te2tnPnvBS-dEeXVPv_jn5-z9FY_MQmBwP1ijU,3429
@@ -363,7 +367,7 @@ mirascope/v0/base/ops_utils.py,sha256=1Qq-VIwgHBaYutiZsS2MUQ4OgPC3APyywI5bTiTAmA
363
367
  mirascope/v0/base/prompts.py,sha256=FM2Yz98cSnDceYogiwPrp4BALf3_F3d4fIOCGAkd-SE,1298
364
368
  mirascope/v0/base/types.py,sha256=ZfatJoX0Yl0e3jhv0D_MhiSVHLYUeJsdN3um3iE10zY,352
365
369
  mirascope/v0/base/utils.py,sha256=XREPENRQTu8gpMhHU8RC8qH_am3FfGUvY-dJ6x8i-mw,681
366
- mirascope-1.19.0.dist-info/METADATA,sha256=Ry4UD3xS876mLNyh6SzClHe7Iv1l6UmuP7nTopu8M_U,8730
367
- mirascope-1.19.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
368
- mirascope-1.19.0.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
369
- mirascope-1.19.0.dist-info/RECORD,,
370
+ mirascope-1.20.1.dist-info/METADATA,sha256=XIsjsvbaT6joN-JvQ4MDtgT4VxqAnrCDsSmnOMYZmCU,8730
371
+ mirascope-1.20.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
372
+ mirascope-1.20.1.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
373
+ mirascope-1.20.1.dist-info/RECORD,,