mirascope 1.18.3__py3-none-any.whl → 1.18.4__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 (88) hide show
  1. mirascope/__init__.py +20 -2
  2. mirascope/beta/openai/__init__.py +1 -1
  3. mirascope/beta/openai/realtime/__init__.py +1 -1
  4. mirascope/beta/openai/realtime/tool.py +1 -1
  5. mirascope/beta/rag/__init__.py +2 -2
  6. mirascope/beta/rag/base/__init__.py +2 -2
  7. mirascope/beta/rag/weaviate/__init__.py +1 -1
  8. mirascope/core/__init__.py +26 -8
  9. mirascope/core/anthropic/__init__.py +3 -3
  10. mirascope/core/anthropic/_utils/_calculate_cost.py +114 -47
  11. mirascope/core/anthropic/call_response.py +9 -1
  12. mirascope/core/anthropic/call_response_chunk.py +7 -0
  13. mirascope/core/anthropic/stream.py +3 -1
  14. mirascope/core/azure/__init__.py +2 -2
  15. mirascope/core/azure/_utils/_calculate_cost.py +4 -1
  16. mirascope/core/azure/call_response.py +9 -1
  17. mirascope/core/azure/call_response_chunk.py +5 -0
  18. mirascope/core/azure/stream.py +3 -1
  19. mirascope/core/base/__init__.py +11 -9
  20. mirascope/core/base/_utils/__init__.py +10 -10
  21. mirascope/core/base/_utils/_get_common_usage.py +8 -4
  22. mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +2 -2
  23. mirascope/core/base/_utils/_protocols.py +9 -8
  24. mirascope/core/base/call_response.py +22 -20
  25. mirascope/core/base/call_response_chunk.py +12 -1
  26. mirascope/core/base/stream.py +24 -21
  27. mirascope/core/base/tool.py +7 -5
  28. mirascope/core/base/types.py +22 -5
  29. mirascope/core/bedrock/__init__.py +3 -3
  30. mirascope/core/bedrock/_utils/_calculate_cost.py +4 -1
  31. mirascope/core/bedrock/call_response.py +8 -1
  32. mirascope/core/bedrock/call_response_chunk.py +5 -0
  33. mirascope/core/bedrock/stream.py +3 -1
  34. mirascope/core/cohere/__init__.py +2 -2
  35. mirascope/core/cohere/_utils/_calculate_cost.py +4 -3
  36. mirascope/core/cohere/call_response.py +9 -1
  37. mirascope/core/cohere/call_response_chunk.py +5 -0
  38. mirascope/core/cohere/stream.py +3 -1
  39. mirascope/core/gemini/__init__.py +2 -2
  40. mirascope/core/gemini/_utils/_calculate_cost.py +4 -1
  41. mirascope/core/gemini/_utils/_convert_message_params.py +1 -1
  42. mirascope/core/gemini/call_response.py +9 -1
  43. mirascope/core/gemini/call_response_chunk.py +5 -0
  44. mirascope/core/gemini/stream.py +3 -1
  45. mirascope/core/google/__init__.py +2 -2
  46. mirascope/core/google/_utils/_calculate_cost.py +141 -14
  47. mirascope/core/google/_utils/_convert_message_params.py +23 -51
  48. mirascope/core/google/_utils/_message_param_converter.py +34 -33
  49. mirascope/core/google/_utils/_validate_media_type.py +34 -0
  50. mirascope/core/google/call_response.py +26 -4
  51. mirascope/core/google/call_response_chunk.py +17 -9
  52. mirascope/core/google/stream.py +20 -2
  53. mirascope/core/groq/__init__.py +2 -2
  54. mirascope/core/groq/_utils/_calculate_cost.py +12 -11
  55. mirascope/core/groq/call_response.py +9 -1
  56. mirascope/core/groq/call_response_chunk.py +5 -0
  57. mirascope/core/groq/stream.py +3 -1
  58. mirascope/core/litellm/__init__.py +1 -1
  59. mirascope/core/litellm/_utils/_setup_call.py +7 -3
  60. mirascope/core/mistral/__init__.py +2 -2
  61. mirascope/core/mistral/_utils/_calculate_cost.py +10 -9
  62. mirascope/core/mistral/call_response.py +9 -1
  63. mirascope/core/mistral/call_response_chunk.py +5 -0
  64. mirascope/core/mistral/stream.py +3 -1
  65. mirascope/core/openai/__init__.py +2 -2
  66. mirascope/core/openai/_utils/_calculate_cost.py +78 -37
  67. mirascope/core/openai/call_params.py +13 -0
  68. mirascope/core/openai/call_response.py +14 -1
  69. mirascope/core/openai/call_response_chunk.py +12 -0
  70. mirascope/core/openai/stream.py +6 -4
  71. mirascope/core/vertex/__init__.py +1 -1
  72. mirascope/core/vertex/_utils/_calculate_cost.py +1 -0
  73. mirascope/core/vertex/_utils/_convert_message_params.py +1 -1
  74. mirascope/core/vertex/call_response.py +9 -1
  75. mirascope/core/vertex/call_response_chunk.py +5 -0
  76. mirascope/core/vertex/stream.py +3 -1
  77. mirascope/integrations/_middleware_factory.py +6 -6
  78. mirascope/integrations/logfire/_utils.py +1 -1
  79. mirascope/llm/__init__.py +1 -1
  80. mirascope/llm/_protocols.py +5 -5
  81. mirascope/llm/call_response.py +16 -7
  82. mirascope/llm/stream.py +43 -31
  83. mirascope/retries/__init__.py +1 -1
  84. mirascope/tools/__init__.py +2 -2
  85. {mirascope-1.18.3.dist-info → mirascope-1.18.4.dist-info}/METADATA +1 -1
  86. {mirascope-1.18.3.dist-info → mirascope-1.18.4.dist-info}/RECORD +88 -87
  87. {mirascope-1.18.3.dist-info → mirascope-1.18.4.dist-info}/WHEEL +0 -0
  88. {mirascope-1.18.3.dist-info → mirascope-1.18.4.dist-info}/licenses/LICENSE +0 -0
mirascope/llm/stream.py CHANGED
@@ -62,10 +62,21 @@ class Stream(
62
62
  _BaseCallParamsT,
63
63
  ],
64
64
  ):
65
- """
66
- A non-pydantic class that inherits from BaseStream.
65
+ """A non-pydantic class that inherits from BaseStream."""
67
66
 
68
- """
67
+ _stream: BaseStream[
68
+ _BaseCallResponseT,
69
+ _BaseCallResponseChunkT,
70
+ _UserMessageParamT,
71
+ _AssistantMessageParamT,
72
+ _ToolMessageParamT,
73
+ _MessageParamT,
74
+ _BaseToolT,
75
+ _ToolSchemaT,
76
+ _BaseDynamicConfigT,
77
+ _BaseCallParamsT,
78
+ FinishReason,
79
+ ]
69
80
 
70
81
  def __init__(
71
82
  self,
@@ -85,20 +96,27 @@ class Stream(
85
96
  ],
86
97
  ) -> None:
87
98
  """Initialize the Stream class."""
88
- self._stream = stream
89
- super().__init__(
90
- stream=stream.stream,
91
- metadata=stream.metadata,
92
- tool_types=stream.tool_types,
93
- call_response_type=stream.call_response_type,
94
- model=stream.model,
95
- prompt_template=stream.prompt_template,
96
- fn_args=stream.fn_args or {},
97
- dynamic_config=stream.dynamic_config,
98
- messages=stream.messages,
99
- call_params=stream.call_params,
100
- call_kwargs=stream.call_kwargs,
101
- )
99
+ object.__setattr__(self, "_stream", stream)
100
+
101
+ def __getattribute__(self, name: str) -> Any: # noqa: ANN401
102
+ special_names = {
103
+ "_stream",
104
+ "cost",
105
+ "_construct_message_param",
106
+ "construct_call_response",
107
+ "tool_message_params",
108
+ "__dict__",
109
+ "__class__",
110
+ "__repr__",
111
+ "__str__",
112
+ "__iter__",
113
+ "__aiter__",
114
+ }
115
+
116
+ if name in special_names:
117
+ return object.__getattribute__(self, name)
118
+ response = object.__getattribute__(self, "_stream")
119
+ return getattr(response, name)
102
120
 
