pydantic-ai-slim 1.9.0__py3-none-any.whl → 1.12.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.
Files changed (48) hide show
  1. pydantic_ai/_agent_graph.py +18 -14
  2. pydantic_ai/_output.py +20 -105
  3. pydantic_ai/_run_context.py +8 -2
  4. pydantic_ai/_tool_manager.py +30 -11
  5. pydantic_ai/_utils.py +18 -0
  6. pydantic_ai/agent/__init__.py +34 -32
  7. pydantic_ai/agent/abstract.py +155 -3
  8. pydantic_ai/agent/wrapper.py +5 -0
  9. pydantic_ai/common_tools/duckduckgo.py +1 -1
  10. pydantic_ai/durable_exec/dbos/_agent.py +28 -0
  11. pydantic_ai/durable_exec/prefect/_agent.py +25 -0
  12. pydantic_ai/durable_exec/temporal/_agent.py +25 -0
  13. pydantic_ai/durable_exec/temporal/_function_toolset.py +23 -73
  14. pydantic_ai/durable_exec/temporal/_mcp_server.py +30 -30
  15. pydantic_ai/durable_exec/temporal/_run_context.py +9 -3
  16. pydantic_ai/durable_exec/temporal/_toolset.py +67 -3
  17. pydantic_ai/mcp.py +4 -4
  18. pydantic_ai/messages.py +11 -2
  19. pydantic_ai/models/__init__.py +80 -35
  20. pydantic_ai/models/anthropic.py +27 -8
  21. pydantic_ai/models/bedrock.py +3 -3
  22. pydantic_ai/models/cohere.py +5 -3
  23. pydantic_ai/models/fallback.py +25 -4
  24. pydantic_ai/models/function.py +8 -0
  25. pydantic_ai/models/gemini.py +3 -3
  26. pydantic_ai/models/google.py +25 -22
  27. pydantic_ai/models/groq.py +5 -3
  28. pydantic_ai/models/huggingface.py +3 -3
  29. pydantic_ai/models/instrumented.py +29 -13
  30. pydantic_ai/models/mistral.py +6 -4
  31. pydantic_ai/models/openai.py +15 -6
  32. pydantic_ai/models/outlines.py +21 -12
  33. pydantic_ai/models/wrapper.py +1 -1
  34. pydantic_ai/output.py +3 -2
  35. pydantic_ai/profiles/openai.py +5 -2
  36. pydantic_ai/providers/anthropic.py +2 -2
  37. pydantic_ai/providers/openrouter.py +3 -0
  38. pydantic_ai/result.py +159 -4
  39. pydantic_ai/tools.py +12 -10
  40. pydantic_ai/ui/_adapter.py +2 -2
  41. pydantic_ai/ui/_event_stream.py +4 -4
  42. pydantic_ai/ui/ag_ui/_event_stream.py +11 -2
  43. pydantic_ai/ui/ag_ui/app.py +8 -1
  44. {pydantic_ai_slim-1.9.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/METADATA +9 -7
  45. {pydantic_ai_slim-1.9.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/RECORD +48 -48
  46. {pydantic_ai_slim-1.9.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/WHEEL +0 -0
  47. {pydantic_ai_slim-1.9.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/entry_points.txt +0 -0
  48. {pydantic_ai_slim-1.9.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pydantic-ai-slim
3
- Version: 1.9.0
3
+ Version: 1.12.0
4
4
  Summary: Agent Framework / shim to use Pydantic with LLMs, slim package
5
5
  Project-URL: Homepage, https://github.com/pydantic/pydantic-ai/tree/main/pydantic_ai_slim
6
6
  Project-URL: Source, https://github.com/pydantic/pydantic-ai/tree/main/pydantic_ai_slim
@@ -33,7 +33,7 @@ Requires-Dist: genai-prices>=0.0.35
33
33
  Requires-Dist: griffe>=1.3.2
34
34
  Requires-Dist: httpx>=0.27
35
35
  Requires-Dist: opentelemetry-api>=1.28.0
36
- Requires-Dist: pydantic-graph==1.9.0
36
+ Requires-Dist: pydantic-graph==1.12.0
37
37
  Requires-Dist: pydantic>=2.10
38
38
  Requires-Dist: typing-inspection>=0.4.0
39
39
  Provides-Extra: a2a
@@ -57,7 +57,7 @@ Requires-Dist: dbos>=1.14.0; extra == 'dbos'
57
57
  Provides-Extra: duckduckgo
58
58
  Requires-Dist: ddgs>=9.0.0; extra == 'duckduckgo'
59
59
  Provides-Extra: evals
60
- Requires-Dist: pydantic-evals==1.9.0; extra == 'evals'
60
+ Requires-Dist: pydantic-evals==1.12.0; extra == 'evals'
61
61
  Provides-Extra: fastmcp
62
62
  Requires-Dist: fastmcp>=2.12.0; extra == 'fastmcp'
63
63
  Provides-Extra: google
@@ -77,17 +77,19 @@ Requires-Dist: openai>=1.107.2; extra == 'openai'
77
77
  Provides-Extra: outlines-llamacpp
78
78
  Requires-Dist: outlines[llamacpp]<1.3.0,>=1.0.0; extra == 'outlines-llamacpp'
79
79
  Provides-Extra: outlines-mlxlm
80
- Requires-Dist: outlines[mlxlm]<1.3.0,>=1.0.0; extra == 'outlines-mlxlm'
80
+ Requires-Dist: outlines[mlxlm]<1.3.0,>=1.0.0; (sys_platform != 'darwin' or platform_machine != 'x86_64') and extra == 'outlines-mlxlm'
81
81
  Provides-Extra: outlines-sglang
82
82
  Requires-Dist: outlines[sglang]<1.3.0,>=1.0.0; extra == 'outlines-sglang'
83
83
  Requires-Dist: pillow; extra == 'outlines-sglang'
84
84
  Provides-Extra: outlines-transformers
85
- Requires-Dist: outlines[transformers]<1.3.0,>=1.0.0; extra == 'outlines-transformers'
85
+ Requires-Dist: outlines[transformers]<1.3.0,>=1.0.0; (sys_platform != 'darwin' or platform_machine != 'x86_64') and extra == 'outlines-transformers'
86
86
  Requires-Dist: pillow; extra == 'outlines-transformers'
87
+ Requires-Dist: torch; (sys_platform != 'darwin' or platform_machine != 'x86_64') and extra == 'outlines-transformers'
87
88
  Requires-Dist: transformers>=4.0.0; extra == 'outlines-transformers'
88
89
  Provides-Extra: outlines-vllm-offline
89
90
  Requires-Dist: outlines<1.3.0,>=1.0.0; extra == 'outlines-vllm-offline'
90
- Requires-Dist: vllm; (python_version < '3.12') and extra == 'outlines-vllm-offline'
91
+ Requires-Dist: torch; (sys_platform != 'darwin' or platform_machine != 'x86_64') and extra == 'outlines-vllm-offline'
92
+ Requires-Dist: vllm; (python_version < '3.12' and (sys_platform != 'darwin' or platform_machine != 'x86_64')) and extra == 'outlines-vllm-offline'
91
93
  Provides-Extra: prefect
92
94
  Requires-Dist: prefect>=3.4.21; extra == 'prefect'
93
95
  Provides-Extra: retries
@@ -95,7 +97,7 @@ Requires-Dist: tenacity>=8.2.3; extra == 'retries'
95
97
  Provides-Extra: tavily
96
98
  Requires-Dist: tavily-python>=0.5.0; extra == 'tavily'
97
99
  Provides-Extra: temporal
98
- Requires-Dist: temporalio==1.18.0; extra == 'temporal'
100
+ Requires-Dist: temporalio==1.18.2; extra == 'temporal'
99
101
  Provides-Extra: ui
100
102
  Requires-Dist: starlette>=0.45.3; extra == 'ui'
101
103
  Provides-Extra: vertexai
@@ -1,7 +1,7 @@
1
1
  pydantic_ai/__init__.py,sha256=gHQPGEDDX6Xuq9yrq32BVjU8umFNVjgixjR9QXmxGmo,5277
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=ILOZhU_cZzsYV6-Pt3JGZibrlky4svv-1EnsH3uma-4,56897
4
+ pydantic_ai/_agent_graph.py,sha256=SaXJKFe_Eoc7TL_-1lvbSIEYS_1VADrYZWb7h7WEq1U,57123
5
5
  pydantic_ai/_cli.py,sha256=py1MytXDXwVxlSMsTBRqSjI_tHO2wNUChyGVaMvbacc,14001
6
6
  pydantic_ai/_function_schema.py,sha256=UnDGh7Wh5z70pEaRujXF_hKsSibQdN2ywI6lZGz3LUo,11663
7
7
  pydantic_ai/_griffe.py,sha256=BphvTL00FHxsSY56GM-bNyCOdwrpL0T3LbDQITWUK_Q,5280
@@ -9,42 +9,42 @@ pydantic_ai/_instrumentation.py,sha256=3XJxRUT0m2K6NfpAb-JKro4Rpw-8weqQ_ydtufeKV
9
9
  pydantic_ai/_json_schema.py,sha256=Br48srbwCTVIie98a9UEMGcCcTIa3E4zVvCbkxqQRso,7268
10
10
  pydantic_ai/_mcp.py,sha256=PuvwnlLjv7YYOa9AZJCrklevBug99zGMhwJCBGG7BHQ,5626
11
11
  pydantic_ai/_otel_messages.py,sha256=SsMpbyI1fIISOck_wQcZJPIOei8lOmvwARkdPSCx8y8,1650
12
- pydantic_ai/_output.py,sha256=83Imvnwqwr-zveX_I95E24zt2Iqn-ofpd0HsbvOhS70,41274
12
+ pydantic_ai/_output.py,sha256=HBdQCcROtKLfDwOBRqgOZJqi_w_0PYPnIhCCl_1JPJQ,37839
13
13
  pydantic_ai/_parts_manager.py,sha256=05m8q2JZQk9Z8vNKOocxGDJQwYgbUGABGBRnXYJcsg8,19914
14
- pydantic_ai/_run_context.py,sha256=-ah9Ipf3mLTbvuYqmJSqBmBexaCcED7HGA1Llzs0dKU,2324
14
+ pydantic_ai/_run_context.py,sha256=u0sInF3nVAjJRz9L_xHxZNlQlOBRvZUBseN9XOMsrhA,2681
15
15
  pydantic_ai/_system_prompt.py,sha256=WdDW_DTGHujcFFaK-J7J6mA4ZDJZ0IOKpyizJA-1Y5Q,1142
16
16
  pydantic_ai/_thinking_part.py,sha256=_0DajGyWPa50WUTPWN1UPfZw0xD8_hHcuSt0T3fgRr0,1295
17
- pydantic_ai/_tool_manager.py,sha256=se5Fikg4HaiTOnxJ4LFrezktZ2Zfv9a2OH0V9PtFE54,10464
18
- pydantic_ai/_utils.py,sha256=65H0E1GVGO2OmXpSoSbWDEPUxqLFVOzDXs3UkN2fyik,16580
17
+ pydantic_ai/_tool_manager.py,sha256=PF4Na7uPaf34iAHZhx7FXbwuQq1Yp79c2AtbUR2_3-M,11078
18
+ pydantic_ai/_utils.py,sha256=LCZCzZWAyS852bjqwYSL4fvkmvLJMTkCN09ruaICldY,17062
19
19
  pydantic_ai/ag_ui.py,sha256=kE7bk-yH7_GLkup0_EGqSiA5ZpxGqeeN0tb8tQ3QXe4,6974
20
20
  pydantic_ai/builtin_tools.py,sha256=EYSp9JVRethTLz-cL6HNrFRqnYaJMYBoDi-FTMcFf8c,8448
21
21
  pydantic_ai/direct.py,sha256=GnPFyHa2HkUEAKd2uVHMxZ90KM76lYGa9AQM84dEUXg,15513
22
22
  pydantic_ai/exceptions.py,sha256=gCmXLaic_PLD6_X6CNY0hcKRGr-bNUeKeV_ZR9Xyt7U,5141
23
23
  pydantic_ai/format_prompt.py,sha256=cLyWO8g77Y4JzqVSikqodXaAfTn6i-k206rNhYTiIsE,9710
24
- pydantic_ai/mcp.py,sha256=FHlD5pHH7Z6h76P6IjddQz0Pt6F0gAVlepmks4U1Cho,36190
25
- pydantic_ai/messages.py,sha256=th9AyBBrpyXZeHOVDJkWJZZkMGsL3vYJ7E5vDFYmItc,65957
26
- pydantic_ai/output.py,sha256=q91oqvJ-FqV9GbUUil7WVWbii66SVsVZ54AEm_NWSEo,13002
24
+ pydantic_ai/mcp.py,sha256=nA4IOkgEM13lMfyt8Xw7uNROPJmxxnD9HB-QyOlMLd4,36190
25
+ pydantic_ai/messages.py,sha256=-IC8z6Iddci8CRTgfdm6wzVVCEUybblNShpkfv9j2kk,66318
26
+ pydantic_ai/output.py,sha256=6FfDncKaFKE1j2_H4LhZkuFYtNUiMvRDkBfP7vf4GyM,13156
27
27
  pydantic_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- pydantic_ai/result.py,sha256=nOTTGUJUHqSbOQzWikzPJa3sJmztDzEeV-5DVHd_q0o,26998
28
+ pydantic_ai/result.py,sha256=7THBApHQYA1Y6LDFaYTPzz1vPOvGugqGNn2gjjW6sBI,34756
29
29
  pydantic_ai/retries.py,sha256=QM4oDA9DG-Y2qP06fbCp8Dqq8ups40Rr4HYjAOlbNyM,14650
30
30
  pydantic_ai/run.py,sha256=5mOgh7UkLRtCjs1S85NM6OjcWvOy91VQhCkNMQQPhxs,17039
31
31
  pydantic_ai/settings.py,sha256=HlQxrw62YsXpIIhhddecYNTquDfhnpfaZU7y1p4CuVs,3935
32
- pydantic_ai/tools.py,sha256=dCecmJtRkF1ioqFYbfT00XGGqzGB4PPO9n6IrHCQtnc,20343
32
+ pydantic_ai/tools.py,sha256=3EA_bJ-1Jczm_30t8BYaNi5Nj_lGPfz1xxeuZN9Gang,20430
33
33
  pydantic_ai/usage.py,sha256=lhReoVNwqt7mfmWk40A1ddnKk4-MVFJ0qCl_oFdGzxo,16251
34
- pydantic_ai/agent/__init__.py,sha256=rvVo5Fw78yu5IOVE6ub6tmJTIuDGsIY15D3_KTFXtx4,66525
35
- pydantic_ai/agent/abstract.py,sha256=zXj7fZHG7Nj6WwVajWuNI0xHqWEX2Zyte_lGmyDZd6o,56378
36
- pydantic_ai/agent/wrapper.py,sha256=ygwfMq24mGe3pGIK-TtPAy3cV7M8VZJW3ulEHvwNTck,10293
34
+ pydantic_ai/agent/__init__.py,sha256=G99QG9JiPON2W223FYRAwnmtPRr7gAn3ncwHxzOZf-E,66442
35
+ pydantic_ai/agent/abstract.py,sha256=bvXrCeHR58WKafGaDCtW-PO1r_IoZhnQU2JGNwS9hDs,64671
36
+ pydantic_ai/agent/wrapper.py,sha256=B8dB3FZSne737c1b6tXtfp35ahUA6v6xD6DrhX9qxfs,10577
37
37
  pydantic_ai/common_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- pydantic_ai/common_tools/duckduckgo.py,sha256=1ae_o3zqMGrC6KFqAmuqPwJqQgNBTisuvU2jX9KU8PI,2273
38
+ pydantic_ai/common_tools/duckduckgo.py,sha256=pfqwoFsu6qXEnhkoI4ed4avRbRN2HAsmvSMxFvjG1Jk,2278
39
39
  pydantic_ai/common_tools/tavily.py,sha256=a7p2X03l9GS9B_0mvZZV3jePlCwf2TLNeej62-sPycs,2505
40
40
  pydantic_ai/durable_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  pydantic_ai/durable_exec/dbos/__init__.py,sha256=H_dT0ERuNCBP0Im8eVGl8F9h7E9Aj87-pvmnLpDelF0,199
42
- pydantic_ai/durable_exec/dbos/_agent.py,sha256=glD0RNOsNjZJl7srLdsgIW5zTQF3YDzsuOWEEtPiYw8,40150
42
+ pydantic_ai/durable_exec/dbos/_agent.py,sha256=_2rt6RpxFY6aVFW_yRUDpukhuZFZQptDGlhxqZEtAPg,41747
43
43
  pydantic_ai/durable_exec/dbos/_mcp_server.py,sha256=cLMCKmXQHqhqnn_E3Nf4IsNFIbqk-V7gnIvpmYeDCSA,2989
44
44
  pydantic_ai/durable_exec/dbos/_model.py,sha256=_Cxh0zYFF3cungXiSXpGHmjyBQF7KnksfurV7hMKp-E,5106
45
45
  pydantic_ai/durable_exec/dbos/_utils.py,sha256=_aNceFvTcNeqb78sTDYM2TdYph85tbdeLueyXY1lbTA,242
46
46
  pydantic_ai/durable_exec/prefect/__init__.py,sha256=Ear0mrffOkmSG8itNo7U-LnLoU5-eyWK_9AcfPwJjZ0,422
47
- pydantic_ai/durable_exec/prefect/_agent.py,sha256=sGZovZ9VfLHP9Jq381AGEEqvuAYxg-wPbL2qWAlI6UQ,39742
47
+ pydantic_ai/durable_exec/prefect/_agent.py,sha256=vL8D7HBpgaAlzH69IPB2-MxezHgPlaueYSrmVShi4g0,41194
48
48
  pydantic_ai/durable_exec/prefect/_cache_policies.py,sha256=Sc6_xeDQ3NzuksoSa7KLXa64LhnLErt1UnPOXWFQArU,3399
49
49
  pydantic_ai/durable_exec/prefect/_function_toolset.py,sha256=TEytP8WAVIgz897mWy_dKmFOOXq3gHq6CIDWOUYjKL0,2052
50
50
  pydantic_ai/durable_exec/prefect/_mcp_server.py,sha256=5uHe2BNJyZUVeNPNo2HI0jtQkSyxAdOJGBTAwP1St04,1861
@@ -52,33 +52,33 @@ pydantic_ai/durable_exec/prefect/_model.py,sha256=-lJeI1LLc_v2R6yWpxmRuT_wjS-dgU
52
52
  pydantic_ai/durable_exec/prefect/_toolset.py,sha256=dBgIMsQikjJgGr7_QAs3UG7nycBBH61eioMwN8mPqoA,2050
53
53
  pydantic_ai/durable_exec/prefect/_types.py,sha256=cTtXnKokPSCDMBQJrLlEho0mJLvDIGNCZF-q6infkkU,1270
54
54
  pydantic_ai/durable_exec/temporal/__init__.py,sha256=KTbzwj9C-Xu6i5kwgMraUsKfmjfz6yxBc4FCJNEbFjs,6187
55
- pydantic_ai/durable_exec/temporal/_agent.py,sha256=I03CafhyyZ4KVN9DtnypMvRcNXYsfapDv9LUwCGZPzM,44594
56
- pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=blGpeMWDfqgGcGrPEnQ2LE0FGv_jQ6legY4o2PWd3Fo,5582
55
+ pydantic_ai/durable_exec/temporal/_agent.py,sha256=c54CjCcniSNWQM1ztBXmW8lxULdh1UF7JTkTE1Jafvc,46018
56
+ pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=lYE66Rv7ofh3_gzaMr1dkTU8sg-c7ntjVDFSUMEfq_w,4224
57
57
  pydantic_ai/durable_exec/temporal/_logfire.py,sha256=ASd7vb0cd61yESI0mgU2w9SCGxsOegz95HtQjKdlQkE,2472
58
- pydantic_ai/durable_exec/temporal/_mcp_server.py,sha256=vxfWeI7ZtYyXVgX621rPtG-WOZjlKWnqJhcvR9eBgIo,6014
58
+ pydantic_ai/durable_exec/temporal/_mcp_server.py,sha256=wBN8R1wFQ9SUiZvskqE-LuSLqm2K2naElnVwHLkdkDY,6104
59
59
  pydantic_ai/durable_exec/temporal/_model.py,sha256=sOrDgMjQmCizSXe041dNpd5EDFAXgE6r0LGZghWkaeg,7546
60
- pydantic_ai/durable_exec/temporal/_run_context.py,sha256=Y0RTm-P6q8Oziu2gml6hpAjhbVBeJuktEme84qwXE8A,2449
61
- pydantic_ai/durable_exec/temporal/_toolset.py,sha256=IlPQrumm2MpZrb518ru15s0jIl8-cGwvE6ZNWIZrFuE,2879
60
+ pydantic_ai/durable_exec/temporal/_run_context.py,sha256=GrF0IPwsaDj3Z83JMTbdgD3WZRwDfieqxyu9KfmXs5g,2660
61
+ pydantic_ai/durable_exec/temporal/_toolset.py,sha256=wO7wnk9cp4RWo_kCZ4iZhe_rTe6YfG3poHH9gg134hI,4692
62
62
  pydantic_ai/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
63
  pydantic_ai/ext/aci.py,sha256=YWYLXzTQJ6hS7qfgNycA8cRl69gogGgThqEU6II7eMA,2527
64
64
  pydantic_ai/ext/langchain.py,sha256=kmbbV3Cx2BiNYEJCZMHVYQquUQD-zG2L_bwDangy0Ww,2317
65
- pydantic_ai/models/__init__.py,sha256=Ez54Nc4c_VKF4RBQmIasz2ekbpvCLF9Ss-ZWaa5BYu4,37818
66
- pydantic_ai/models/anthropic.py,sha256=tNHLk-sao7YEFNr8-bWU2rJS3a_yO8SHgrDacScvk_k,44772
67
- pydantic_ai/models/bedrock.py,sha256=M_3h_S3t2s7GOiP0YIHoJjwW3d2PLzNnmXTENomV9GM,33699
68
- pydantic_ai/models/cohere.py,sha256=wQ3UYiFMs5Oyeyz5sd6NyG3b94iCeYBptnJC8bEYOUA,13892
69
- pydantic_ai/models/fallback.py,sha256=fjQz7qRuxEwC6aFYkglBv-2Z39-6kZ931vs6o7PIti8,5016
70
- pydantic_ai/models/function.py,sha256=7-ej1m4f7c1TbvgB8sF02qlFD7Kf-EX-k_xN4RkbIEw,15880
71
- pydantic_ai/models/gemini.py,sha256=ZMO1mUX6GXPo0N2OHoi_nS9Lb-Rqf0YFsILoRcssaG4,40410
72
- pydantic_ai/models/google.py,sha256=rcYzRMELj98dgnw8YrBHM1R3HLVjCTkWgDXMSNQrxOA,42141
73
- pydantic_ai/models/groq.py,sha256=HxJSquMfqOAS8gsQQQJyM8iReaPYp0VywK740thOYCU,29931
74
- pydantic_ai/models/huggingface.py,sha256=iADyoCKYrNyjixr55rEpXW02F-sah4rLmqrThEcNNDw,21464
75
- pydantic_ai/models/instrumented.py,sha256=J8eVTutr3UP1r_wd5sM5c0BIdzkRqT-EGgd2NiF0ssQ,22319
65
+ pydantic_ai/models/__init__.py,sha256=U_mdaKny8SAMHYjmT4eyYcdrBZVLAdotlbr0H3fueZc,40143
66
+ pydantic_ai/models/anthropic.py,sha256=CizO1sQQajDffNEo-16ewaEEfGG-zVbvmkkIkZ7_MBY,45784
67
+ pydantic_ai/models/bedrock.py,sha256=Fj74ncArDZ5sisB99wf1QJX7wqcnkoGAjcUFJ-c-2BE,33801
68
+ pydantic_ai/models/cohere.py,sha256=-T8pujcJVBHrS7aRD6-76ND5s2pJvFk8efJmRcQ26JY,14008
69
+ pydantic_ai/models/fallback.py,sha256=fx2r4zvV6QFJAaDG0Ka-9uH5-l_ti5urNXay4oQQ-_k,6187
70
+ pydantic_ai/models/function.py,sha256=MvGp0mSEScuyIU_6aMhNGYHv7Kb4ObUcKvkI7HTa5Uk,16365
71
+ pydantic_ai/models/gemini.py,sha256=UI3Jk7SEwbcUqzpOQ3BxLmrZHrI1EuY9dCUr-LU-JTA,40512
72
+ pydantic_ai/models/google.py,sha256=2FwLte9B_CdoUODfMdqG2_EtuLebK9FT_0uHf5vLeDo,42320
73
+ pydantic_ai/models/groq.py,sha256=XTNnsvxXjLYuPYAxIfMW72mdQ_WjyCi2UOb4lb0MyjA,30047
74
+ pydantic_ai/models/huggingface.py,sha256=rkn8VwtbbzE1ixrk9jtBXuZjwF69F_W9Wbzrg9lzNi8,21566
75
+ pydantic_ai/models/instrumented.py,sha256=W3ONNdsFOnaE-P3Fse69uR9mdIwDBZmhjW8NLyBuQS8,22977
76
76
  pydantic_ai/models/mcp_sampling.py,sha256=qY4y4nXbRpNp2QbkfjzWLvF_8KLZGXypz4cc0lYRHXU,3553
77
- pydantic_ai/models/mistral.py,sha256=fi57hADjYxZw8wEpAcNI6mqY32VG9hHK9GGRQ-9vlZg,33905
78
- pydantic_ai/models/openai.py,sha256=JV47aeiHJ6GnFI6-gi9nuuWkGalqmqff2DtCaZ0Q6ZI,109208
79
- pydantic_ai/models/outlines.py,sha256=Un4KERT-jW97georXrE3iNuThFiYaYxZjGYHm2-PpD8,24270
77
+ pydantic_ai/models/mistral.py,sha256=kUSjea6jv3a1f2xvYLlqVROP7C1f6WCAl3NR468F518,34047
78
+ pydantic_ai/models/openai.py,sha256=pXe9s32BqxGBgwAGGepFRiagGoJhfItGjMiPccxdAiw,109538
79
+ pydantic_ai/models/outlines.py,sha256=V4Ms3h5rhFmgYlAoJV91ETAE55TP3FERib7JMLF59Sc,24743
80
80
  pydantic_ai/models/test.py,sha256=cRiLD1uXKERUkBTyrVj3L5NQHoDrDqL5UU9EG_odkTg,20707
81
- pydantic_ai/models/wrapper.py,sha256=nwh8Gea59blbr1JDKlUnkYICuI9TUubC4qP7iZRRW28,2440
81
+ pydantic_ai/models/wrapper.py,sha256=iuzkDJUDfbBHBSlNisd7vw0txIWPqTl16Keg3hWilYI,2460
82
82
  pydantic_ai/profiles/__init__.py,sha256=UHknN-CYsQexUaxfsgz_J_uSZ9QwistLSuAErQkvbcM,3385
83
83
  pydantic_ai/profiles/amazon.py,sha256=IPa2wydpcbFLLvhDK35-pwwoKo0Pg4vP84823fHx0zc,314
84
84
  pydantic_ai/profiles/anthropic.py,sha256=J9N46G8eOjHdQ5CwZSLiwGdPb0eeIMdsMjwosDpvNhI,275
@@ -91,10 +91,10 @@ pydantic_ai/profiles/harmony.py,sha256=HKOQ1QUBd9jLLabO9jMCq97d3pgAzd3Y7c_jiwPFS
91
91
  pydantic_ai/profiles/meta.py,sha256=JdZcpdRWx8PY1pU9Z2i_TYtA0Cpbg23xyFrV7eXnooY,309
92
92
  pydantic_ai/profiles/mistral.py,sha256=ll01PmcK3szwlTfbaJLQmfd0TADN8lqjov9HpPJzCMQ,217
93
93
  pydantic_ai/profiles/moonshotai.py,sha256=e1RJnbEvazE6aJAqfmYLYGNtwNwg52XQDRDkcLrv3fU,272
94
- pydantic_ai/profiles/openai.py,sha256=kve8KnvsGguioNi1gQtO7dqF8vvxR8W21fERehb3GPo,10053
94
+ pydantic_ai/profiles/openai.py,sha256=Sg60ya4lp34kJI5DGrC0E5cHrmnfov6R6x6Xt57T1Mk,10157
95
95
  pydantic_ai/profiles/qwen.py,sha256=9SnTpMKndxNQMFyumyaOczJa5JGWbYQdpVKKW4OzKjk,749
96
96
  pydantic_ai/providers/__init__.py,sha256=Fwpu0w2-NpkKYQkDS2__kaWOR3dMW2KiE9v0K1EKwP4,4985
97
- pydantic_ai/providers/anthropic.py,sha256=vwNjO2JJ0Ux_3PXI9_XvzNZ24PKessm8z2ja1uzbBwM,3327
97
+ pydantic_ai/providers/anthropic.py,sha256=gAxVAJYrhUhq3FEUaYy3rNxkB52EDISL4Zf5yzd5ups,3372
98
98
  pydantic_ai/providers/azure.py,sha256=PFRykTOfARMdANODnTLq__0ZynX7DlQ35GVf2Qs9VBY,5814
99
99
  pydantic_ai/providers/bedrock.py,sha256=bPbz-o3UhDzCRrg5xCrTfluLpDi2Yy9-JiCtC5mCIRk,8539
100
100
  pydantic_ai/providers/cerebras.py,sha256=3rIu092TYYuI5S4mlRjWxay5uomPbEDyHWIBMfrDBdA,3427
@@ -116,7 +116,7 @@ pydantic_ai/providers/moonshotai.py,sha256=iaQHZRYJb7hqeq-Di7Qb0LYJ8EEoE7a_wWtlt
116
116
  pydantic_ai/providers/nebius.py,sha256=nGpgbZnBZgNz4wHTi1vgvc-9tO2_zj5r3vRzEUbhPKM,3877
117
117
  pydantic_ai/providers/ollama.py,sha256=jg48g_3fYsvK8g-V3UOmR9HOsvnvb533BAB-rZZDxdA,4733
118
118
  pydantic_ai/providers/openai.py,sha256=cVVf99GgBnYBKYeWKBscvnkoRCu0ctWuKulG19lgWMo,3401
119
- pydantic_ai/providers/openrouter.py,sha256=o33Fk7kMyMhEM4NcSXU6IuG0cIUc45ySaenozrRypBI,4145
119
+ pydantic_ai/providers/openrouter.py,sha256=H5EgV0DGDFw-pgfYquy9uy8C8dXwl9mmfor991jlXL8,4231
120
120
  pydantic_ai/providers/outlines.py,sha256=9Y3bnRKooqeUIVquexf75oGWpj8XOpJ71tBMWp0mTMQ,1251
121
121
  pydantic_ai/providers/ovhcloud.py,sha256=qvPB7-hgeClBMeNSKOiTrF-pSp6RczRaqWg5iAeUwss,3428
122
122
  pydantic_ai/providers/together.py,sha256=QtIR1BVJjoEYLvsUFpvPe81akx0iQvjYptl87XVpCpo,3441
@@ -135,21 +135,21 @@ pydantic_ai/toolsets/prepared.py,sha256=Zjfz6S8In6PBVxoKFN9sKPN984zO6t0awB7Lnq5K
135
135
  pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs75k,1637
136
136
  pydantic_ai/toolsets/wrapper.py,sha256=KRzF1p8dncHbva8CE6Ud-IC5E_aygIHlwH5atXK55k4,1673
137
137
  pydantic_ai/ui/__init__.py,sha256=J19J5ZWFWcg_SbnHxqwR_tK4A53NlpaTFk898n7tQww,406
138
- pydantic_ai/ui/_adapter.py,sha256=OUqD-MqdWBg69lbV7WCMqFgHiy5wXeCGZCzUSxC1YYE,16597
139
- pydantic_ai/ui/_event_stream.py,sha256=MsS4PZ88RkYjhqq1zOotBLoDvI5D5DS8Ed2sIGQXBss,24984
138
+ pydantic_ai/ui/_adapter.py,sha256=f73ChFKjAmg1Tios3-rvE70htpEGMKwx-bhWg7ZAMGI,16573
139
+ pydantic_ai/ui/_event_stream.py,sha256=icW6OEkC4y2tBP8PljzUSPqmE2rSQurNQ3F1xotI_-I,25076
140
140
  pydantic_ai/ui/_messages_builder.py,sha256=jQaKD8B8GtkDXCRb1134ufnRpv84mLgGzdZeCsFwikY,1215
141
141
  pydantic_ai/ui/ag_ui/__init__.py,sha256=CWtc_Xu-upchzJYoEgJy_0o2NnfUItT-gFbOVWDO8UE,192
142
142
  pydantic_ai/ui/ag_ui/_adapter.py,sha256=UbXbT3Iq0h-_UAIR7dcDPnomfSE2uM05O58e3PLt51I,6988
143
- pydantic_ai/ui/ag_ui/_event_stream.py,sha256=_NEZvOaVNSTBTD2hSoVUeUZ13mzzqaQQC9SrM1Tg48o,9017
144
- pydantic_ai/ui/ag_ui/app.py,sha256=YY8nnSNox4ngV7GcOZCJU6uG5FeKoObEtpkahG0cOnQ,7504
143
+ pydantic_ai/ui/ag_ui/_event_stream.py,sha256=eJEdi72207T1D4ftuG_EwHcvi2ZXXRk5bDbI0llzN4g,9348
144
+ pydantic_ai/ui/ag_ui/app.py,sha256=0reVNuSOF3vNuONjbFys8pUl0wikgJ4lIMffwzc_8so,7927
145
145
  pydantic_ai/ui/vercel_ai/__init__.py,sha256=RG6J_W7Hr89XP-GST8uRPMbxveA2EB4BmoYSuUko79s,488
146
146
  pydantic_ai/ui/vercel_ai/_adapter.py,sha256=8QWDzGuIb2paM1nivS7w8x9-a7TPM8DJ6lggKkm-nrM,8723
147
147
  pydantic_ai/ui/vercel_ai/_event_stream.py,sha256=78DXqziNDtdtxrgiilYQqCNXh3Ct62jWcCwtVsy__3U,6806
148
148
  pydantic_ai/ui/vercel_ai/_utils.py,sha256=F-2qOC8Ckp-xSwuKp4Y0_8achi8RIGWHOSs1y7diD48,441
149
149
  pydantic_ai/ui/vercel_ai/request_types.py,sha256=VQpYZJdJ2aCm2NtZPhHzBws6Qkm5aYdNcGyq-Q8IQV8,7387
150
150
  pydantic_ai/ui/vercel_ai/response_types.py,sha256=nuU41wFXOCdnlyQRPZZmV9HEOvCZVjdczlg5A8qADTY,5258
151
- pydantic_ai_slim-1.9.0.dist-info/METADATA,sha256=5_K5Te_aJ_LXYtWBp9rU3x0flq9BCvNgETslhc1x10c,5659
152
- pydantic_ai_slim-1.9.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
153
- pydantic_ai_slim-1.9.0.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
154
- pydantic_ai_slim-1.9.0.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
155
- pydantic_ai_slim-1.9.0.dist-info/RECORD,,
151
+ pydantic_ai_slim-1.12.0.dist-info/METADATA,sha256=k1Db_9mCrbBPPyeaPA4zLAD_7HxtmPUf3eytje0o5Rk,6087
152
+ pydantic_ai_slim-1.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
153
+ pydantic_ai_slim-1.12.0.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
154
+ pydantic_ai_slim-1.12.0.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
155
+ pydantic_ai_slim-1.12.0.dist-info/RECORD,,