pydantic-ai-slim 1.10.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.
- pydantic_ai/_agent_graph.py +18 -14
- pydantic_ai/_output.py +20 -105
- pydantic_ai/_run_context.py +2 -0
- pydantic_ai/_tool_manager.py +30 -11
- pydantic_ai/agent/__init__.py +34 -32
- pydantic_ai/agent/abstract.py +26 -0
- pydantic_ai/agent/wrapper.py +5 -0
- pydantic_ai/common_tools/duckduckgo.py +1 -1
- pydantic_ai/durable_exec/dbos/_agent.py +28 -0
- pydantic_ai/durable_exec/prefect/_agent.py +25 -0
- pydantic_ai/durable_exec/temporal/_agent.py +25 -0
- pydantic_ai/durable_exec/temporal/_run_context.py +2 -1
- pydantic_ai/mcp.py +4 -4
- pydantic_ai/messages.py +5 -2
- pydantic_ai/models/__init__.py +80 -35
- pydantic_ai/models/anthropic.py +27 -8
- pydantic_ai/models/bedrock.py +3 -3
- pydantic_ai/models/cohere.py +5 -3
- pydantic_ai/models/fallback.py +25 -4
- pydantic_ai/models/function.py +8 -0
- pydantic_ai/models/gemini.py +3 -3
- pydantic_ai/models/google.py +20 -10
- pydantic_ai/models/groq.py +5 -3
- pydantic_ai/models/huggingface.py +3 -3
- pydantic_ai/models/instrumented.py +29 -13
- pydantic_ai/models/mistral.py +6 -4
- pydantic_ai/models/openai.py +11 -6
- pydantic_ai/models/outlines.py +21 -12
- pydantic_ai/models/wrapper.py +1 -1
- pydantic_ai/output.py +3 -2
- pydantic_ai/profiles/openai.py +5 -2
- pydantic_ai/result.py +5 -3
- pydantic_ai/tools.py +2 -4
- {pydantic_ai_slim-1.10.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/METADATA +9 -7
- {pydantic_ai_slim-1.10.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/RECORD +38 -38
- {pydantic_ai_slim-1.10.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/WHEEL +0 -0
- {pydantic_ai_slim-1.10.0.dist-info → pydantic_ai_slim-1.12.0.dist-info}/entry_points.txt +0 -0
- {pydantic_ai_slim-1.10.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.
|
|
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.
|
|
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.
|
|
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:
|
|
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.
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
17
|
+
pydantic_ai/_tool_manager.py,sha256=PF4Na7uPaf34iAHZhx7FXbwuQq1Yp79c2AtbUR2_3-M,11078
|
|
18
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=
|
|
25
|
-
pydantic_ai/messages.py,sha256
|
|
26
|
-
pydantic_ai/output.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
35
|
-
pydantic_ai/agent/abstract.py,sha256=
|
|
36
|
-
pydantic_ai/agent/wrapper.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
55
|
+
pydantic_ai/durable_exec/temporal/_agent.py,sha256=c54CjCcniSNWQM1ztBXmW8lxULdh1UF7JTkTE1Jafvc,46018
|
|
56
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
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=
|
|
60
|
+
pydantic_ai/durable_exec/temporal/_run_context.py,sha256=GrF0IPwsaDj3Z83JMTbdgD3WZRwDfieqxyu9KfmXs5g,2660
|
|
61
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=
|
|
66
|
-
pydantic_ai/models/anthropic.py,sha256=
|
|
67
|
-
pydantic_ai/models/bedrock.py,sha256=
|
|
68
|
-
pydantic_ai/models/cohere.py,sha256
|
|
69
|
-
pydantic_ai/models/fallback.py,sha256=
|
|
70
|
-
pydantic_ai/models/function.py,sha256=
|
|
71
|
-
pydantic_ai/models/gemini.py,sha256=
|
|
72
|
-
pydantic_ai/models/google.py,sha256=
|
|
73
|
-
pydantic_ai/models/groq.py,sha256=
|
|
74
|
-
pydantic_ai/models/huggingface.py,sha256=
|
|
75
|
-
pydantic_ai/models/instrumented.py,sha256=
|
|
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=
|
|
78
|
-
pydantic_ai/models/openai.py,sha256=
|
|
79
|
-
pydantic_ai/models/outlines.py,sha256=
|
|
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=
|
|
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,7 +91,7 @@ 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=
|
|
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
97
|
pydantic_ai/providers/anthropic.py,sha256=gAxVAJYrhUhq3FEUaYy3rNxkB52EDISL4Zf5yzd5ups,3372
|
|
@@ -148,8 +148,8 @@ pydantic_ai/ui/vercel_ai/_event_stream.py,sha256=78DXqziNDtdtxrgiilYQqCNXh3Ct62j
|
|
|
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.
|
|
152
|
-
pydantic_ai_slim-1.
|
|
153
|
-
pydantic_ai_slim-1.
|
|
154
|
-
pydantic_ai_slim-1.
|
|
155
|
-
pydantic_ai_slim-1.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|