103
121
  def __iter__( # pyright: ignore [reportIncompatibleMethodOverride]
104
122
  self,
@@ -110,7 +128,7 @@ class Stream(
110
128
  None,
111
129
  ]:
112
130
  """Iterate over the stream."""
113
- for chunk, tool in super().__iter__():
131
+ for chunk, tool in self._stream:
114
132
  yield (
115
133
  CallResponseChunk(response=chunk), # pyright: ignore [reportAbstractUsage]
116
134
  Tool(tool=tool) if tool is not None else None, # pyright: ignore [reportAbstractUsage]
@@ -125,20 +143,12 @@ class Stream(
125
143
  None,
126
144
  ]:
127
145
  """Iterates over the stream and stores useful information."""
128
- async for chunk, tool in super().__aiter__():
146
+ async for chunk, tool in self._stream:
129
147
  yield (
130
148
  CallResponseChunk(response=chunk), # pyright: ignore [reportAbstractUsage]
131
149
  Tool(tool=tool) if tool is not None else None, # pyright: ignore [reportAbstractUsage]
132
150
  )
133
151
 
134
- def common_construct_call_response(
135
- self,
136
- ) -> CallResponse[_BaseCallResponseT, Tool[_ToolMessageParamT]]:
137
- """A common method that constructs a CallResponse instance."""
138
- return CallResponse[_BaseCallResponseT, Tool](
139
- response=self._stream.construct_call_response()
140
- ) # pyright: ignore [reportAbstractUsage]
141
-
142
152
  @property
143
153
  def cost(self) -> float | None:
144
154
  return self._stream.cost
@@ -152,12 +162,14 @@ class Stream(
152
162
 
153
163
  def construct_call_response( # pyright: ignore [reportIncompatibleMethodOverride]
154
164
  self,
155
- ) -> CallResponse[_BaseCallResponseT, Tool[_ToolMessageParamT]]:
156
- return self.common_construct_call_response()
165
+ ) -> CallResponse[_BaseCallResponseT]:
166
+ return CallResponse[_BaseCallResponseT](
167
+ response=self._stream.construct_call_response()
168
+ ) # pyright: ignore [reportAbstractUsage]
157
169
 
158
170
  @classmethod
159
- def common_tool_message_params(
160
- cls, tools_and_outputs: list[tuple[BaseTool, JsonableType]]
171
+ def tool_message_params( # pyright: ignore [reportIncompatibleMethodOverride]
172
+ cls, tools_and_outputs: list[tuple[Tool, JsonableType]]
161
173
  ) -> list[BaseMessageParam]:
162
174
  """Returns the tool message parameters for tool call results.
163
175
 
@@ -8,4 +8,4 @@ with suppress(ImportError):
8
8
  from . import tenacity as tenacity
9
9
 
10
10
 
11
- __all__ = ["fallback", "FallbackError", "tenacity"]
11
+ __all__ = ["FallbackError", "fallback", "tenacity"]
@@ -21,6 +21,7 @@ with suppress(ImportError):
21
21
  from .web._requests import Requests, RequestsConfig
22
22
 
23
23
  __all__ = [
24
+ "HTTPX",
24
25
  "AsyncHTTPX",
25
26
  "DockerOperationToolKit",
26
27
  "DockerOperationToolKitConfig",
@@ -28,10 +29,9 @@ __all__ = [
28
29
  "DuckDuckGoSearchConfig",
29
30
  "FileSystemToolKit",
30
31
  "FileSystemToolKitConfig",
31
- "HTTPX",
32
32
  "HTTPXConfig",
33
- "ParseURLContent",
34
33
  "ParseURLConfig",
34
+ "ParseURLContent",
35
35
  "Requests",
36
36
  "RequestsConfig",
37
37
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mirascope
3
- Version: 1.18.3
3
+ Version: 1.18.4
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,16 +1,16 @@
1
- mirascope/__init__.py,sha256=vGyslBC0K4-nSWGU1SqegDFni3LNul_fJ92y-ldufW0,679
1
+ mirascope/__init__.py,sha256=WMa4cvnfRli9wLRuO5qbTPM3ltgpXnI_so2z2WH6nDM,1013
2
2
  mirascope/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  mirascope/beta/__init__.py,sha256=YsIIE5w3nKj0Ywcs_Y5tSE6WlHKR-nQwwbhNF1R8UW8,43
4
- mirascope/beta/openai/__init__.py,sha256=_Ls_eRVz3gJ0Ufycr5rLur4r9h_m5pLH5D0-OWLLJ_0,257
5
- mirascope/beta/openai/realtime/__init__.py,sha256=hSMQGpfvBSyzAJJ37S7o0gIatACD5pfTOSEDmG2z4aQ,286
4
+ mirascope/beta/openai/__init__.py,sha256=a7xllQBfcpO6kYwZ5Zv1CWzN9qpS1SJoBgb1J20F-Hk,257
5
+ mirascope/beta/openai/realtime/__init__.py,sha256=kYEaLHjek8LsxR5xQB2JYMvCsHxi0MjtPGA4Nos4bgs,286
6
6
  mirascope/beta/openai/realtime/realtime.py,sha256=RpwoXXdd4wZOEJIIsS815RGBUa4uWp1JntObbFq3vqY,19500
7
7
  mirascope/beta/openai/realtime/recording.py,sha256=ZRvJbCQ2TdtlNEM-D4I8kTyQZ3tfR0KAdk6RhzBlqus,2876
8
- mirascope/beta/openai/realtime/tool.py,sha256=v3bjO9awFa7aekVTGlJBeG1rsfYQVqWWfI1UvFENUpM,3332
8
+ mirascope/beta/openai/realtime/tool.py,sha256=-0YT0asVcUR6_7wXOAyQXDrCmQjgdSwAwuIYfVYSGwM,3321
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
12
- mirascope/beta/rag/__init__.py,sha256=SgRE57pw11hzcj8FMM4JmwDIaVgiHZ5OWPYNqDrP9_U,466
13
- mirascope/beta/rag/base/__init__.py,sha256=esV-1vhfuFPK66AZggMbv6dztYf30UDnXrv5JQ4-YV4,631
12
+ mirascope/beta/rag/__init__.py,sha256=xWtAif91Eb4fRWAhIxraRqSPGins6S7D5AzlEVKknPw,466
13
+ mirascope/beta/rag/base/__init__.py,sha256=9svbynyBNzLelpCBCqoT4vwY9E2QXMFkPXk8EdIvyFY,631
14
14
  mirascope/beta/rag/base/config.py,sha256=PgO1syia3jSqrze7zA1K0ZA0ephNZiSzMspI9GC_zTE,186
15
15
  mirascope/beta/rag/base/document.py,sha256=cdHLyevVWgvIeld2p-A2nwfzrFDlIaySm3CX4glQwxM,207
16
16
  mirascope/beta/rag/base/embedders.py,sha256=0X-GV1o4C8FjtoILQZJPkJvldK4NSoLzKIr99tFhun0,1181
@@ -38,23 +38,23 @@ mirascope/beta/rag/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
38
38
  mirascope/beta/rag/pinecone/__init__.py,sha256=zek8AjyFPFp0eyijsEoUtSskMk01svV4Y5d1qgiHvCM,421
39
39
  mirascope/beta/rag/pinecone/types.py,sha256=Bn-yRCqGp9ASPFsezRs4KwxNfdqnjUjeMq8P5vw6-0k,4743
40
40
  mirascope/beta/rag/pinecone/vectorstores.py,sha256=ZcLwVmrxNMq5a2mLI-3F9XJ_UYDryKoKqMMQs0iHquM,5127
41
- mirascope/beta/rag/weaviate/__init__.py,sha256=GOkfDjECJhHb_3L2esTB-aZamtJNsLI0RRVD_BmeOY0,231
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=NduhAurs5BLkR_GvkkJ56IjYE1bHJGAaRw9YMHe3H9Q,1512
44
+ mirascope/core/__init__.py,sha256=bNYO5iH0WYq09KFJZpUm5pquBbCO8CUqFekWB4U-5gQ,1846
45
45
  mirascope/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- mirascope/core/anthropic/__init__.py,sha256=0ObxoxWzpsyf3tm5SldosVDxVWiIu1jxuGmcIWl0ZCY,918
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=HbzaeHym1KXg-UaHdfOpirXgnC47iienYHVNhyBwrAU,6034
51
- mirascope/core/anthropic/call_response_chunk.py,sha256=GZgvJRkVUUED69Mq5TyEe4OIH8AXq3hCqqU6eHTuqWc,3543
50
+ mirascope/core/anthropic/call_response.py,sha256=D8eshm98BZIwVWrU2kMjI-jLMPAiA6ntzM2Rpzl2598,6263
51
+ mirascope/core/anthropic/call_response_chunk.py,sha256=xyChfLv4ScBbzk-V12npwV-NDH9NOwAVosA76z3tfdE,3799
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=HxHoF3NC4X8jy4OQZsQ-yoVO3hrNse8EyOQUHw8Ezv8,4870
54
+ mirascope/core/anthropic/stream.py,sha256=5aOJY3hEFtu3gPpJZdUiuY4fOYWyNB5MYi_Idul1scc,4912
55
55
  mirascope/core/anthropic/tool.py,sha256=HtbYV5j4itV8v6lTyLDY72NMX2kxRaXVgpZ_m89HqIk,2891
56
56
  mirascope/core/anthropic/_utils/__init__.py,sha256=xHjaWpLBcUOW_tuBrOBQ2MewFr5Kga-LBYuqw1ZTP_U,559
57
- mirascope/core/anthropic/_utils/_calculate_cost.py,sha256=dHM8t__tMmDdkzaR5PVUInoXh4r2HqDoM0q8wUEmd3U,3762
57
+ mirascope/core/anthropic/_utils/_calculate_cost.py,sha256=tbiBag0GEDEqwQw5BvwpUsInLRJoRU42KW1hYJyfAHA,7678
58
58
  mirascope/core/anthropic/_utils/_convert_common_call_params.py,sha256=ILd7AH_atmPUPj7I74EsmxG3rmWC7b5tgjnlR24jKUs,765
59
59
  mirascope/core/anthropic/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=UqqiDEaw20_nDbQUvRJC-ZneCd35f_2GEUpiUNMibr0,704
60
60
  mirascope/core/anthropic/_utils/_convert_message_params.py,sha256=UVsrvgpZIRnzZzEE-HW3gfZBR7Y4Gvq1RDAWusc8wuM,4466
@@ -62,18 +62,18 @@ mirascope/core/anthropic/_utils/_get_json_output.py,sha256=vkHvhc96RLrGREYVCKr14
62
62
  mirascope/core/anthropic/_utils/_handle_stream.py,sha256=6Ll2FQt1KWrz5jqgeP1NikHEjlrSbfPUQCH4eoX4eVA,4010
63
63
  mirascope/core/anthropic/_utils/_message_param_converter.py,sha256=CIeOA0SXtuDnhpqBlt5_nkg14ASzBRk1-1JpHY4QDq0,6546
64
64
  mirascope/core/anthropic/_utils/_setup_call.py,sha256=tR-SFT_ZJd_Gk7RY4NOU3do536RRO3US4IfOuyAapOw,4340
65
- mirascope/core/azure/__init__.py,sha256=ozfFhyCC0bFLDUA7m2v1POywSFpLJi6E7xZ2bhBIdC0,852
65
+ mirascope/core/azure/__init__.py,sha256=7Dpkf10T-TGxk7Lstej6x6s6On7QjI0qeE2ABO7QWmQ,852
66
66
  mirascope/core/azure/_call.py,sha256=SHqSJe6_4zgn4Y9PkpDl4vXvLuT4QmVnWUcws9e_RR8,2237
67
67
  mirascope/core/azure/_call_kwargs.py,sha256=q38xKSgCBWi8DLScepG-KnUfgi67AU6xr2uOHwCZ2mI,435
68
68
  mirascope/core/azure/call_params.py,sha256=NK_ggVJbactDip85DbfCaqSWRpO0CgwN1svY-KW4_Yg,1836
69
- mirascope/core/azure/call_response.py,sha256=r9QyhYd2_ECICynIWrrOGlVHcUX5Wu-cyoZJgOEayDU,6794
70
- mirascope/core/azure/call_response_chunk.py,sha256=tcLgURISaGONGDvWjWDfDPs2c0hQJT_tVELiDqL33SQ,2884
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
71
71
  mirascope/core/azure/dynamic_config.py,sha256=6SBMGFce7tuXdwHrlKNISpZxVxUnnumbIQB9lGR6nbs,1066
72
72
  mirascope/core/azure/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- mirascope/core/azure/stream.py,sha256=yjhAtbvCeq8K52DTVonXGLUH_3mRnD96_KhedyANHvg,4655
73
+ mirascope/core/azure/stream.py,sha256=D5pTQa0FLwPjyaUV4TN_a8oK53Qr1Opfv0z4x0sUn6A,4697
74
74
  mirascope/core/azure/tool.py,sha256=SAhrGT-_rO0i4Jv9rMEFbMDYPqsm415qXUtHY3aNhrQ,2682
75
75
  mirascope/core/azure/_utils/__init__.py,sha256=WrcNkwnIi8sioHEn5fzQ5UTN4thg21VPLIexX2yMNxU,453
76
- mirascope/core/azure/_utils/_calculate_cost.py,sha256=ga1h8wZcr4JJuwWnvJNarpmwvITZjbq9YQv3_ecvnrw,269
76
+ mirascope/core/azure/_utils/_calculate_cost.py,sha256=TcpxFcFzbGFeCKHyQW_UFEB0DBQAA9ViRAIcqOsugHo,317
77
77
  mirascope/core/azure/_utils/_convert_common_call_params.py,sha256=mDmrDIEOn2nm4mTFQvv8ErM0xDvjtupvIL9beycPx4I,790
78
78
  mirascope/core/azure/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=Tn9tf--eJ1__iapf-D67UYwHFOBoEgTIJSVn8nqos3Q,823
79
79
  mirascope/core/azure/_utils/_convert_message_params.py,sha256=qUs88dNeUw57XpHW7ihk3HZ96phfPssPS-A_49eypw0,5085
@@ -82,7 +82,7 @@ mirascope/core/azure/_utils/_get_json_output.py,sha256=Qec7WJY5is1Q63Vp9uUNNfkRw
82
82
  mirascope/core/azure/_utils/_handle_stream.py,sha256=M_BGnjBGWTPefNyIMuJSHiDxIvqmENmqfVlDx_qzL1c,4638
83
83
  mirascope/core/azure/_utils/_message_param_converter.py,sha256=JAUeHObtd_V225YyZqEruuih3HRozq43pqjYJCbJj8A,4443
84
84
  mirascope/core/azure/_utils/_setup_call.py,sha256=cdUof-RCxsPbKuJvevsEUYXU-ckoql3wTevNEQiEpz4,6496
85
- mirascope/core/base/__init__.py,sha256=iq8HMwrTt7MK-zgHg2JgBP4F7ruBTbDituFR2P4Jg2k,1904
85
+ mirascope/core/base/__init__.py,sha256=ahRkRK1nXqs97byuFeTvIv0f1m8R5VNqbcV0Y0_AAUY,1958
86
86
  mirascope/core/base/_call_factory.py,sha256=YdFHAa9WtGfYeqVcM2xaDNh5gMg584rOe26_E51-1to,9663
87
87
  mirascope/core/base/_create.py,sha256=1UNRA6pwMguaiLyLiQkPzTk12ASaXT_hh7jlNw4UFX4,10016
88
88
  mirascope/core/base/_extract.py,sha256=QTqkArgmgR17OB5jTP86Wo-TW-BcouOcK9gdMy-EcNw,6799
@@ -90,8 +90,8 @@ mirascope/core/base/_extract_with_tools.py,sha256=MW4v8D1xty7LqLb5RwMFkX-peQqA73
90
90
  mirascope/core/base/_partial.py,sha256=w_ACCgsDKNLtMyAP-lNmfRdrFEPmzh2BT4aninajxyY,3240
91
91
  mirascope/core/base/call_kwargs.py,sha256=0mznCsrj1dYxvdwYNF0RKbc9CiU5G6WvvcjPqOMsOE4,351
92
92
  mirascope/core/base/call_params.py,sha256=wtuuOY-SwIZYCDBKfn_xRC0Kf1cUuI4eSQaXu6VrtaE,1331
93
- mirascope/core/base/call_response.py,sha256=5hUmtzby-HrLavZBYAZpK5lpN2xxPiYskmtyUdgAFLs,9196
94
- mirascope/core/base/call_response_chunk.py,sha256=pvy6K2bM_wDiurfZ7M98SxEY--X6YrLjwCAWHwkFieA,2897
93
+ mirascope/core/base/call_response.py,sha256=VuujT75WMOnfOO7Y7YqNyhdbHf7fF-MLRDUqBNo9qX4,9405
94
+ mirascope/core/base/call_response_chunk.py,sha256=YXw_7c7PsMv5K0UuE3vIznr-BssjAPdqCAhIZT36AEA,3172
95
95
  mirascope/core/base/dynamic_config.py,sha256=V5IG2X5gPFpfQ47uO8JU1zoC2eNdRftsRZEmwhRPaYI,2859
96
96
  mirascope/core/base/from_call_args.py,sha256=8ijMX7PN6a4o6uLdmXJlSRnE-rEVJU5NLxUmNrS8dvU,909
97
97
  mirascope/core/base/merge_decorators.py,sha256=9pQYXuTxLh4mGKVIsnR5pYBkYCaQjg85TTelC6XDldE,1988
@@ -100,13 +100,13 @@ mirascope/core/base/messages.py,sha256=jD8SGjP3VQJsRfDo71ifHfwTMH4bHtYyjXQKyWRy_
100
100
  mirascope/core/base/metadata.py,sha256=V9hgMkj6m3QGsu4H5LhCxBZBYQLoygJv0CeLIf1DF0M,382
101
101
  mirascope/core/base/prompt.py,sha256=M5PK9JoEsWTQ-kzNCpZKdDGzWAkb8MS267xEFCPfpAU,15414
102
102
  mirascope/core/base/response_model_config_dict.py,sha256=OUdx_YkV2vBzUSSB2OYLAAHf22T7jvF5tRuc6c-vhNQ,254
103
- mirascope/core/base/stream.py,sha256=Yc7z_TfzXCpUuPTNmpoWpQdFjdRWAL5xK28_qJkmgYM,16404
103
+ mirascope/core/base/stream.py,sha256=BwU9hPopb08fv4iFkd4yHTQidvIL984-1GuylFIuMBk,16580
104
104
  mirascope/core/base/stream_config.py,sha256=vwWqNh9NJhTYjiJmfDbC9D5O84je_lBRhNOt4wI3FHM,238
105
105
  mirascope/core/base/structured_stream.py,sha256=FIvLXXKninrpQ5P7MsLEqGrU4cfvEDiPbueZqgJ4Dlw,10395
106
- mirascope/core/base/tool.py,sha256=G3GTj0jP0YObWQGIHpvUa1hAGQUCaduOhqs0m1zYqoU,6735
106
+ mirascope/core/base/tool.py,sha256=ISk4MKfNljfsMe0rEwW0J8Dqty7WXJej7gV2oSiVxa8,6885
107
107
  mirascope/core/base/toolkit.py,sha256=GmZquYPqvQL2J9Hd6StEwx6jfeFsqtcUyxKvp4iW_7Q,6271
108
- mirascope/core/base/types.py,sha256=q0s7FQhyev6UugwcK3cjf_Nn68L2CCRSrNQlXuixAYc,1492
109
- mirascope/core/base/_utils/__init__.py,sha256=UQMv9_xcy514y1InI8R4_rPWeg6eAq_8sNJTTjFarlI,2985
108
+ mirascope/core/base/types.py,sha256=Z8aNsECJ2cOwcA9qZTmDKcGzvWjHOuIJgGkO7FhfUHQ,1794
109
+ mirascope/core/base/_utils/__init__.py,sha256=aWk12g8Xnrie14rwiIbUINvk_jOSfT0A7j4uTlu2zZU,2985
110
110
  mirascope/core/base/_utils/_base_message_param_converter.py,sha256=WcfVQXf-SqtwgcRwi0GgyCba5ErsnnMMdu61CAm4Qn4,676
111
111
  mirascope/core/base/_utils/_base_type.py,sha256=x8ZabSxZZNAy6ER-VQEkB6mNyjWcGSCBivFydFNIRUE,700
112
112
  mirascope/core/base/_utils/_convert_base_model_to_base_tool.py,sha256=JoHf1CbRwK91dABm5xLhdIPmeMSFS_nj-qW9OQu_YJ0,1750
@@ -119,8 +119,8 @@ mirascope/core/base/_utils/_extract_tool_return.py,sha256=ZDBZJ4cacFd8nijSWZEhib
119
119
  mirascope/core/base/_utils/_fn_is_async.py,sha256=17uagVPZpo4-MkfD6fylrX1xGeGypvcGC7mibIwRbfU,409
120
120
  mirascope/core/base/_utils/_format_template.py,sha256=3l0Iq1LxQhocR588bzUDtfLalfiq_Rw_tHrVdgoZHiA,1061
121
121
  mirascope/core/base/_utils/_get_audio_type.py,sha256=PN8MlgKgl5OIDANgSUlI4UarLkfBHfWmWWls9shPM8M,683
122
- mirascope/core/base/_utils/_get_common_usage.py,sha256=uvMsHJBBVuASDavPyYqHyZ6E-vf1loJpbEJlZGb2QgQ,529
123
- mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py,sha256=emetnOpwOMDIdZT-umFrtZxd90NBpjOLTzIAzhy9UmI,4134
122
+ mirascope/core/base/_utils/_get_common_usage.py,sha256=s9Gvq0wl4ZM1V3zmI0LDEIG8wIxWEOXkjuDBjtyFx9s,675
123
+ mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py,sha256=vAjvM_2pE4paDOPnehzer6-THpKRkzveTBlr8fCpyGU,4226
124
124
  mirascope/core/base/_utils/_get_document_type.py,sha256=XKuXlSssVLT_hR7XQHKY2fjhTN2v00DTIZDzH37MN-8,237
125
125
  mirascope/core/base/_utils/_get_dynamic_configuration.py,sha256=4zyGYhJLJF7TfO-ZD2bLZOF46_RFIb_zQq5NaZH6ugA,2033
126
126
  mirascope/core/base/_utils/_get_fields_from_call_args.py,sha256=UxisQxdsNppyDxYscyDbRa3NkHd943a83V5hBot9kRI,1124
@@ -138,22 +138,22 @@ mirascope/core/base/_utils/_messages_decorator.py,sha256=dnvbhmwvzGcew8LU0Q_HlDr
138
138
  mirascope/core/base/_utils/_parse_content_template.py,sha256=U8VGe7RsOWfqB3P7aI1Dmm3KwiSon0wtnxlSmvcvCEA,10652
139
139
  mirascope/core/base/_utils/_parse_prompt_messages.py,sha256=lGDYxvwea--gnE3LChNF9b1uxKrAKlYkVb9Ep7fM_zo,2523
140
140
  mirascope/core/base/_utils/_pil_image_to_bytes.py,sha256=qN8nYwRU1hgX1TjEpLKk5i-GBtxBQjTIp2KlMIdbBe8,387
141
- mirascope/core/base/_utils/_protocols.py,sha256=GiONFDxXeko0TST012OvTY3hFjpxV9QoAhkJ3hg38Mo,28082
141
+ mirascope/core/base/_utils/_protocols.py,sha256=Ca6wOHK-yBdRQV68fmxmbnwMI3gie7DJ_Zn2CilDUG8,28493
142
142
  mirascope/core/base/_utils/_setup_call.py,sha256=tnvs73IU4GDGkgqvqko0f2KKpAO-hK3bQUUW7C0Z94A,3107
143
143
  mirascope/core/base/_utils/_setup_extract_tool.py,sha256=y_guGnX6j748T3uygqrMijxEnI8ffrD0UWPP_qg9zoE,1290
144
- mirascope/core/bedrock/__init__.py,sha256=TNjxpxNN8-exPeIxoSoPCo9EHMFGPlwr_rQvEg66lrI,973
144
+ mirascope/core/bedrock/__init__.py,sha256=bbBnEu4vqofB76SdUrMCjx8pmiZFRySeSXGbfvADxL4,973
145
145
  mirascope/core/bedrock/_call.py,sha256=8Z8sdzpTdJsMHBev35B1KH3O16_eMLbtTkOmPB7bzvo,2317
146
146
  mirascope/core/bedrock/_call_kwargs.py,sha256=N1d_iglnwZW3JrcaT8WTOeuLT5MYcVLU5vS8u8uyEL4,408
147
147
  mirascope/core/bedrock/_types.py,sha256=ntmzYsgT6wuigv1GavkdqCvJnAYRsFvVuIwxafE4DFY,3229
148
148
  mirascope/core/bedrock/call_params.py,sha256=3eKNYTteCTaPLqvAcy1vHU5aY9nMVNhmApL45ugPbrQ,1716
149
- mirascope/core/bedrock/call_response.py,sha256=4X21wQVoH1JXpY_W1QodnBeY95euNpVP2mc0-MILCB8,8137
150
- mirascope/core/bedrock/call_response_chunk.py,sha256=m_It9rKXv4jtrXJh_BuEcb2807SJi80hA2iejPLmYSs,3219
149
+ mirascope/core/bedrock/call_response.py,sha256=tBJcBOhjnFPjXUPDOgdNN_vgGbovIidlJs5HHPvCB4k,8308
150
+ mirascope/core/bedrock/call_response_chunk.py,sha256=oH5fmS3NVOqHOthKKtBPbMdujmjmvKCMBXvSMSV9s9A,3348
151
151
  mirascope/core/bedrock/dynamic_config.py,sha256=X6v93X9g14mfvkGLL08yX-xTFGgX8y8bVngNmExdUhQ,1166
152
152
  mirascope/core/bedrock/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- mirascope/core/bedrock/stream.py,sha256=28A2FCpT2BIxhKHp7_mH08-f4nNKGJTAAAJPDz4XV1A,5246
153
+ mirascope/core/bedrock/stream.py,sha256=yMPOiwd4d0ncGVg9Ci2e7aChTO4w_DR9ryBQlzApESU,5288
154
154
  mirascope/core/bedrock/tool.py,sha256=rE5rx-CyJTy5kFOtYwZh9kkr4eR_4uUxGqDQRS9OWSE,2657
155
155
  mirascope/core/bedrock/_utils/__init__.py,sha256=E3aGPg8HteKUPfTmkZhoukrnZUs2WA9xoZDrjGBI0_8,455
156
- mirascope/core/bedrock/_utils/_calculate_cost.py,sha256=Mcfh1ktMapQWb6dg5VJrO8Lfp3M-S3SllvaKj6IqnDg,558
156
+ mirascope/core/bedrock/_utils/_calculate_cost.py,sha256=Z8CfSgnDifhDBe3RBO9pq3HG9yoTrpQed5EDMwuDjcg,606
157
157
  mirascope/core/bedrock/_utils/_convert_common_call_params.py,sha256=i17yrW-_7qdIsf-zS3OD5HIO0uykCdfanPsjV3WxTEY,1091
158
158
  mirascope/core/bedrock/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=A67-Q3zgpXh9q0iub5IfJw9VRgHvK-pczt1Btot_jks,792
159
159
  mirascope/core/bedrock/_utils/_convert_message_params.py,sha256=ZPFj34ed0-4bmMldj4tR6EGb9RsuHkXzSwjmwEeN-KU,4680
@@ -161,19 +161,19 @@ mirascope/core/bedrock/_utils/_get_json_output.py,sha256=hW-IBBQ5YW85VljjFJHDDtu
161
161
  mirascope/core/bedrock/_utils/_handle_stream.py,sha256=s8KNMNDKzvSIkFROtaZgbEJry78X_qCzTvGmHcL7UW0,3776
162
162
  mirascope/core/bedrock/_utils/_message_param_converter.py,sha256=T45kksn78idbqD9NZ3Omx1nS_IoYmTfA5y-bAHlX2fM,6846
163
163
  mirascope/core/bedrock/_utils/_setup_call.py,sha256=md-1FilnhgPpNqJpkOZKlrVpt6kRQneEeCU8GvK-p8o,8572
164
- mirascope/core/cohere/__init__.py,sha256=Ad5cfB2GY40nUqQyeu7HzxNNweU28XxrLOuN2jVBUk0,830
164
+ mirascope/core/cohere/__init__.py,sha256=vk73WFGBOEmMFEiqWMRnPfxsCBDlDcq8SaLB2A6RKeo,830
165
165
  mirascope/core/cohere/_call.py,sha256=y0nB_7h7FWCNxHRPywtAVCYXyeYX3uzTyYBPWnuLwUE,2261
166
166
  mirascope/core/cohere/_call_kwargs.py,sha256=YmHwiofs0QADGp0wXUtOr_Z5Pt849zaCtIZmVyjw2OM,292
167
167
  mirascope/core/cohere/_types.py,sha256=dMcep2mhuUUUmKvFUmdoxkq4Zg5AtB2xquROiBbwRvo,1017
168
168
  mirascope/core/cohere/call_params.py,sha256=xtmELsLkjfyfUoNbZpn3JET-gJxo1EIvlcwxgMw3gcw,1860
169
- mirascope/core/cohere/call_response.py,sha256=onJLSgc1G1d4QNij0I_gL5XnFRxjgfOVRruKtXUEjAQ,6086
170
- mirascope/core/cohere/call_response_chunk.py,sha256=SVJrSulaQQiXIUptLqDzslRHTOQ8xc8UWtnp69n73Wg,3499
169
+ mirascope/core/cohere/call_response.py,sha256=P4Jc5q8qHeTaXxxmdJtDQoOziCbBLAoGuCEDeIcRnV0,6279
170
+ mirascope/core/cohere/call_response_chunk.py,sha256=BmhVaFItss0WskJqhkapSmOPKbrfHjQUK0XTd9Ox_ys,3630
171
171
  mirascope/core/cohere/dynamic_config.py,sha256=noH36l6qGGnClVz0EtMqeW_0e4-oTCviU5SLIl8YS64,941
172
172
  mirascope/core/cohere/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
- mirascope/core/cohere/stream.py,sha256=DCS0W05Gz-26uZP5nJ00XoPg5eCGcRlYu-Jh0lJofAk,3467
173
+ mirascope/core/cohere/stream.py,sha256=RMzq4SYD3JfCqT_2ErDdbyzUu1s4qUI3AVAu6pdJqp8,3509
174
174
  mirascope/core/cohere/tool.py,sha256=fWp4aYVUFo8D6bOmh1WtBnTn9-jRMQvK6PRVw313xLs,2870
175
175
  mirascope/core/cohere/_utils/__init__.py,sha256=yCu26gZulDyG9zDquYGtms6UKlK1GEY7o9Y_94RiiAk,454
176
- mirascope/core/cohere/_utils/_calculate_cost.py,sha256=olD0FHlD5ZA23vhPzVM2QGjWJSiuxUD9uO9nO7Lqf5s,1085
176
+ mirascope/core/cohere/_utils/_calculate_cost.py,sha256=LE0egtaNJxG8KHLY3pH4MzTsKK6Jy2X-t3G5kOnsIQk,1157
177
177
  mirascope/core/cohere/_utils/_convert_common_call_params.py,sha256=PHJ8IaTfOiU_MY5Lef-dpOCTmAi8zZmS7ic79iwkKJU,804
178
178
  mirascope/core/cohere/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=JP8bUgIf1kATRejvcaS27wTTr8i-wQhCzue2fLSXd2I,795
179
179
  mirascope/core/cohere/_utils/_convert_message_params.py,sha256=RE_SPJs7FQE1f3g0aJnUQ6VPsPq0FzN0zLVeeB-ky7Y,1227
@@ -181,61 +181,62 @@ mirascope/core/cohere/_utils/_get_json_output.py,sha256=65gJEpp2ThxGDXJQZyGACpyC
181
181
  mirascope/core/cohere/_utils/_handle_stream.py,sha256=X7sPmnhKlRr8j6-Ds8ZGkajriCEKMYxzDRYltmHYfWI,1181
182
182
  mirascope/core/cohere/_utils/_message_param_converter.py,sha256=IXuPK1mwA69LmcRFGzipwpn73YuKAnETtbUS0KAC_w0,1911
183
183
  mirascope/core/cohere/_utils/_setup_call.py,sha256=xdyXamNXYzjRldzQ-xyu-WvH7A7LjNuE2W-w9zP-f9U,4603
184
- mirascope/core/gemini/__init__.py,sha256=FQgSvAk-zcbqo19SdDHfzTZZTYFXadNIzWJlv8wWEW8,1105
184
+ mirascope/core/gemini/__init__.py,sha256=x7GxY48nHa6nNFhoaS3ED8NK_DwF2bNEGXiWU865m7c,1105
185
185
  mirascope/core/gemini/_call.py,sha256=g47rUaE4V_onORvRUP9GlgnQKda28dV1Ge2YACvrD-c,2344
186
186
  mirascope/core/gemini/_call_kwargs.py,sha256=4f34gl1BPM14wkd0fGJw_58jYzxgGgNvZkjVI5d1hgU,360
187
187
  mirascope/core/gemini/call_params.py,sha256=aEXhgZVB0npcT6wL_p7GVGIE3vi_JOiMKdgWtpXTezQ,1723
188
- mirascope/core/gemini/call_response.py,sha256=ArsNa7SBuQjcWNP-boaUnB7ZCBvIHmkjG0w1Dx5RYYI,6119
189
- mirascope/core/gemini/call_response_chunk.py,sha256=AqKWWaRGEOgenxHzWLsNdbZDH-H0M5DI9CTJiwnS9Tw,2640
188
+ mirascope/core/gemini/call_response.py,sha256=sZWm02tDW3lWl2WDYXem1suws_PpH3DXUe3BQG1fKSY,6304
189
+ mirascope/core/gemini/call_response_chunk.py,sha256=G-nDxXe6hazQTNMt96yx-Qel3VbLq0wIsOOe6NLTEU8,2763
190
190
  mirascope/core/gemini/dynamic_config.py,sha256=_bmJUVHFyrr3zKea96lES20q4GPOelK3W7K1DcX0mZ8,836
191
- mirascope/core/gemini/stream.py,sha256=TPK4zKE_A0pTUKvoPktoq6BdFwxbE0S1yAeY2f9iSSg,3697
191
+ mirascope/core/gemini/stream.py,sha256=6ZToMusLGPOyARLyRCEslryvfahmhR8B_ys4NkAIG0g,3739
192
192
  mirascope/core/gemini/tool.py,sha256=ohO2kJPuAnYmO-t5WdavRbeSMgSfn66-A-6PEYraDPA,3073
193
193
  mirascope/core/gemini/_utils/__init__.py,sha256=rRJHluu810Jel3Bu3ok_8uyfPWnXYC0r1K5QuKPOAUo,454
194
- mirascope/core/gemini/_utils/_calculate_cost.py,sha256=vF1XWvNnp2cTv-JnM3x_htIJ4WMUthTqpH0Sb2lGmso,2254
194
+ mirascope/core/gemini/_utils/_calculate_cost.py,sha256=AdKOSWhrFNdnTRd_E_xt80cVvjC3HiASfIrbGqKx2_0,2302
195
195
  mirascope/core/gemini/_utils/_convert_common_call_params.py,sha256=1ZTpwqain90Va70xC9r9-_1YEIyvyZdjMiejN7E6yY4,1072
196
196
  mirascope/core/gemini/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
197
- mirascope/core/gemini/_utils/_convert_message_params.py,sha256=ddB5PW0ri9mRBOSsP5XgOpkozlsD1zEpKOK0JkgXyoQ,6853
197
+ mirascope/core/gemini/_utils/_convert_message_params.py,sha256=GYqU8pnjCa9Y-iIqkhPyvXegANtr8EJ9A3YwRDyR_dc,6864
198
198
  mirascope/core/gemini/_utils/_get_json_output.py,sha256=C2aeeEmcC-mBnbRL8aq3yohdCZJWMJc78E2GYqefK9k,1240
199
199
  mirascope/core/gemini/_utils/_handle_stream.py,sha256=1JoRIjwuVehVIjkvT_U2r9TMvMZB96ldp1n1AGon-tw,1153
200
200
  mirascope/core/gemini/_utils/_message_param_converter.py,sha256=4r_H1xtJErtLsrui8sG8YTIEjOiqQq_QA6fsMStwG8I,8359
201
201
  mirascope/core/gemini/_utils/_setup_call.py,sha256=QaboJO2k1D2ingfHuPSpb-YjMGRIcTIFN5Qe54eMCXM,4992
202
- mirascope/core/google/__init__.py,sha256=pvcZnXk5dVpH1dYxkup3Xwp6qlZg17e1hjXAriiiiP4,790
202
+ mirascope/core/google/__init__.py,sha256=5EhyiomPnjOS59FgfQP2uPCXS74ZJrGYvJ_CZbYdF40,790
203
203
  mirascope/core/google/_call.py,sha256=GJOPyvHzVlSXvJpgQhJFg4wFHFUYsvvrbjhNxU-nSl8,2344
204
204
  mirascope/core/google/_call_kwargs.py,sha256=baCYcxWsmV06ATw6nuQhh6FPm3k6oWmKOn0MyjESDGc,372
205
205
  mirascope/core/google/call_params.py,sha256=9Dt5m1pPVjpl5Qppz6Egl_9FyGjjz9aGCnXkVps7C_Q,538
206
- mirascope/core/google/call_response.py,sha256=InFmO_BFC4pSD3Yp8m0W8iUkU5UtmudFEoInDQ3QxBs,6696
207
- mirascope/core/google/call_response_chunk.py,sha256=7anUmoz3xElWDpzaTOsqWwVAOliohrPAqODj-j47gn0,2838
206
+ mirascope/core/google/call_response.py,sha256=ysyHPkX7ott83WWxAOabKwC6Utopcnmt806kXIFAuj0,7361
207
+ mirascope/core/google/call_response_chunk.py,sha256=d2zBPO2txlg7lz59Z3ayBk7rDyz96r_tT6Qo4B86on4,3275
208
208
  mirascope/core/google/dynamic_config.py,sha256=O6j8F0fLVFuuNwURneu5OpPuu_bMEtbDEFHhJXRT6V0,857
209
- mirascope/core/google/stream.py,sha256=YFPw8QH_u8uJK3UhLNKE96Vbcsb5d48PbtG31FVIDwY,3852
209
+ mirascope/core/google/stream.py,sha256=ZRheoBvKEv1XFgHoATeiBdo5W1v8KK46f5WRhCfZ0ME,4584
210
210
  mirascope/core/google/tool.py,sha256=hHHKlC6CIfv55XqG0NUsBf8eEgUNpgvaBuljq5_NopE,3030
211
211
  mirascope/core/google/_utils/__init__.py,sha256=5MKOhK3NFseq2AlapU8TtWS82f8Z0ayJCs3WMsDyc4E,454
212
- mirascope/core/google/_utils/_calculate_cost.py,sha256=fUyi6QAEa_NpPhtoAgVdQ7PpUa0QykNghsODrDtAYvw,3069
212
+ mirascope/core/google/_utils/_calculate_cost.py,sha256=n4cB8KPIpcP5fihXmKWZCfZ_DAsjs_Pd5rWN0-TVWGg,9018
213
213
  mirascope/core/google/_utils/_convert_common_call_params.py,sha256=KA-z6uvRtdD4WydC0eXd3dzQuSh4x4WKNR8PAqFNUVY,1065
214
214
  mirascope/core/google/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ig4tb7Zanz-tyZpvc9Ncd47a2FNTOS7-wl1PYBq-4cY,879
215
- mirascope/core/google/_utils/_convert_message_params.py,sha256=N365vmhi8Bx7u62IGqsEyI7JOXFb6Hk1vck4SpCaEOw,8841
215
+ mirascope/core/google/_utils/_convert_message_params.py,sha256=5FcMqK20OISCr00HP33w8219B1cNoy1AXkUmOeaIdkU,8079
216
216
  mirascope/core/google/_utils/_get_json_output.py,sha256=sxDgT0Ra6YJynL5_hhakf0dNJEhZm0DfAgfcvC_DAFU,1596
217
217
  mirascope/core/google/_utils/_handle_stream.py,sha256=BxFuheAu1LKPrPsDxxiLWd2KoajkwJyx2_QT1NXwtWE,1212
218
- mirascope/core/google/_utils/_message_param_converter.py,sha256=j-5fLlW2-3vI0kGQs-nVep_1kDr4kYYUBYYS9MV08Ks,6495
218
+ mirascope/core/google/_utils/_message_param_converter.py,sha256=eucmZl-zfU3cQiH5VVLs8_fJWf8zLg4-Q8KKChYFez4,6579
219
219
  mirascope/core/google/_utils/_setup_call.py,sha256=LAoIrNTTF5EOHNLZroBcN8sNKOjMYKJ07hM49yBaUgE,5791
220
- mirascope/core/groq/__init__.py,sha256=wo-_txqiLC3iswnXmPX4C6IgsU-_wv1DbBlNDY4rEvo,798
220
+ mirascope/core/google/_utils/_validate_media_type.py,sha256=sUOjKpC498L-NCiECejAAfSzMUAvZT84rf-2Yo-JE58,1042
221
+ mirascope/core/groq/__init__.py,sha256=8jWCQScdei_TImGMWUwiKnlOwffQqaXdAL-bluFmEL0,798
221
222
  mirascope/core/groq/_call.py,sha256=gR8VN5IaYWIFXc0csn995q59FM0nBs-xVFjkVycPjMM,2223
222
223
  mirascope/core/groq/_call_kwargs.py,sha256=trT8AdQ-jdQPYKlGngIMRwwQuvKuvAbvI1yyozftOuI,425
223
224
  mirascope/core/groq/call_params.py,sha256=FchtsaeohTzYKzY9f2fUIzjgG2y4OtsnRWiHsUBLdi0,1619
224
- mirascope/core/groq/call_response.py,sha256=2TfEUjlCxc7su-BGEaJ8njqRQiljpFayGhs2VkJKzl0,6208
225
- mirascope/core/groq/call_response_chunk.py,sha256=5gKDAzncgQ8m-HKR38PJ1G3aFX1KoyabNxsy1UZ7koI,2792
225
+ mirascope/core/groq/call_response.py,sha256=m9Rkd34WdM-DYMSfB_QNMLP3alTC4VYGAAncXgADReI,6396
226
+ mirascope/core/groq/call_response_chunk.py,sha256=pzAFzv7KGsvTwXlXVHuDZMkB9UoVVeqIkwKtKeJ5_dg,2918
226
227
  mirascope/core/groq/dynamic_config.py,sha256=AjcXBVeBdMiI6ObHanX3TVMKYxm4iWhXju3m6d-ZWMY,937
227
228
  mirascope/core/groq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
- mirascope/core/groq/stream.py,sha256=44wjsFugp6rNvyt8L1kuhkP5kA7hXEowXp2AKmIYrgs,4533
229
+ mirascope/core/groq/stream.py,sha256=g7FF3kGkQ04pKW1VfEoeKPpiazb1zt340ijSiZQmiyc,4575
229
230
  mirascope/core/groq/tool.py,sha256=mCUkDHqcZX3Kb44p6gDF9psswWjEBjegCHHbIgoziVc,2319
230
231
  mirascope/core/groq/_utils/__init__.py,sha256=SNhwvsAOc-vVHQrbZFmf1dGlGBFl42hqJrTW7Gjlrzw,452
231
- mirascope/core/groq/_utils/_calculate_cost.py,sha256=430-reYd55_3clLawLr_M3cCAQIsD9PxbKnsuy4WeIQ,2383
232
+ mirascope/core/groq/_utils/_calculate_cost.py,sha256=NDDtYiJy6x243PyGVNCS8rxATFYn4GmgeLEkDtJL8Yo,2554
232
233
  mirascope/core/groq/_utils/_convert_common_call_params.py,sha256=vRvabHCsB5h-Bv-dpMpNAHrQ6rrbAyc52V09x-zXTx0,725
233
234
  mirascope/core/groq/_utils/_convert_message_params.py,sha256=23fMq7-hnDrYyNQ8AJowwygPxvX7cf4efsXAFMBttwg,4676
234
235
  mirascope/core/groq/_utils/_get_json_output.py,sha256=vMbXmHC6OIwkg0TjyCTTUtIww3lfbApNy6yWgoAijGA,1012
235
236
  mirascope/core/groq/_utils/_handle_stream.py,sha256=CsjFZYip-Xxo-ZP6dSdNrIW9xSl-feTnYiYv-r39U0s,4605
236
237
  mirascope/core/groq/_utils/_message_param_converter.py,sha256=znFVMmYHAMceHZ6ya9QEIZKVjDtYTj5ZU-TP29x0Uho,3587
237
238
  mirascope/core/groq/_utils/_setup_call.py,sha256=fsXbP1NpzpJ3rq3oMvNEvgN4TJzudYb2zrW7JwKhbBM,4424
238
- mirascope/core/litellm/__init__.py,sha256=eBLmGsbY2SNEf3DPLYS-WgpskwaWbBeonpcBc3Zxh94,779
239
+ mirascope/core/litellm/__init__.py,sha256=gsgXatPQTmEESU7h-eZ2DMurDeHYO9wXqKYMS_L3wl8,779
239
240
  mirascope/core/litellm/_call.py,sha256=mSCU9nT0ZQTru6BppGJgtudAWqWFs0a6m5q-VYbM-ow,2391
240
241
  mirascope/core/litellm/call_params.py,sha256=6bnAHDkHaltwMzaF-REE80kZgZxLldL6QD341a1m-PI,270
241
242
  mirascope/core/litellm/call_response.py,sha256=cPhGUKmRWboiwXr-qofgRhFNzKFhvv7i9n1u9wqVi40,706
@@ -245,19 +246,19 @@ mirascope/core/litellm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
245
246
  mirascope/core/litellm/stream.py,sha256=7l7wxn728lb_OKrEFAVVZ3y37hZRzyif1lJLtSGHQrY,3122
246
247
  mirascope/core/litellm/tool.py,sha256=qG9-CU4OJ1lzIVWXQRGtyGHNu8P6viUfG1vmDupPhg0,287
247
248
  mirascope/core/litellm/_utils/__init__.py,sha256=cJLLm3wKSo_t2fMoTD-QzYvOkO7M7dWM5UerYMgHv80,112
248
- mirascope/core/litellm/_utils/_setup_call.py,sha256=8TImEpMOlN21jAskLt0T8SVDiJUlkG9nzPtwLx6vioI,3290
249
- mirascope/core/mistral/__init__.py,sha256=6Jz9mYmijycfsCXYKgxhxMEwmQEqOwZXmJt0F7Tx3Wg,893
249
+ mirascope/core/litellm/_utils/_setup_call.py,sha256=qQJKg5pMIcnvRUdKx65PbCR6dSZDziNg6wlezVrcpls,3493
250
+ mirascope/core/mistral/__init__.py,sha256=75tjaJC9nioECzQumC0FYITjosMsXCO1VzPV1t41PCU,893
250
251
  mirascope/core/mistral/_call.py,sha256=p9aSLYVSNgaIGA5SqCgGuT7iWN5WLfwmXubk4IF-w_I,2274
251
252
  mirascope/core/mistral/_call_kwargs.py,sha256=vZxlADPx4muIePARGdfKOVQpxpIoaXT9tCG6kY5oxSQ,513
252
253
  mirascope/core/mistral/call_params.py,sha256=wWHWI9hRnfloGhQurMwCcka9c1u_TwgcN84Ih6qVBXs,1054
253
- mirascope/core/mistral/call_response.py,sha256=zRFRs6sk-Ld-kHiis4vrtLxYBTFJ1P7Uvw9j4BwjF9g,6007
254
- mirascope/core/mistral/call_response_chunk.py,sha256=4TC3F5h_Ii3WrbDDunCOudl9wIlXMVCOigIPnJ5FWGE,2835
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
255
256
  mirascope/core/mistral/dynamic_config.py,sha256=-pzTvXf870NxEhjpgjqPahFWqqifzMhSbvM0kXs2G_s,937
256
257
  mirascope/core/mistral/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
- mirascope/core/mistral/stream.py,sha256=QuMi8UJoPyLXh3NUXQMWhJLSFuBSF6sG2lL8Nz0Av5E,3692
258
+ mirascope/core/mistral/stream.py,sha256=6mG43lq1vMbSznVq32hWsTlOHJQEIXpLdN302NvwMHo,3734
258
259
  mirascope/core/mistral/tool.py,sha256=1vY_I16Ma7gnNLkmsWEt7amv_xMiIgbCbFDVm2WIsP8,2279
259
260
  mirascope/core/mistral/_utils/__init__.py,sha256=_3PFMvGOXngCCxBce_8ob0IkuMrHW9crTuuTWTEawaw,455
260
- mirascope/core/mistral/_utils/_calculate_cost.py,sha256=pnr0fAIBVmq7Y-EswrlaqFu63rcBB21M5OW6cmjrsao,1998
261
+ mirascope/core/mistral/_utils/_calculate_cost.py,sha256=mlxfL57jYecaXlc5Xn5FBs42jNbnenlevGs1oTOwUB4,2136
261
262
  mirascope/core/mistral/_utils/_convert_common_call_params.py,sha256=7nDwJ3vtzErHQHKmuNUpiq0yLkBS6mO_6X0JJpHzQbY,663
262
263
  mirascope/core/mistral/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=ZxS1jyEweJYbjOdb543sPKSI17oUhATbs1JsIYVzKkA,720
263
264
  mirascope/core/mistral/_utils/_convert_message_params.py,sha256=nW18Bh4wQ-Nc00hu86d6hE9nC5wk_76dV7CXahfyQHo,4737
@@ -265,72 +266,72 @@ mirascope/core/mistral/_utils/_get_json_output.py,sha256=WxZqpaVec8J5hRYemEHjCK-
265
266
  mirascope/core/mistral/_utils/_handle_stream.py,sha256=9HowP742tvtXDuq8jO3KGPEnOL92xSP3fMP4SqkjC9E,5083
266
267
  mirascope/core/mistral/_utils/_message_param_converter.py,sha256=CCkL4iTei5Ce5ke0h_QnFOdjxulx4Vmyw3a0wDK_T0E,6889
267
268
  mirascope/core/mistral/_utils/_setup_call.py,sha256=bGXRJK1TqKRsCkzEi2vYwOLR02IIjNUPQGrr2JzIv-U,4801
268
- mirascope/core/openai/__init__.py,sha256=1-iKWt3nEk2GjB9UuH2WcAiPajsp9B3J6G-v5Ly7YQ0,882
269
+ mirascope/core/openai/__init__.py,sha256=lOzSimt1AaWyFW2s_w1So5lIn7K2rpj3bEFicjoiyjM,882
269
270
  mirascope/core/openai/_call.py,sha256=ExXdY3rjBbil0ija2HlGMRvcOE2zOOj13rgliw8nmFc,2260
270
271
  mirascope/core/openai/_call_kwargs.py,sha256=x53EZmxqroNewR194M_JkRP1Ejuh4BTtDL-b7XNSo2Q,435
271
- mirascope/core/openai/call_params.py,sha256=hexjEPRuPpq7dkyMgdL48jjY-J5zvHHvaHMKWGnWYHI,2494
272
- mirascope/core/openai/call_response.py,sha256=oap8etLPahE8YeO5zr4hek8dqZzMP_iyAZ9Jed2z9Us,7764
273
- mirascope/core/openai/call_response_chunk.py,sha256=yMjzGQa1sMDbFBn_tZPIuR6FkxyrHqxaxoHwrEQHV80,3722
272
+ 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
274
275
  mirascope/core/openai/dynamic_config.py,sha256=D36E3CMpXSaj5I8FEmtzMJz9gtTsNz1pVW_iM3dOCcw,1045
275
276
  mirascope/core/openai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
- mirascope/core/openai/stream.py,sha256=1MttfMbYcOxmdUx9HLmP0uBruEvmHHxMidhgUTFptp4,6252
277
+ mirascope/core/openai/stream.py,sha256=T4xR_8fJ6mL74UwJ6aNELNHIc9Dxt9NYTu2BZAdrREM,6292
277
278
  mirascope/core/openai/tool.py,sha256=iJWJQrY3-1Rq5OywzKFO9JUAcglneGD0UtkS3pcA0pg,3154
278
279
  mirascope/core/openai/_utils/__init__.py,sha256=J4ZMAuU4X0PN-nbYj2ikX2EgYRq-T00GbontdmkTcH0,454
279
- mirascope/core/openai/_utils/_calculate_cost.py,sha256=jm7TlGdnDlcWIHPlPo1TzJW70WIFo8PjuHurnroUsB4,7587
280
+ mirascope/core/openai/_utils/_calculate_cost.py,sha256=bMxDAuVFgO8B-_INxhYg0n11mQdZIOWNvw4YHWb3uwM,9467
280
281
  mirascope/core/openai/_utils/_convert_common_call_params.py,sha256=gvxsRdULxiC2137M9l53hUmF0ZkBxFQFurhWBcl_5Cg,739
281
282
  mirascope/core/openai/_utils/_convert_message_params.py,sha256=KHn6GWovhHLshwLa3szxc2OB3ymRpebGrjazSqRSrE8,6257
282
283
  mirascope/core/openai/_utils/_get_json_output.py,sha256=Q_5R6NFFDvmLoz9BQiymC5AEyYvxKPH2_XnOQZ8hIkU,1215
283
284
  mirascope/core/openai/_utils/_handle_stream.py,sha256=adsHAcTtGyMMFU9xnUsE4Yd2wrhSNSjcVddkS74mli0,5226
284
285
  mirascope/core/openai/_utils/_message_param_converter.py,sha256=r6zJ54xHMxxJ-2daY8l5FyDIa0HsdXeP0cN1wHNt6-E,4101
285
286
  mirascope/core/openai/_utils/_setup_call.py,sha256=8zxNZrWcZgBxi4kwzeXHsxFoJW0n0MZYSmSAYj3ossk,5500
286
- mirascope/core/vertex/__init__.py,sha256=xnIwyE_ANzhuXMtNi1ESnE1lbf_X3lp4BP3I8k1IvXA,1435
287
+ mirascope/core/vertex/__init__.py,sha256=eg_kNX956OYABi3leev5GyDg0KK8QopgztBtrMX7TGE,1435
287
288
  mirascope/core/vertex/_call.py,sha256=ebQmWoQLnxScyxhnGKU3MmHkXXzzs_Sw2Yf-d3nZFwU,2323
288
289
  mirascope/core/vertex/_call_kwargs.py,sha256=6JxQt1bAscbhPWTGESG1TiskB-i5imDHqLMgbMHmyfI,353
289
290
  mirascope/core/vertex/call_params.py,sha256=ISBnMITxAtvuGmpLF9UdkqcDS43RwtuuVakk01YIHDs,706
290
- mirascope/core/vertex/call_response.py,sha256=ymYKsyZgeaIgCTWyjD46k7OBAVoCTdAE5iWbWvBA4Jk,6068
291
- mirascope/core/vertex/call_response_chunk.py,sha256=yzVY9A18eZQyd5YnksKaJaXZ4s2yAK214wJEXPoQVHI,2627
291
+ mirascope/core/vertex/call_response.py,sha256=C8-VfZKtaNRcJmMgwC2GbG7A6JIsiV4O5oIn5EJd5ng,6249
292
+ mirascope/core/vertex/call_response_chunk.py,sha256=iuEmVx0oSq-5ZdRIFduic2n4qsboNXzsU2yVGedQjuQ,2750
292
293
  mirascope/core/vertex/dynamic_config.py,sha256=KISQf7c2Rf1EpaS_2Ik6beA1w9uz_dAvMBk4nQcrdaM,809
293
- mirascope/core/vertex/stream.py,sha256=81p04LZ47V6usjf1eQ91csLc4ZVOWSc0BAP2Vc9dCbQ,3620
294
+ mirascope/core/vertex/stream.py,sha256=tIsd4Xd5suR9PWGuNTWpkxnBgyrau1ENZeTWxt-71rk,3662
294
295
  mirascope/core/vertex/tool.py,sha256=l8DGC6rh6mvXyDVzAzOMYtxQyym-XLlJSr7082TVGK0,3173
295
296
  mirascope/core/vertex/_utils/__init__.py,sha256=LeQDo5oQqnblIh9AXJzFeMYnEkJkJAcg9EU-HCh-SVk,454
296
- mirascope/core/vertex/_utils/_calculate_cost.py,sha256=lzRYW47fOkMY7iExe_CfmREnfBEd8HpmoABn6oDK620,2296
297
+ mirascope/core/vertex/_utils/_calculate_cost.py,sha256=tArdRx-OOit9A79jxUHPT8ioczMNkb87qre27CXz96M,2334
297
298
  mirascope/core/vertex/_utils/_convert_common_call_params.py,sha256=v-kKo6vQdlQiQQnA3hRaS7NWCdzheVE0OGbLV4-8XLE,1056
298
299
  mirascope/core/vertex/_utils/_convert_finish_reason_to_common_finish_reasons.py,sha256=jkZM8hpkZjR1izwSyKTVwkkN_nfLROwx0V_yQsVDiB8,761
299
- mirascope/core/vertex/_utils/_convert_message_params.py,sha256=Z67m_xm8ByyDyuRwZ3aBwjADoUfDDEUqIxYWHgRYbuY,7465
300
+ mirascope/core/vertex/_utils/_convert_message_params.py,sha256=e2Q5B-CrNTNJ1b7lDobs96eAJnOQDJq5PSuuouD5TUE,7476
300
301
  mirascope/core/vertex/_utils/_get_json_output.py,sha256=NxbdPPde9lyWSaWQYNPFgmFfOLwNBuyLKwXcS6q6GHw,1298
301
302
  mirascope/core/vertex/_utils/_handle_stream.py,sha256=zUhwnkGUdQvfU8AJ3u975HoNR1BfaWH7_VBcmBaNmuU,1139
302
303
  mirascope/core/vertex/_utils/_message_param_converter.py,sha256=wtysOaa9JsodMrAy1xUBWbIIjt9bIMTjBBfb3LpKFOc,5460
303
304
  mirascope/core/vertex/_utils/_setup_call.py,sha256=9LXR-8sFumEJvUYm58VQTBMkZMOR45K86-sTkA7xuFY,5110
304
305
  mirascope/integrations/__init__.py,sha256=ieLWknpbkO_gABIVl9790YTTCCRO9ISQ35-1SeOSU0Q,392
305
- mirascope/integrations/_middleware_factory.py,sha256=MUd06zhJxwMnoyrPncrMQXL-qwhQsPqt27rf4NOCDnE,17309
306
+ mirascope/integrations/_middleware_factory.py,sha256=rv9MaNgn7AL9Z7qADMRxxD9A_abePqj80Y0SReU9LrE,17305
306
307
  mirascope/integrations/tenacity.py,sha256=jk64MBncCMbgoQMaXQgjxg9Y9UstRqTt2RCeA86pdCU,326
307
308
  mirascope/integrations/langfuse/__init__.py,sha256=wG3eBXwGPbFedB28L1K_q1iCf_dERjVmTDCWK4nHZyM,71
308
309
  mirascope/integrations/langfuse/_utils.py,sha256=SsZfQkp-_Ytxzoq03XwEy3a-PuHB6oVs3uy3fAZKMOg,3457
309
310
  mirascope/integrations/langfuse/_with_langfuse.py,sha256=UTA--jCB9K8SqUmaVz_X_rBJA9W0adpbrPWJtPOFU-4,1880
310
311
  mirascope/integrations/logfire/__init__.py,sha256=OWceKOygazwUG1XLGvSu3T2-AqnuBxf3--fbwGZ1G9o,68
311
- mirascope/integrations/logfire/_utils.py,sha256=sZqkvSqyURdkWhFGeBnJ1Ifa2dQvCCf6YbSuzInnK5A,7064
312
+ mirascope/integrations/logfire/_utils.py,sha256=2BU37ucJPPYviQvMbrD0Qcqhh5hLifYN7PeaBK4bAk0,7108
312
313
  mirascope/integrations/logfire/_with_logfire.py,sha256=DfN6QbCrTlR1K3bS4M43rP8rvYKPgAqfx2k0MpzHY3g,1799
313
314
  mirascope/integrations/otel/__init__.py,sha256=OzboYfm3fUNwKTuu08KX83hQHYI4oZYN2DjgXoKcJS4,225
314
315
  mirascope/integrations/otel/_utils.py,sha256=SCVb3MpcpqLpCpumJEbEdINceNdusnyT6iuKPz66sBc,8778
315
316
  mirascope/integrations/otel/_with_hyperdx.py,sha256=f17uxXQk5zZPtyj6zwPwJz5i7atsnUPOoq1LqT8JO0E,1637
316
317
  mirascope/integrations/otel/_with_otel.py,sha256=tbjd6BEbcSfnsm5CWHBoHwbRNrHt6-t4or-SYGQSD-w,1659
317
- mirascope/llm/__init__.py,sha256=ibSncLU4zWE9Hj35sfewQcf45ebjYc3kEs0I20ZTarE,195
318
- mirascope/llm/_protocols.py,sha256=rzqJ8J_XFO1GNwZr3RhnEyFsaY_4B-A1SJXCVKBxo2E,16394
318
+ mirascope/llm/__init__.py,sha256=kaQW8CHW83pP9WMVSL8ekS4Afwpw3nmQ0loRlMBCPVY,195
319
+ mirascope/llm/_protocols.py,sha256=62z47rluSDA1b4xj-y5_8G9m8a3D1WHNKFCL_0iJ52M,16624
319
320
  mirascope/llm/_response_metaclass.py,sha256=6DLQb5IrqMldyEXHT_pAsr2DlUVc9CmZuZiBXG37WK8,851
320
- mirascope/llm/call_response.py,sha256=WcJ4A2aDhKE6NlsZ6L6J1FHVPLzEgJQhh3vxY7sTulM,4675
321
+ mirascope/llm/call_response.py,sha256=KzbBXljVhhSHFmF3IzJtYKJCvs2MicdSGc0ATYjtvx4,4868
321
322
  mirascope/llm/call_response_chunk.py,sha256=9Vyi5_hpgill5CB8BwfSj33VR8sirY2ceTRbru0G3Sw,1820
322
323
  mirascope/llm/llm_call.py,sha256=YtAwmAub5lvldyKwl7ZVELVQA7MQeeXF4cjXI16ypkA,9924
323
324
  mirascope/llm/llm_override.py,sha256=xupkxlvzNSQvWpfmHpGze2CtmQqE1a3ZjCDdPznTeaQ,6523
324
- mirascope/llm/stream.py,sha256=mVcpBZqpAInVsUc3bO-jiAA5S9OfgyVErIyuz4xLzSE,5731
325
+ mirascope/llm/stream.py,sha256=yR08MwUbxIxeJIHigIuf277FR1vOha6E6CJZK6f_XFA,5901
325
326
  mirascope/llm/tool.py,sha256=Rz9W2g0I9bnTHFdIzTIEje8VMe2Di4AZhrNhgQusSjA,1832
326
327
  mirascope/mcp/__init__.py,sha256=mGboroTrBbzuZ_8uBssOhkqiJOJ4mNCvaJvS7mhumhg,155
327
328
  mirascope/mcp/client.py,sha256=ZsjaT6E5i4Cdm3iVp2-JTuDniUlzynWeeJvnBAtuffQ,11123
328
329
  mirascope/mcp/server.py,sha256=7BjZO3DkaiokEOgJOY9fbEX3M6YwAExN6Kw9s-Dp7Sc,11737
329
330
  mirascope/mcp/tools.py,sha256=IKQZCiQHh_YxJM-V90U9Z6xPQTYIfWFDBj8khhHDiw4,2254
330
- mirascope/retries/__init__.py,sha256=FN6IGLfWwzBnSyR5Lh-bAbLTFRdFJBs6behI7ZSlPII,249
331
+ mirascope/retries/__init__.py,sha256=xw3jJm-vL4kR10VaKN6A8KGoP2CsAg5_Gy1eWVMgYhQ,249
331
332
  mirascope/retries/fallback.py,sha256=xnN7CgQ2SaYMUNeeRoHAeFeola5DhgRd6O-0FRB95yE,4875
332
333
  mirascope/retries/tenacity.py,sha256=stBJPjEpUzP53IBVBFtqY2fUSgmOV1-sIIXZZJ9pvLY,1387
333
- mirascope/tools/__init__.py,sha256=yq6wpqwSuELVZ_IqkU7rzqOYm5vpG7Oxwbt3zPFLI0g,959
334
+ mirascope/tools/__init__.py,sha256=wsMYzSvGlFblPcsIF2YV92eZlDHSraWbjB5TicORUyA,959
334
335
  mirascope/tools/base.py,sha256=Bdnf9Te2tnPnvBS-dEeXVPv_jn5-z9FY_MQmBwP1ijU,3429
335
336
  mirascope/tools/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
337
  mirascope/tools/system/_docker_operation.py,sha256=eosRLlV8GjXd--7AADEnS8DuMGMB-n8n6jHrZha4vfE,6138
@@ -350,7 +351,7 @@ mirascope/v0/base/ops_utils.py,sha256=1Qq-VIwgHBaYutiZsS2MUQ4OgPC3APyywI5bTiTAmA
350
351
  mirascope/v0/base/prompts.py,sha256=FM2Yz98cSnDceYogiwPrp4BALf3_F3d4fIOCGAkd-SE,1298
351
352
  mirascope/v0/base/types.py,sha256=ZfatJoX0Yl0e3jhv0D_MhiSVHLYUeJsdN3um3iE10zY,352
352
353
  mirascope/v0/base/utils.py,sha256=XREPENRQTu8gpMhHU8RC8qH_am3FfGUvY-dJ6x8i-mw,681
353
- mirascope-1.18.3.dist-info/METADATA,sha256=0eNb5azYOiqZCPd1ltUWaVLUYIXgzf7-Auwp6YgK8Qo,8662
354
- mirascope-1.18.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
355
- mirascope-1.18.3.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
356
- mirascope-1.18.3.dist-info/RECORD,,
354
+ mirascope-1.18.4.dist-info/METADATA,sha256=Yc9sU9wGDXahNLV_qnZC_LAX_-RvD_ZgbN8Y74u5uno,8662
355
+ mirascope-1.18.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
356
+ mirascope-1.18.4.dist-info/licenses/LICENSE,sha256=LAs5Q8mdawTsVdONpDGukwsoc4KEUBmmonDEL39b23Y,1072
357
+ mirascope-1.18.4.dist-info/RECORD,,