pydantic-ai-slim 1.0.12__py3-none-any.whl → 1.0.13__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.
Potentially problematic release.
This version of pydantic-ai-slim might be problematic. Click here for more details.
- pydantic_ai/_agent_graph.py +4 -0
- pydantic_ai/_instrumentation.py +95 -0
- pydantic_ai/_output.py +26 -12
- pydantic_ai/_run_context.py +4 -0
- pydantic_ai/_tool_manager.py +15 -7
- pydantic_ai/agent/__init__.py +67 -34
- pydantic_ai/agent/abstract.py +12 -1
- pydantic_ai/agent/wrapper.py +11 -3
- pydantic_ai/direct.py +2 -2
- pydantic_ai/durable_exec/dbos/_agent.py +11 -2
- pydantic_ai/durable_exec/temporal/_agent.py +12 -3
- pydantic_ai/mcp.py +12 -2
- pydantic_ai/models/__init__.py +18 -1
- pydantic_ai/models/anthropic.py +8 -0
- pydantic_ai/models/bedrock.py +8 -0
- pydantic_ai/models/cohere.py +4 -0
- pydantic_ai/models/fallback.py +2 -9
- pydantic_ai/models/function.py +8 -0
- pydantic_ai/models/gemini.py +8 -0
- pydantic_ai/models/google.py +12 -0
- pydantic_ai/models/groq.py +8 -0
- pydantic_ai/models/huggingface.py +8 -2
- pydantic_ai/models/instrumented.py +16 -6
- pydantic_ai/models/mcp_sampling.py +2 -0
- pydantic_ai/models/mistral.py +8 -0
- pydantic_ai/models/openai.py +16 -0
- pydantic_ai/models/test.py +8 -0
- pydantic_ai/models/wrapper.py +7 -0
- {pydantic_ai_slim-1.0.12.dist-info → pydantic_ai_slim-1.0.13.dist-info}/METADATA +3 -3
- {pydantic_ai_slim-1.0.12.dist-info → pydantic_ai_slim-1.0.13.dist-info}/RECORD +33 -32
- {pydantic_ai_slim-1.0.12.dist-info → pydantic_ai_slim-1.0.13.dist-info}/WHEEL +0 -0
- {pydantic_ai_slim-1.0.12.dist-info → pydantic_ai_slim-1.0.13.dist-info}/entry_points.txt +0 -0
- {pydantic_ai_slim-1.0.12.dist-info → pydantic_ai_slim-1.0.13.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
pydantic_ai/__init__.py,sha256=ncKgkl6nkEbiI8yLeAQx4yFPEcIJ1xgyddxVX-f-wiE,4838
|
|
2
2
|
pydantic_ai/__main__.py,sha256=Q_zJU15DUA01YtlJ2mnaLCoId2YmgmreVEERGuQT-Y0,132
|
|
3
3
|
pydantic_ai/_a2a.py,sha256=3_pl7JW2yHdu31qLgCrdcTZTqXaJNjAwUV6zavah_w8,12159
|
|
4
|
-
pydantic_ai/_agent_graph.py,sha256=
|
|
4
|
+
pydantic_ai/_agent_graph.py,sha256=EOYrY4KWWr4NjYvSkOErPSwK8OxBQsGwXKtOR_3hR9U,53455
|
|
5
5
|
pydantic_ai/_cli.py,sha256=n1MX7p-UKH6ZWPNwiGPZTVcXYhXG8OiJIuNMeYX5k2M,14053
|
|
6
6
|
pydantic_ai/_function_schema.py,sha256=UnDGh7Wh5z70pEaRujXF_hKsSibQdN2ywI6lZGz3LUo,11663
|
|
7
7
|
pydantic_ai/_griffe.py,sha256=BphvTL00FHxsSY56GM-bNyCOdwrpL0T3LbDQITWUK_Q,5280
|
|
8
|
+
pydantic_ai/_instrumentation.py,sha256=3XJxRUT0m2K6NfpAb-JKro4Rpw-8weqQ_ydtufeKVrU,2964
|
|
8
9
|
pydantic_ai/_json_schema.py,sha256=Br48srbwCTVIie98a9UEMGcCcTIa3E4zVvCbkxqQRso,7268
|
|
9
10
|
pydantic_ai/_mcp.py,sha256=PuvwnlLjv7YYOa9AZJCrklevBug99zGMhwJCBGG7BHQ,5626
|
|
10
11
|
pydantic_ai/_otel_messages.py,sha256=SsMpbyI1fIISOck_wQcZJPIOei8lOmvwARkdPSCx8y8,1650
|
|
11
|
-
pydantic_ai/_output.py,sha256=
|
|
12
|
+
pydantic_ai/_output.py,sha256=OWoNkxZ1ml25MC36C_EZRPFe0V8VqIBf23bwTaMA4p0,38731
|
|
12
13
|
pydantic_ai/_parts_manager.py,sha256=QRfZTk21tCO6jEu8hF0qZLEsyUzvu0C6-qkiFhnbqxI,21443
|
|
13
|
-
pydantic_ai/_run_context.py,sha256
|
|
14
|
+
pydantic_ai/_run_context.py,sha256=-ah9Ipf3mLTbvuYqmJSqBmBexaCcED7HGA1Llzs0dKU,2324
|
|
14
15
|
pydantic_ai/_system_prompt.py,sha256=WdDW_DTGHujcFFaK-J7J6mA4ZDJZ0IOKpyizJA-1Y5Q,1142
|
|
15
16
|
pydantic_ai/_thinking_part.py,sha256=_0DajGyWPa50WUTPWN1UPfZw0xD8_hHcuSt0T3fgRr0,1295
|
|
16
|
-
pydantic_ai/_tool_manager.py,sha256=
|
|
17
|
+
pydantic_ai/_tool_manager.py,sha256=iLFza1JiIPqLNo2B_DcNIhOY1r35vSzI6DWgkPGfLtY,10833
|
|
17
18
|
pydantic_ai/_utils.py,sha256=TBzJ03szJPrmDdqRqKTyhRboTsyP6wppnCCprpZFBMw,16620
|
|
18
19
|
pydantic_ai/ag_ui.py,sha256=X3b4P_IraypCE3r-L2ETIo8G951A1MDdP4P5TQ8Fces,32067
|
|
19
20
|
pydantic_ai/builtin_tools.py,sha256=DFwiFEtCXhw8MWgnraps9x56X6olyDHt1UiCwIapcKk,3863
|
|
20
|
-
pydantic_ai/direct.py,sha256=
|
|
21
|
+
pydantic_ai/direct.py,sha256=p4CvEmWjIsXlUdrnzhkLZGTpgwWv1QfMJXjAHwdKJA0,14825
|
|
21
22
|
pydantic_ai/exceptions.py,sha256=zsXZMKf2BJuVsfuHl1fWTkogLU37bd4yq7D6BKHAzVs,4968
|
|
22
23
|
pydantic_ai/format_prompt.py,sha256=qQ9zv6PJR9D4FTII6gD3_bSOHYymhRYVIxhPMscxeLI,9528
|
|
23
|
-
pydantic_ai/mcp.py,sha256=
|
|
24
|
+
pydantic_ai/mcp.py,sha256=bDH_2F36I3dVaBj76DKk53_HMvh87GSslv4k_0k4-Ig,36327
|
|
24
25
|
pydantic_ai/messages.py,sha256=CPainRnRN80ew8IMehfHjvioGBQut1Cr4MthzQ4tihA,57773
|
|
25
26
|
pydantic_ai/output.py,sha256=Hh3P8IJHhd0DcVy8UBaUB-aEzL3Hd8V1-KwLICUxmGs,12940
|
|
26
27
|
pydantic_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,20 +31,20 @@ pydantic_ai/run.py,sha256=wHlWl4CXIHLcgo2R8PlsU3Pjn0vuMLFfP8D6Fbany-Y,15097
|
|
|
30
31
|
pydantic_ai/settings.py,sha256=0mr6KudxKKjTG8e3nsv_8vDLxNhu_1-WvefCOzCGSYM,3565
|
|
31
32
|
pydantic_ai/tools.py,sha256=dCecmJtRkF1ioqFYbfT00XGGqzGB4PPO9n6IrHCQtnc,20343
|
|
32
33
|
pydantic_ai/usage.py,sha256=KuDwSvWCzV5O9fPeEy5lUg2OhPq2eZFEFk2vYCA_DwA,14060
|
|
33
|
-
pydantic_ai/agent/__init__.py,sha256=
|
|
34
|
-
pydantic_ai/agent/abstract.py,sha256=
|
|
35
|
-
pydantic_ai/agent/wrapper.py,sha256=
|
|
34
|
+
pydantic_ai/agent/__init__.py,sha256=gmLwyTsyvL89sYvZR83Ba62A8lKLqTfRBk_KYbYYNQo,64116
|
|
35
|
+
pydantic_ai/agent/abstract.py,sha256=dOpnqbQTtvc9IozGhFC_juj9vpw5071U_vIklwms_lI,44995
|
|
36
|
+
pydantic_ai/agent/wrapper.py,sha256=xZw0spYA5oZkBc6GMcxV4hoQZSr02LbH9GCKqI3MokI,9734
|
|
36
37
|
pydantic_ai/common_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
38
|
pydantic_ai/common_tools/duckduckgo.py,sha256=1ae_o3zqMGrC6KFqAmuqPwJqQgNBTisuvU2jX9KU8PI,2273
|
|
38
39
|
pydantic_ai/common_tools/tavily.py,sha256=a7p2X03l9GS9B_0mvZZV3jePlCwf2TLNeej62-sPycs,2505
|
|
39
40
|
pydantic_ai/durable_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
41
|
pydantic_ai/durable_exec/dbos/__init__.py,sha256=H_dT0ERuNCBP0Im8eVGl8F9h7E9Aj87-pvmnLpDelF0,199
|
|
41
|
-
pydantic_ai/durable_exec/dbos/_agent.py,sha256=
|
|
42
|
+
pydantic_ai/durable_exec/dbos/_agent.py,sha256=QqUKttoZdnlb2QLuQVqLmwTNxQRy2toJ2GcwAlJLTw4,32903
|
|
42
43
|
pydantic_ai/durable_exec/dbos/_mcp_server.py,sha256=cLMCKmXQHqhqnn_E3Nf4IsNFIbqk-V7gnIvpmYeDCSA,2989
|
|
43
44
|
pydantic_ai/durable_exec/dbos/_model.py,sha256=_Cxh0zYFF3cungXiSXpGHmjyBQF7KnksfurV7hMKp-E,5106
|
|
44
45
|
pydantic_ai/durable_exec/dbos/_utils.py,sha256=_aNceFvTcNeqb78sTDYM2TdYph85tbdeLueyXY1lbTA,242
|
|
45
46
|
pydantic_ai/durable_exec/temporal/__init__.py,sha256=XKwy68wfgmjr057nolRwGHTKiadxufpQEGEUprAV09k,5563
|
|
46
|
-
pydantic_ai/durable_exec/temporal/_agent.py,sha256=
|
|
47
|
+
pydantic_ai/durable_exec/temporal/_agent.py,sha256=ZdGPaKyxYxCw1eL73SIH-TtMqzQH38o2kS7Taw19L_0,37149
|
|
47
48
|
pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=3n_A5uHzygsT88LM105kKuYqwxC1sjI4bOzETeUbT4E,5553
|
|
48
49
|
pydantic_ai/durable_exec/temporal/_logfire.py,sha256=ASd7vb0cd61yESI0mgU2w9SCGxsOegz95HtQjKdlQkE,2472
|
|
49
50
|
pydantic_ai/durable_exec/temporal/_mcp_server.py,sha256=vxfWeI7ZtYyXVgX621rPtG-WOZjlKWnqJhcvR9eBgIo,6014
|
|
@@ -53,22 +54,22 @@ pydantic_ai/durable_exec/temporal/_toolset.py,sha256=IlPQrumm2MpZrb518ru15s0jIl8
|
|
|
53
54
|
pydantic_ai/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
55
|
pydantic_ai/ext/aci.py,sha256=YWYLXzTQJ6hS7qfgNycA8cRl69gogGgThqEU6II7eMA,2527
|
|
55
56
|
pydantic_ai/ext/langchain.py,sha256=kmbbV3Cx2BiNYEJCZMHVYQquUQD-zG2L_bwDangy0Ww,2317
|
|
56
|
-
pydantic_ai/models/__init__.py,sha256=
|
|
57
|
-
pydantic_ai/models/anthropic.py,sha256=
|
|
58
|
-
pydantic_ai/models/bedrock.py,sha256=
|
|
59
|
-
pydantic_ai/models/cohere.py,sha256=
|
|
60
|
-
pydantic_ai/models/fallback.py,sha256=
|
|
61
|
-
pydantic_ai/models/function.py,sha256=
|
|
62
|
-
pydantic_ai/models/gemini.py,sha256=
|
|
63
|
-
pydantic_ai/models/google.py,sha256=
|
|
64
|
-
pydantic_ai/models/groq.py,sha256=
|
|
65
|
-
pydantic_ai/models/huggingface.py,sha256=
|
|
66
|
-
pydantic_ai/models/instrumented.py,sha256=
|
|
67
|
-
pydantic_ai/models/mcp_sampling.py,sha256=
|
|
68
|
-
pydantic_ai/models/mistral.py,sha256=
|
|
69
|
-
pydantic_ai/models/openai.py,sha256=
|
|
70
|
-
pydantic_ai/models/test.py,sha256=
|
|
71
|
-
pydantic_ai/models/wrapper.py,sha256=
|
|
57
|
+
pydantic_ai/models/__init__.py,sha256=8PXVHffd8qJm6yjb6GvYlBZrMacrDzPWf-FSWgCNcOk,35059
|
|
58
|
+
pydantic_ai/models/anthropic.py,sha256=raBHsTYvdwEUg2Xv7mxjWqrgxNuZmtCQfUROGt8kBMg,38035
|
|
59
|
+
pydantic_ai/models/bedrock.py,sha256=fha8zVZgDFYgDqO5nvBkZ2CEv4GV92yq_YnK4qmD73E,33639
|
|
60
|
+
pydantic_ai/models/cohere.py,sha256=5p103VxbKXZxLTmTh7GH2QiG1LVgiJRH7KdSUiRVJmA,13817
|
|
61
|
+
pydantic_ai/models/fallback.py,sha256=fjQz7qRuxEwC6aFYkglBv-2Z39-6kZ931vs6o7PIti8,5016
|
|
62
|
+
pydantic_ai/models/function.py,sha256=MCke1w8HHhqlWWONWpF7yW-Xh0T8zJDxqkd-09GLZbA,15816
|
|
63
|
+
pydantic_ai/models/gemini.py,sha256=D4tFMRmS5meUBSJU7Ti5lR7Ei0Nj_ThBmRup2occkaw,39674
|
|
64
|
+
pydantic_ai/models/google.py,sha256=ID9FekcpX2LxFb8tqFj5xDd1oB8H4Pp1jnBg8abjIWg,39783
|
|
65
|
+
pydantic_ai/models/groq.py,sha256=iDXDXEZFehFekRvvrdGi8hUJUrpijMPNPzUNtwn6RAs,29416
|
|
66
|
+
pydantic_ai/models/huggingface.py,sha256=NY870MVS-9_HpEL3SwA9sj-e_1aofUypI0qXDKK21Nk,21385
|
|
67
|
+
pydantic_ai/models/instrumented.py,sha256=J8eVTutr3UP1r_wd5sM5c0BIdzkRqT-EGgd2NiF0ssQ,22319
|
|
68
|
+
pydantic_ai/models/mcp_sampling.py,sha256=qY4y4nXbRpNp2QbkfjzWLvF_8KLZGXypz4cc0lYRHXU,3553
|
|
69
|
+
pydantic_ai/models/mistral.py,sha256=Jtcng1ga56U77-1a6R8VwjMOwCZpZAZTje5qgw7ZVBY,33952
|
|
70
|
+
pydantic_ai/models/openai.py,sha256=uuD3R8m6Ulep5k4wrCxT5oMMcz-dg7xwmw_-GpnqL1c,92587
|
|
71
|
+
pydantic_ai/models/test.py,sha256=wATXt4OvSYqyStJDsiCbujLbZWXEeztdTormsJOZbTs,20267
|
|
72
|
+
pydantic_ai/models/wrapper.py,sha256=nwh8Gea59blbr1JDKlUnkYICuI9TUubC4qP7iZRRW28,2440
|
|
72
73
|
pydantic_ai/profiles/__init__.py,sha256=FMMCAkEnaK5pNdOEjnxy_sZR5Aj_XF2HHg3Uv8rNj1M,3294
|
|
73
74
|
pydantic_ai/profiles/amazon.py,sha256=IPa2wydpcbFLLvhDK35-pwwoKo0Pg4vP84823fHx0zc,314
|
|
74
75
|
pydantic_ai/profiles/anthropic.py,sha256=J9N46G8eOjHdQ5CwZSLiwGdPb0eeIMdsMjwosDpvNhI,275
|
|
@@ -120,8 +121,8 @@ pydantic_ai/toolsets/prefixed.py,sha256=0KwcDkW8OM36ZUsOLVP5h-Nj2tPq78L3_E2c-1Fb
|
|
|
120
121
|
pydantic_ai/toolsets/prepared.py,sha256=Zjfz6S8In6PBVxoKFN9sKPN984zO6t0awB7Lnq5KODw,1431
|
|
121
122
|
pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs75k,1637
|
|
122
123
|
pydantic_ai/toolsets/wrapper.py,sha256=KRzF1p8dncHbva8CE6Ud-IC5E_aygIHlwH5atXK55k4,1673
|
|
123
|
-
pydantic_ai_slim-1.0.
|
|
124
|
-
pydantic_ai_slim-1.0.
|
|
125
|
-
pydantic_ai_slim-1.0.
|
|
126
|
-
pydantic_ai_slim-1.0.
|
|
127
|
-
pydantic_ai_slim-1.0.
|
|
124
|
+
pydantic_ai_slim-1.0.13.dist-info/METADATA,sha256=u35QkYJKwEsr8xCGzJZbXZOE8OqEyUrvorej4qRS1NA,4631
|
|
125
|
+
pydantic_ai_slim-1.0.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
126
|
+
pydantic_ai_slim-1.0.13.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
|
|
127
|
+
pydantic_ai_slim-1.0.13.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
|
|
128
|
+
pydantic_ai_slim-1.0.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|