mirascope 1.18.3__py3-none-any.whl → 1.19.0__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.
- mirascope/__init__.py +20 -2
- mirascope/beta/openai/__init__.py +1 -1
- mirascope/beta/openai/realtime/__init__.py +1 -1
- mirascope/beta/openai/realtime/tool.py +1 -1
- mirascope/beta/rag/__init__.py +2 -2
- mirascope/beta/rag/base/__init__.py +2 -2
- mirascope/beta/rag/weaviate/__init__.py +1 -1
- mirascope/core/__init__.py +26 -8
- mirascope/core/anthropic/__init__.py +3 -3
- mirascope/core/anthropic/_utils/_calculate_cost.py +114 -47
- mirascope/core/anthropic/call_response.py +9 -1
- mirascope/core/anthropic/call_response_chunk.py +7 -0
- mirascope/core/anthropic/stream.py +3 -1
- mirascope/core/azure/__init__.py +2 -2
- mirascope/core/azure/_utils/_calculate_cost.py +4 -1
- mirascope/core/azure/call_response.py +9 -1
- mirascope/core/azure/call_response_chunk.py +5 -0
- mirascope/core/azure/stream.py +3 -1
- mirascope/core/base/__init__.py +11 -9
- mirascope/core/base/_utils/__init__.py +10 -10
- mirascope/core/base/_utils/_get_common_usage.py +8 -4
- mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py +2 -2
- mirascope/core/base/_utils/_protocols.py +9 -8
- mirascope/core/base/call_response.py +22 -20
- mirascope/core/base/call_response_chunk.py +12 -1
- mirascope/core/base/stream.py +24 -21
- mirascope/core/base/tool.py +7 -5
- mirascope/core/base/types.py +22 -5
- mirascope/core/bedrock/__init__.py +3 -3
- mirascope/core/bedrock/_utils/_calculate_cost.py +4 -1
- mirascope/core/bedrock/call_response.py +8 -1
- mirascope/core/bedrock/call_response_chunk.py +5 -0
- mirascope/core/bedrock/stream.py +3 -1
- mirascope/core/cohere/__init__.py +2 -2
- mirascope/core/cohere/_utils/_calculate_cost.py +4 -3
- mirascope/core/cohere/call_response.py +9 -1
- mirascope/core/cohere/call_response_chunk.py +5 -0
- mirascope/core/cohere/stream.py +3 -1
- mirascope/core/gemini/__init__.py +2 -2
- mirascope/core/gemini/_utils/_calculate_cost.py +4 -1
- mirascope/core/gemini/_utils/_convert_message_params.py +1 -1
- mirascope/core/gemini/call_response.py +9 -1
- mirascope/core/gemini/call_response_chunk.py +5 -0
- mirascope/core/gemini/stream.py +3 -1
- mirascope/core/google/__init__.py +2 -2
- mirascope/core/google/_utils/_calculate_cost.py +141 -14
- mirascope/core/google/_utils/_convert_message_params.py +23 -51
- mirascope/core/google/_utils/_message_param_converter.py +34 -33
- mirascope/core/google/_utils/_validate_media_type.py +34 -0
- mirascope/core/google/call_response.py +26 -4
- mirascope/core/google/call_response_chunk.py +17 -9
- mirascope/core/google/stream.py +20 -2
- mirascope/core/groq/__init__.py +2 -2
- mirascope/core/groq/_utils/_calculate_cost.py +12 -11
- mirascope/core/groq/call_response.py +9 -1
- mirascope/core/groq/call_response_chunk.py +5 -0
- mirascope/core/groq/stream.py +3 -1
- mirascope/core/litellm/__init__.py +1 -1
- mirascope/core/litellm/_utils/_setup_call.py +7 -3
- mirascope/core/mistral/__init__.py +2 -2
- mirascope/core/mistral/_utils/_calculate_cost.py +10 -9
- mirascope/core/mistral/call_response.py +9 -1
- mirascope/core/mistral/call_response_chunk.py +5 -0
- mirascope/core/mistral/stream.py +3 -1
- mirascope/core/openai/__init__.py +2 -2
- mirascope/core/openai/_utils/_calculate_cost.py +78 -37
- mirascope/core/openai/call_params.py +13 -0
- mirascope/core/openai/call_response.py +14 -1
- mirascope/core/openai/call_response_chunk.py +12 -0
- mirascope/core/openai/stream.py +6 -4
- mirascope/core/vertex/__init__.py +1 -1
- mirascope/core/vertex/_utils/_calculate_cost.py +1 -0
- mirascope/core/vertex/_utils/_convert_message_params.py +1 -1
- mirascope/core/vertex/call_response.py +9 -1
- mirascope/core/vertex/call_response_chunk.py +5 -0
- mirascope/core/vertex/stream.py +3 -1
- mirascope/core/xai/__init__.py +28 -0
- mirascope/core/xai/_call.py +67 -0
- mirascope/core/xai/_utils/__init__.py +6 -0
- mirascope/core/xai/_utils/_calculate_cost.py +104 -0
- mirascope/core/xai/_utils/_setup_call.py +113 -0
- mirascope/core/xai/call_params.py +10 -0
- mirascope/core/xai/call_response.py +27 -0
- mirascope/core/xai/call_response_chunk.py +14 -0
- mirascope/core/xai/dynamic_config.py +8 -0
- mirascope/core/xai/py.typed +0 -0
- mirascope/core/xai/stream.py +57 -0
- mirascope/core/xai/tool.py +13 -0
- mirascope/integrations/_middleware_factory.py +6 -6
- mirascope/integrations/logfire/_utils.py +1 -1
- mirascope/llm/__init__.py +2 -2
- mirascope/llm/_protocols.py +34 -28
- mirascope/llm/call_response.py +16 -7
- mirascope/llm/llm_call.py +50 -46
- mirascope/llm/stream.py +43 -31
- mirascope/retries/__init__.py +1 -1
- mirascope/tools/__init__.py +2 -2
- {mirascope-1.18.3.dist-info → mirascope-1.19.0.dist-info}/METADATA +3 -1
- {mirascope-1.18.3.dist-info → mirascope-1.19.0.dist-info}/RECORD +101 -88
- {mirascope-1.18.3.dist-info → mirascope-1.19.0.dist-info}/WHEEL +0 -0
- {mirascope-1.18.3.dist-info → mirascope-1.19.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
mirascope/__init__.py,sha256=
|
|
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=
|
|
5
|
-
mirascope/beta/openai/realtime/__init__.py,sha256=
|
|
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
|
|
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=
|
|
13
|
-
mirascope/beta/rag/base/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
51
|
-
mirascope/core/anthropic/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
70
|
-
mirascope/core/azure/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
94
|
-
mirascope/core/base/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
109
|
-
mirascope/core/base/_utils/__init__.py,sha256=
|
|
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=
|
|
123
|
-
mirascope/core/base/_utils/_get_create_fn_or_async_create_fn.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
150
|
-
mirascope/core/bedrock/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
170
|
-
mirascope/core/cohere/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
189
|
-
mirascope/core/gemini/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
207
|
-
mirascope/core/google/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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/
|
|
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=
|
|
225
|
-
mirascope/core/groq/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
249
|
-
mirascope/core/mistral/__init__.py,sha256=
|
|
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=
|
|
254
|
-
mirascope/core/mistral/call_response_chunk.py,sha256
|
|
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=
|
|
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=
|
|
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,84 @@ 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=
|
|
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=
|
|
272
|
-
mirascope/core/openai/call_response.py,sha256=
|
|
273
|
-
mirascope/core/openai/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
291
|
-
mirascope/core/vertex/call_response_chunk.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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
|
|
305
|
+
mirascope/core/xai/__init__.py,sha256=_5TaPqkZI-kU8FhF7ZSZz6I2cnnCgOVIM36hGiDh_Kc,699
|
|
306
|
+
mirascope/core/xai/_call.py,sha256=gMCRzQFMPsWclPoyY--8189ajzX7BVkcwsGEdZALBLQ,2317
|
|
307
|
+
mirascope/core/xai/call_params.py,sha256=1zRuST6shKUI1A_Fw6kqybObHiPpO2Nn0GEioOAtows,266
|
|
308
|
+
mirascope/core/xai/call_response.py,sha256=bCEYwgB26PDMxkDNnqnqV-S_aB3Nb3zOy8bdZVMM4WA,750
|
|
309
|
+
mirascope/core/xai/call_response_chunk.py,sha256=lnLNhzG1vFUYCgy267ZvteqrLtkddrrsRjfKS70YSdE,448
|
|
310
|
+
mirascope/core/xai/dynamic_config.py,sha256=GOVAuS1eso4qrTG1SNAfs6TWB8aOuWFtDXcm5BTVFr8,288
|
|
311
|
+
mirascope/core/xai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
312
|
+
mirascope/core/xai/stream.py,sha256=qnGhY8FCbq4MRYyL_1_WagLhjL5v_Pzu3HOrcQ7D03Q,2159
|
|
313
|
+
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
|
|
316
|
+
mirascope/core/xai/_utils/_setup_call.py,sha256=0pCy8SqEQQEFUrCYTe6EEn_z7GuTY7-Gb9hnwkoBbH8,3523
|
|
304
317
|
mirascope/integrations/__init__.py,sha256=ieLWknpbkO_gABIVl9790YTTCCRO9ISQ35-1SeOSU0Q,392
|
|
305
|
-
mirascope/integrations/_middleware_factory.py,sha256=
|
|
318
|
+
mirascope/integrations/_middleware_factory.py,sha256=rv9MaNgn7AL9Z7qADMRxxD9A_abePqj80Y0SReU9LrE,17305
|
|
306
319
|
mirascope/integrations/tenacity.py,sha256=jk64MBncCMbgoQMaXQgjxg9Y9UstRqTt2RCeA86pdCU,326
|
|
307
320
|
mirascope/integrations/langfuse/__init__.py,sha256=wG3eBXwGPbFedB28L1K_q1iCf_dERjVmTDCWK4nHZyM,71
|
|
308
321
|
mirascope/integrations/langfuse/_utils.py,sha256=SsZfQkp-_Ytxzoq03XwEy3a-PuHB6oVs3uy3fAZKMOg,3457
|
|
309
322
|
mirascope/integrations/langfuse/_with_langfuse.py,sha256=UTA--jCB9K8SqUmaVz_X_rBJA9W0adpbrPWJtPOFU-4,1880
|
|
310
323
|
mirascope/integrations/logfire/__init__.py,sha256=OWceKOygazwUG1XLGvSu3T2-AqnuBxf3--fbwGZ1G9o,68
|
|
311
|
-
mirascope/integrations/logfire/_utils.py,sha256=
|
|
324
|
+
mirascope/integrations/logfire/_utils.py,sha256=2BU37ucJPPYviQvMbrD0Qcqhh5hLifYN7PeaBK4bAk0,7108
|
|
312
325
|
mirascope/integrations/logfire/_with_logfire.py,sha256=DfN6QbCrTlR1K3bS4M43rP8rvYKPgAqfx2k0MpzHY3g,1799
|
|
313
326
|
mirascope/integrations/otel/__init__.py,sha256=OzboYfm3fUNwKTuu08KX83hQHYI4oZYN2DjgXoKcJS4,225
|
|
314
327
|
mirascope/integrations/otel/_utils.py,sha256=SCVb3MpcpqLpCpumJEbEdINceNdusnyT6iuKPz66sBc,8778
|
|
315
328
|
mirascope/integrations/otel/_with_hyperdx.py,sha256=f17uxXQk5zZPtyj6zwPwJz5i7atsnUPOoq1LqT8JO0E,1637
|
|
316
329
|
mirascope/integrations/otel/_with_otel.py,sha256=tbjd6BEbcSfnsm5CWHBoHwbRNrHt6-t4or-SYGQSD-w,1659
|
|
317
|
-
mirascope/llm/__init__.py,sha256=
|
|
318
|
-
mirascope/llm/_protocols.py,sha256=
|
|
330
|
+
mirascope/llm/__init__.py,sha256=RUzuwlWxguzFIcOF7lTqfZ4pQ6vzEbltBf7rNRlq9t4,227
|
|
331
|
+
mirascope/llm/_protocols.py,sha256=3Zo9hnWxEkqFkAUT1mzbmyerWsMPPYmJdy7iGYQAyRA,17068
|
|
319
332
|
mirascope/llm/_response_metaclass.py,sha256=6DLQb5IrqMldyEXHT_pAsr2DlUVc9CmZuZiBXG37WK8,851
|
|
320
|
-
mirascope/llm/call_response.py,sha256=
|
|
333
|
+
mirascope/llm/call_response.py,sha256=KzbBXljVhhSHFmF3IzJtYKJCvs2MicdSGc0ATYjtvx4,4868
|
|
321
334
|
mirascope/llm/call_response_chunk.py,sha256=9Vyi5_hpgill5CB8BwfSj33VR8sirY2ceTRbru0G3Sw,1820
|
|
322
|
-
mirascope/llm/llm_call.py,sha256=
|
|
335
|
+
mirascope/llm/llm_call.py,sha256=J9jM6mJWjyQecWfGoU6-9Ve5oZhGTMVaZlz4PTJ5rHY,9876
|
|
323
336
|
mirascope/llm/llm_override.py,sha256=xupkxlvzNSQvWpfmHpGze2CtmQqE1a3ZjCDdPznTeaQ,6523
|
|
324
|
-
mirascope/llm/stream.py,sha256=
|
|
337
|
+
mirascope/llm/stream.py,sha256=yR08MwUbxIxeJIHigIuf277FR1vOha6E6CJZK6f_XFA,5901
|
|
325
338
|
mirascope/llm/tool.py,sha256=Rz9W2g0I9bnTHFdIzTIEje8VMe2Di4AZhrNhgQusSjA,1832
|
|
326
339
|
mirascope/mcp/__init__.py,sha256=mGboroTrBbzuZ_8uBssOhkqiJOJ4mNCvaJvS7mhumhg,155
|
|
327
340
|
mirascope/mcp/client.py,sha256=ZsjaT6E5i4Cdm3iVp2-JTuDniUlzynWeeJvnBAtuffQ,11123
|
|
328
341
|
mirascope/mcp/server.py,sha256=7BjZO3DkaiokEOgJOY9fbEX3M6YwAExN6Kw9s-Dp7Sc,11737
|
|
329
342
|
mirascope/mcp/tools.py,sha256=IKQZCiQHh_YxJM-V90U9Z6xPQTYIfWFDBj8khhHDiw4,2254
|
|
330
|
-
mirascope/retries/__init__.py,sha256=
|
|
343
|
+
mirascope/retries/__init__.py,sha256=xw3jJm-vL4kR10VaKN6A8KGoP2CsAg5_Gy1eWVMgYhQ,249
|
|
331
344
|
mirascope/retries/fallback.py,sha256=xnN7CgQ2SaYMUNeeRoHAeFeola5DhgRd6O-0FRB95yE,4875
|
|
332
345
|
mirascope/retries/tenacity.py,sha256=stBJPjEpUzP53IBVBFtqY2fUSgmOV1-sIIXZZJ9pvLY,1387
|
|
333
|
-
mirascope/tools/__init__.py,sha256=
|
|
346
|
+
mirascope/tools/__init__.py,sha256=wsMYzSvGlFblPcsIF2YV92eZlDHSraWbjB5TicORUyA,959
|
|
334
347
|
mirascope/tools/base.py,sha256=Bdnf9Te2tnPnvBS-dEeXVPv_jn5-z9FY_MQmBwP1ijU,3429
|
|
335
348
|
mirascope/tools/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
349
|
mirascope/tools/system/_docker_operation.py,sha256=eosRLlV8GjXd--7AADEnS8DuMGMB-n8n6jHrZha4vfE,6138
|
|
@@ -350,7 +363,7 @@ mirascope/v0/base/ops_utils.py,sha256=1Qq-VIwgHBaYutiZsS2MUQ4OgPC3APyywI5bTiTAmA
|
|
|
350
363
|
mirascope/v0/base/prompts.py,sha256=FM2Yz98cSnDceYogiwPrp4BALf3_F3d4fIOCGAkd-SE,1298
|
|
351
364
|
mirascope/v0/base/types.py,sha256=ZfatJoX0Yl0e3jhv0D_MhiSVHLYUeJsdN3um3iE10zY,352
|
|
352
365
|
mirascope/v0/base/utils.py,sha256=XREPENRQTu8gpMhHU8RC8qH_am3FfGUvY-dJ6x8i-mw,681
|
|
353
|
-
mirascope-1.
|
|
354
|
-
mirascope-1.
|
|
355
|
-
mirascope-1.
|
|
356
|
-
mirascope-1.
|
|
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,,
|
|
File without changes
|
|
File without changes
|