pydantic-ai-slim 1.0.2__py3-none-any.whl → 1.0.3__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/_output.py +19 -7
- pydantic_ai/_parts_manager.py +8 -10
- pydantic_ai/_tool_manager.py +18 -1
- pydantic_ai/ag_ui.py +32 -17
- pydantic_ai/agent/abstract.py +8 -0
- pydantic_ai/durable_exec/dbos/_agent.py +5 -2
- pydantic_ai/durable_exec/temporal/_agent.py +1 -1
- pydantic_ai/messages.py +30 -6
- pydantic_ai/models/anthropic.py +55 -25
- pydantic_ai/models/bedrock.py +82 -31
- pydantic_ai/models/cohere.py +39 -13
- pydantic_ai/models/function.py +8 -1
- pydantic_ai/models/google.py +62 -33
- pydantic_ai/models/groq.py +35 -7
- pydantic_ai/models/huggingface.py +27 -5
- pydantic_ai/models/mistral.py +54 -20
- pydantic_ai/models/openai.py +88 -45
- pydantic_ai/profiles/openai.py +7 -0
- pydantic_ai/providers/bedrock.py +9 -1
- pydantic_ai/settings.py +1 -0
- {pydantic_ai_slim-1.0.2.dist-info → pydantic_ai_slim-1.0.3.dist-info}/METADATA +5 -5
- {pydantic_ai_slim-1.0.2.dist-info → pydantic_ai_slim-1.0.3.dist-info}/RECORD +25 -25
- {pydantic_ai_slim-1.0.2.dist-info → pydantic_ai_slim-1.0.3.dist-info}/WHEEL +0 -0
- {pydantic_ai_slim-1.0.2.dist-info → pydantic_ai_slim-1.0.3.dist-info}/entry_points.txt +0 -0
- {pydantic_ai_slim-1.0.2.dist-info → pydantic_ai_slim-1.0.3.dist-info}/licenses/LICENSE +0 -0
pydantic_ai/profiles/openai.py
CHANGED
|
@@ -38,6 +38,9 @@ class OpenAIModelProfile(ModelProfile):
|
|
|
38
38
|
openai_system_prompt_role: OpenAISystemPromptRole | None = None
|
|
39
39
|
"""The role to use for the system prompt message. If not provided, defaults to `'system'`."""
|
|
40
40
|
|
|
41
|
+
openai_chat_supports_web_search: bool = False
|
|
42
|
+
"""Whether the model supports web search in Chat Completions API."""
|
|
43
|
+
|
|
41
44
|
def __post_init__(self): # pragma: no cover
|
|
42
45
|
if not self.openai_supports_sampling_settings:
|
|
43
46
|
warnings.warn(
|
|
@@ -50,6 +53,9 @@ class OpenAIModelProfile(ModelProfile):
|
|
|
50
53
|
def openai_model_profile(model_name: str) -> ModelProfile:
|
|
51
54
|
"""Get the model profile for an OpenAI model."""
|
|
52
55
|
is_reasoning_model = model_name.startswith('o') or model_name.startswith('gpt-5')
|
|
56
|
+
# Check if the model supports web search (only specific search-preview models)
|
|
57
|
+
supports_web_search = '-search-preview' in model_name
|
|
58
|
+
|
|
53
59
|
# Structured Outputs (output mode 'native') is only supported with the gpt-4o-mini, gpt-4o-mini-2024-07-18, and gpt-4o-2024-08-06 model snapshots and later.
|
|
54
60
|
# We leave it in here for all models because the `default_structured_output_mode` is `'tool'`, so `native` is only used
|
|
55
61
|
# when the user specifically uses the `NativeOutput` marker, so an error from the API is acceptable.
|
|
@@ -77,6 +83,7 @@ def openai_model_profile(model_name: str) -> ModelProfile:
|
|
|
77
83
|
supports_json_object_output=True,
|
|
78
84
|
openai_unsupported_model_settings=openai_unsupported_model_settings,
|
|
79
85
|
openai_system_prompt_role=openai_system_prompt_role,
|
|
86
|
+
openai_chat_supports_web_search=supports_web_search,
|
|
80
87
|
)
|
|
81
88
|
|
|
82
89
|
|
pydantic_ai/providers/bedrock.py
CHANGED
|
@@ -48,6 +48,14 @@ def bedrock_amazon_model_profile(model_name: str) -> ModelProfile | None:
|
|
|
48
48
|
return profile
|
|
49
49
|
|
|
50
50
|
|
|
51
|
+
def bedrock_deepseek_model_profile(model_name: str) -> ModelProfile | None:
|
|
52
|
+
"""Get the model profile for a DeepSeek model used via Bedrock."""
|
|
53
|
+
profile = deepseek_model_profile(model_name)
|
|
54
|
+
if 'r1' in model_name:
|
|
55
|
+
return BedrockModelProfile(bedrock_send_back_thinking_parts=True).update(profile)
|
|
56
|
+
return profile # pragma: no cover
|
|
57
|
+
|
|
58
|
+
|
|
51
59
|
class BedrockProvider(Provider[BaseClient]):
|
|
52
60
|
"""Provider for AWS Bedrock."""
|
|
53
61
|
|
|
@@ -74,7 +82,7 @@ class BedrockProvider(Provider[BaseClient]):
|
|
|
74
82
|
'cohere': cohere_model_profile,
|
|
75
83
|
'amazon': bedrock_amazon_model_profile,
|
|
76
84
|
'meta': meta_model_profile,
|
|
77
|
-
'deepseek':
|
|
85
|
+
'deepseek': bedrock_deepseek_model_profile,
|
|
78
86
|
}
|
|
79
87
|
|
|
80
88
|
# Split the model name into parts
|
pydantic_ai/settings.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pydantic-ai-slim
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
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.23
|
|
|
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.0.
|
|
36
|
+
Requires-Dist: pydantic-graph==1.0.3
|
|
37
37
|
Requires-Dist: pydantic>=2.10
|
|
38
38
|
Requires-Dist: typing-inspection>=0.4.0
|
|
39
39
|
Provides-Extra: a2a
|
|
@@ -51,13 +51,13 @@ Requires-Dist: prompt-toolkit>=3; extra == 'cli'
|
|
|
51
51
|
Requires-Dist: pyperclip>=1.9.0; extra == 'cli'
|
|
52
52
|
Requires-Dist: rich>=13; extra == 'cli'
|
|
53
53
|
Provides-Extra: cohere
|
|
54
|
-
Requires-Dist: cohere>=5.
|
|
54
|
+
Requires-Dist: cohere>=5.17.0; (platform_system != 'Emscripten') and extra == 'cohere'
|
|
55
55
|
Provides-Extra: dbos
|
|
56
56
|
Requires-Dist: dbos>=1.13.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.0.
|
|
60
|
+
Requires-Dist: pydantic-evals==1.0.3; extra == 'evals'
|
|
61
61
|
Provides-Extra: google
|
|
62
62
|
Requires-Dist: google-genai>=1.31.0; extra == 'google'
|
|
63
63
|
Provides-Extra: groq
|
|
@@ -69,7 +69,7 @@ Requires-Dist: logfire[httpx]>=3.14.1; extra == 'logfire'
|
|
|
69
69
|
Provides-Extra: mcp
|
|
70
70
|
Requires-Dist: mcp>=1.12.3; extra == 'mcp'
|
|
71
71
|
Provides-Extra: mistral
|
|
72
|
-
Requires-Dist: mistralai>=1.9.
|
|
72
|
+
Requires-Dist: mistralai>=1.9.10; extra == 'mistral'
|
|
73
73
|
Provides-Extra: openai
|
|
74
74
|
Requires-Dist: openai>=1.99.9; extra == 'openai'
|
|
75
75
|
Provides-Extra: retries
|
|
@@ -7,42 +7,42 @@ pydantic_ai/_function_schema.py,sha256=olbmUMQoQV5qKV4j0-cOnhcTINz4uYyeDqMyusrFR
|
|
|
7
7
|
pydantic_ai/_griffe.py,sha256=BphvTL00FHxsSY56GM-bNyCOdwrpL0T3LbDQITWUK_Q,5280
|
|
8
8
|
pydantic_ai/_mcp.py,sha256=PuvwnlLjv7YYOa9AZJCrklevBug99zGMhwJCBGG7BHQ,5626
|
|
9
9
|
pydantic_ai/_otel_messages.py,sha256=qLu81aBDEAsUTW6efBzWRXNDMICTrUUBpcGbCEyXr4o,1480
|
|
10
|
-
pydantic_ai/_output.py,sha256=
|
|
11
|
-
pydantic_ai/_parts_manager.py,sha256=
|
|
10
|
+
pydantic_ai/_output.py,sha256=phJ9AQYUlhQhAVikL0FpPn_Vm05V_yK3VYmCUUtH778,38296
|
|
11
|
+
pydantic_ai/_parts_manager.py,sha256=qcHBJOM-AxC5iXxt7J6NvPFUIbyPUTE_O18Jiw6uUpA,17903
|
|
12
12
|
pydantic_ai/_run_context.py,sha256=AFSTtOBbUAnPpM-V5_b5fLMVAFbEBX4oOdYsGR9ayt4,1824
|
|
13
13
|
pydantic_ai/_system_prompt.py,sha256=WdDW_DTGHujcFFaK-J7J6mA4ZDJZ0IOKpyizJA-1Y5Q,1142
|
|
14
14
|
pydantic_ai/_thinking_part.py,sha256=x80-Vkon16GOyq3W6f2qzafTVPC5dCgF7QD3k8ZMmYU,1304
|
|
15
|
-
pydantic_ai/_tool_manager.py,sha256=
|
|
15
|
+
pydantic_ai/_tool_manager.py,sha256=hB_QzVxnGEbB7ZT2UUDeKeLm_Cv0F-0oCPwInxR-8NE,10369
|
|
16
16
|
pydantic_ai/_utils.py,sha256=xa2PoAcTN-oXhfXOONOighmue-jtSv668o9Fu_IdO0A,16062
|
|
17
|
-
pydantic_ai/ag_ui.py,sha256=
|
|
17
|
+
pydantic_ai/ag_ui.py,sha256=Pp-R6XeHip1oQ6_jqV79JyE4TMQ0VOwb99pHxoGdsuU,28911
|
|
18
18
|
pydantic_ai/builtin_tools.py,sha256=t0wa6KsgDCRoZMKJKRzRDyxaz1X4mDWMHlGjQmqFLdg,3222
|
|
19
19
|
pydantic_ai/direct.py,sha256=zMsz6poVgEq7t7L_8FWM6hmKdqTzjyQYL5xzQt_59Us,14951
|
|
20
20
|
pydantic_ai/exceptions.py,sha256=zsXZMKf2BJuVsfuHl1fWTkogLU37bd4yq7D6BKHAzVs,4968
|
|
21
21
|
pydantic_ai/format_prompt.py,sha256=37imBG2Fgpn-_RfAFalOX8Xc_XpGH2gY9tnhJDvxfk8,4243
|
|
22
22
|
pydantic_ai/mcp.py,sha256=cmgi3Nq_qe1cTqs-R92WMfZw6bwjSqy2R6NiR7isPcQ,30364
|
|
23
|
-
pydantic_ai/messages.py,sha256=
|
|
23
|
+
pydantic_ai/messages.py,sha256=gP5Tzjq3TfOJZuA98kK7oOMTX7gAH6yvW7uDfQYLRIY,55787
|
|
24
24
|
pydantic_ai/output.py,sha256=wzNgVKJgxyXtSH-uNbRxIaUNLidxlQcwWYT2o1gY2hE,12037
|
|
25
25
|
pydantic_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
pydantic_ai/result.py,sha256=FrJbd0nwaRVIxGH_EhV-ITQvrrd-JaDya9EDsE5-Pps,25389
|
|
27
27
|
pydantic_ai/retries.py,sha256=QM4oDA9DG-Y2qP06fbCp8Dqq8ups40Rr4HYjAOlbNyM,14650
|
|
28
28
|
pydantic_ai/run.py,sha256=qpTu2Q2O3lvcQAZREuIpyL0vQN13AvW99SwD7Oe9hKc,15175
|
|
29
|
-
pydantic_ai/settings.py,sha256=
|
|
29
|
+
pydantic_ai/settings.py,sha256=0mr6KudxKKjTG8e3nsv_8vDLxNhu_1-WvefCOzCGSYM,3565
|
|
30
30
|
pydantic_ai/tools.py,sha256=McOPcViIGCjJzoyoipUTrttPPRMsIkbbm9ike8PaS8c,19712
|
|
31
31
|
pydantic_ai/usage.py,sha256=UoSOwhH-NTAeXl7Tq8GWXcW82m8zQLQvThvQehEx08g,14070
|
|
32
32
|
pydantic_ai/agent/__init__.py,sha256=WES-ZG7s7QQOOBIMN8fE9nXRTt_zD_M0WFsgwuz1O7c,62499
|
|
33
|
-
pydantic_ai/agent/abstract.py,sha256=
|
|
33
|
+
pydantic_ai/agent/abstract.py,sha256=h1e9cWv2N9qsXWhkJmJW-LJehZu3bFFOsfzRH6o7O84,44551
|
|
34
34
|
pydantic_ai/agent/wrapper.py,sha256=--IJo8Yb-2uzcCBSIB9oB_9FQ1R7yZYkWnLSq0iUExs,9464
|
|
35
35
|
pydantic_ai/common_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
pydantic_ai/common_tools/duckduckgo.py,sha256=cJd-BUg-i50E0QjKveRCndGlU5GdvLq9UgNNJ18VQIQ,2263
|
|
37
37
|
pydantic_ai/common_tools/tavily.py,sha256=Q1xxSF5HtXAaZ10Pp-OaDOHXwJf2mco9wScGEQXD7E4,2495
|
|
38
38
|
pydantic_ai/durable_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
pydantic_ai/durable_exec/dbos/__init__.py,sha256=H_dT0ERuNCBP0Im8eVGl8F9h7E9Aj87-pvmnLpDelF0,199
|
|
40
|
-
pydantic_ai/durable_exec/dbos/_agent.py,sha256=
|
|
40
|
+
pydantic_ai/durable_exec/dbos/_agent.py,sha256=IsGDvqQ4Jc5QPTNi9nVEKDc96b8p6SKYo80Yz9CjdhI,32499
|
|
41
41
|
pydantic_ai/durable_exec/dbos/_mcp_server.py,sha256=XeDeBnyNwonPMZaSd2IMDf3ye0CTgYO9b9Vh8ZoeT6A,3009
|
|
42
42
|
pydantic_ai/durable_exec/dbos/_model.py,sha256=XNGLKJ5a9znUWnMSIA0SzxvQmUJREWzcVDrnfdjMoac,5115
|
|
43
43
|
pydantic_ai/durable_exec/dbos/_utils.py,sha256=_aNceFvTcNeqb78sTDYM2TdYph85tbdeLueyXY1lbTA,242
|
|
44
44
|
pydantic_ai/durable_exec/temporal/__init__.py,sha256=XKwy68wfgmjr057nolRwGHTKiadxufpQEGEUprAV09k,5563
|
|
45
|
-
pydantic_ai/durable_exec/temporal/_agent.py,sha256=
|
|
45
|
+
pydantic_ai/durable_exec/temporal/_agent.py,sha256=M2i-uKxlbneHMmSgABwpB5dMzM3SEyhVRds3A-DQ-Jw,36869
|
|
46
46
|
pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=Hnfz3ukOqgq8j3h9u97S-fMfq4un1HZA4kxN2irWD_0,5562
|
|
47
47
|
pydantic_ai/durable_exec/temporal/_logfire.py,sha256=5bSiOt-jihQATJsg-jrGmEqP3RWW_Sz6c2aicjt03lI,2009
|
|
48
48
|
pydantic_ai/durable_exec/temporal/_mcp_server.py,sha256=VFvHPVhvYz-ITGaXXNyuWwB8tsdF3Hg9rs7gss8TKWY,6032
|
|
@@ -53,19 +53,19 @@ pydantic_ai/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
53
53
|
pydantic_ai/ext/aci.py,sha256=sUllKDNO-LOMurbFgxwRHuzNlBkSa3aVBqXfEm-A_vo,2545
|
|
54
54
|
pydantic_ai/ext/langchain.py,sha256=iLVEZv1kcLkdIHo3us2yfdi0kVqyJ6qTaCt9BoLWm4k,2335
|
|
55
55
|
pydantic_ai/models/__init__.py,sha256=30HXKHE_iGcAMdGfanYY_UEmyyM16bKg-PPf0jZPcbo,36091
|
|
56
|
-
pydantic_ai/models/anthropic.py,sha256=
|
|
57
|
-
pydantic_ai/models/bedrock.py,sha256=
|
|
58
|
-
pydantic_ai/models/cohere.py,sha256=
|
|
56
|
+
pydantic_ai/models/anthropic.py,sha256=3QAgeshsDQ40E_knZaxy00GmyiYM7Wz0lOVSKYhBxFU,32804
|
|
57
|
+
pydantic_ai/models/bedrock.py,sha256=79Uyi-aeee9EVksOoUd0IXORaTbwUc8AzphS2Nipo28,33437
|
|
58
|
+
pydantic_ai/models/cohere.py,sha256=Oly6wpw7Xj0z-690foknLK2z2F9ukDOjxQCGBFFJKkk,13898
|
|
59
59
|
pydantic_ai/models/fallback.py,sha256=XJ74wRxVT4dF0uewHH3is9I-zcLBK8KFIhpK3BB6mRw,5526
|
|
60
|
-
pydantic_ai/models/function.py,sha256=
|
|
60
|
+
pydantic_ai/models/function.py,sha256=9ZuRDQXChiA_S3a_M9tmmYQwlyuUEFZ20aYrnPqdTz8,14599
|
|
61
61
|
pydantic_ai/models/gemini.py,sha256=DYEaOnwGmo9FUGVkRRrydGuQwYhnO-Cq5grTurLWgb4,39376
|
|
62
|
-
pydantic_ai/models/google.py,sha256=
|
|
63
|
-
pydantic_ai/models/groq.py,sha256=
|
|
64
|
-
pydantic_ai/models/huggingface.py,sha256=
|
|
62
|
+
pydantic_ai/models/google.py,sha256=BztYqxeGO2k6uJP4Rv4QSW8oLCnmus9t7V3w0NyCqEc,34921
|
|
63
|
+
pydantic_ai/models/groq.py,sha256=G17TeyQeIAYG7hANe1LkZhj41xScB8VYum3AK7Q5KRA,26769
|
|
64
|
+
pydantic_ai/models/huggingface.py,sha256=f1tZObCJkcbiUCwNoPyuiaRaGYuj0GBFmbA8yFd-tHY,21176
|
|
65
65
|
pydantic_ai/models/instrumented.py,sha256=DCnyG7HXgV-W2EWac8oZb2A8PL8yarXeU7Rt97l4w_s,21421
|
|
66
66
|
pydantic_ai/models/mcp_sampling.py,sha256=qnLCO3CB5bNQ86SpWRA-CSSOVcCCLPwjHtcNFvW9wHs,3461
|
|
67
|
-
pydantic_ai/models/mistral.py,sha256=
|
|
68
|
-
pydantic_ai/models/openai.py,sha256=
|
|
67
|
+
pydantic_ai/models/mistral.py,sha256=FXZ7QnVJSi9j8V1z0Bz56N_WhQOjiDVYGy5tIV76KU4,33630
|
|
68
|
+
pydantic_ai/models/openai.py,sha256=GCsKTlAn1n0yqWkWqcsihhcCNPdKLbl1NlICbmmcSZg,69533
|
|
69
69
|
pydantic_ai/models/test.py,sha256=1kBwi7pSUt9_K1U-hokOilplxJWPQ3KRKH_s8bYmt_s,19969
|
|
70
70
|
pydantic_ai/models/wrapper.py,sha256=9MeHW7mXPsEK03IKL0rtjeX6QgXyZROOOzLh72GiX2k,2148
|
|
71
71
|
pydantic_ai/profiles/__init__.py,sha256=V6uGAVJuIaYRuZOQjkdIyFfDKD5py18RC98njnHOFug,3293
|
|
@@ -81,12 +81,12 @@ pydantic_ai/profiles/harmony.py,sha256=_81tOGOYGTH3Za67jjtdINvASTTM5_CTyc1Ej2KHJ
|
|
|
81
81
|
pydantic_ai/profiles/meta.py,sha256=JdZcpdRWx8PY1pU9Z2i_TYtA0Cpbg23xyFrV7eXnooY,309
|
|
82
82
|
pydantic_ai/profiles/mistral.py,sha256=ll01PmcK3szwlTfbaJLQmfd0TADN8lqjov9HpPJzCMQ,217
|
|
83
83
|
pydantic_ai/profiles/moonshotai.py,sha256=e1RJnbEvazE6aJAqfmYLYGNtwNwg52XQDRDkcLrv3fU,272
|
|
84
|
-
pydantic_ai/profiles/openai.py,sha256=
|
|
84
|
+
pydantic_ai/profiles/openai.py,sha256=aOmuA4g1bz-JHirJoEpah7tmZPYrdISMPkvh87jSb4I,9365
|
|
85
85
|
pydantic_ai/profiles/qwen.py,sha256=9SnTpMKndxNQMFyumyaOczJa5JGWbYQdpVKKW4OzKjk,749
|
|
86
86
|
pydantic_ai/providers/__init__.py,sha256=QlFpPM_kGnF_YAzwB9Dgmxx4Emp33x0bh831H_xKDXE,4478
|
|
87
87
|
pydantic_ai/providers/anthropic.py,sha256=bDFNAE4WB66Dn7YDnI3dv6yBbMmM9Kzt2kalM4Fq8WQ,3158
|
|
88
88
|
pydantic_ai/providers/azure.py,sha256=msYyeQoHATxCJkiF1N05lPSJivh-SWKK1463WF6xTK4,5823
|
|
89
|
-
pydantic_ai/providers/bedrock.py,sha256=
|
|
89
|
+
pydantic_ai/providers/bedrock.py,sha256=t4ADWFYJKxW-Al5-lOSlb4p-5YiTEOU_O7owcVSP3CU,6522
|
|
90
90
|
pydantic_ai/providers/cerebras.py,sha256=2zgsNxup_7OEPOXnbJHMYnVRDnB9UYTQnOO4wv7xnYA,3436
|
|
91
91
|
pydantic_ai/providers/cohere.py,sha256=-F0prLuI2aDtHNZakd1GlyvgFLio-fo5n6fRbyPMvro,2858
|
|
92
92
|
pydantic_ai/providers/deepseek.py,sha256=JSc7dQbB-l7_Phf61ZLb4_c1oym9fHea_h2Yq88uoL8,3032
|
|
@@ -119,8 +119,8 @@ pydantic_ai/toolsets/prefixed.py,sha256=0KwcDkW8OM36ZUsOLVP5h-Nj2tPq78L3_E2c-1Fb
|
|
|
119
119
|
pydantic_ai/toolsets/prepared.py,sha256=Zjfz6S8In6PBVxoKFN9sKPN984zO6t0awB7Lnq5KODw,1431
|
|
120
120
|
pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs75k,1637
|
|
121
121
|
pydantic_ai/toolsets/wrapper.py,sha256=KRzF1p8dncHbva8CE6Ud-IC5E_aygIHlwH5atXK55k4,1673
|
|
122
|
-
pydantic_ai_slim-1.0.
|
|
123
|
-
pydantic_ai_slim-1.0.
|
|
124
|
-
pydantic_ai_slim-1.0.
|
|
125
|
-
pydantic_ai_slim-1.0.
|
|
126
|
-
pydantic_ai_slim-1.0.
|
|
122
|
+
pydantic_ai_slim-1.0.3.dist-info/METADATA,sha256=NHnWG1OWAS7GaA51ZBBz0bV0OI3qM3Qc4LLF5BYIleA,4627
|
|
123
|
+
pydantic_ai_slim-1.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
124
|
+
pydantic_ai_slim-1.0.3.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
|
|
125
|
+
pydantic_ai_slim-1.0.3.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
|
|
126
|
+
pydantic_ai_slim-1.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|