pydantic-ai-slim 0.8.1__py3-none-any.whl → 1.0.0b1__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.

Files changed (70) hide show
  1. pydantic_ai/__init__.py +28 -2
  2. pydantic_ai/_agent_graph.py +310 -140
  3. pydantic_ai/_function_schema.py +5 -5
  4. pydantic_ai/_griffe.py +2 -1
  5. pydantic_ai/_otel_messages.py +2 -2
  6. pydantic_ai/_output.py +31 -35
  7. pydantic_ai/_parts_manager.py +4 -4
  8. pydantic_ai/_run_context.py +3 -1
  9. pydantic_ai/_system_prompt.py +2 -2
  10. pydantic_ai/_tool_manager.py +3 -22
  11. pydantic_ai/_utils.py +14 -26
  12. pydantic_ai/ag_ui.py +7 -8
  13. pydantic_ai/agent/__init__.py +70 -9
  14. pydantic_ai/agent/abstract.py +35 -4
  15. pydantic_ai/agent/wrapper.py +6 -0
  16. pydantic_ai/builtin_tools.py +2 -2
  17. pydantic_ai/common_tools/duckduckgo.py +4 -2
  18. pydantic_ai/durable_exec/temporal/__init__.py +4 -2
  19. pydantic_ai/durable_exec/temporal/_agent.py +23 -2
  20. pydantic_ai/durable_exec/temporal/_function_toolset.py +53 -6
  21. pydantic_ai/durable_exec/temporal/_logfire.py +1 -1
  22. pydantic_ai/durable_exec/temporal/_mcp_server.py +2 -1
  23. pydantic_ai/durable_exec/temporal/_model.py +2 -2
  24. pydantic_ai/durable_exec/temporal/_run_context.py +2 -1
  25. pydantic_ai/durable_exec/temporal/_toolset.py +2 -1
  26. pydantic_ai/exceptions.py +45 -2
  27. pydantic_ai/format_prompt.py +2 -2
  28. pydantic_ai/mcp.py +2 -2
  29. pydantic_ai/messages.py +73 -25
  30. pydantic_ai/models/__init__.py +5 -4
  31. pydantic_ai/models/anthropic.py +5 -5
  32. pydantic_ai/models/bedrock.py +58 -56
  33. pydantic_ai/models/cohere.py +3 -3
  34. pydantic_ai/models/fallback.py +2 -2
  35. pydantic_ai/models/function.py +25 -23
  36. pydantic_ai/models/gemini.py +9 -12
  37. pydantic_ai/models/google.py +3 -3
  38. pydantic_ai/models/groq.py +4 -4
  39. pydantic_ai/models/huggingface.py +4 -4
  40. pydantic_ai/models/instrumented.py +30 -16
  41. pydantic_ai/models/mcp_sampling.py +3 -1
  42. pydantic_ai/models/mistral.py +6 -6
  43. pydantic_ai/models/openai.py +18 -27
  44. pydantic_ai/models/test.py +24 -4
  45. pydantic_ai/output.py +27 -32
  46. pydantic_ai/profiles/__init__.py +3 -3
  47. pydantic_ai/profiles/groq.py +1 -1
  48. pydantic_ai/profiles/openai.py +25 -4
  49. pydantic_ai/providers/anthropic.py +2 -3
  50. pydantic_ai/providers/bedrock.py +3 -2
  51. pydantic_ai/result.py +144 -41
  52. pydantic_ai/retries.py +10 -29
  53. pydantic_ai/run.py +12 -5
  54. pydantic_ai/tools.py +126 -22
  55. pydantic_ai/toolsets/__init__.py +4 -1
  56. pydantic_ai/toolsets/_dynamic.py +4 -4
  57. pydantic_ai/toolsets/abstract.py +18 -2
  58. pydantic_ai/toolsets/approval_required.py +32 -0
  59. pydantic_ai/toolsets/combined.py +7 -12
  60. pydantic_ai/toolsets/{deferred.py → external.py} +11 -5
  61. pydantic_ai/toolsets/filtered.py +1 -1
  62. pydantic_ai/toolsets/function.py +13 -4
  63. pydantic_ai/toolsets/wrapper.py +2 -1
  64. pydantic_ai/usage.py +7 -5
  65. {pydantic_ai_slim-0.8.1.dist-info → pydantic_ai_slim-1.0.0b1.dist-info}/METADATA +5 -6
  66. pydantic_ai_slim-1.0.0b1.dist-info/RECORD +120 -0
  67. pydantic_ai_slim-0.8.1.dist-info/RECORD +0 -119
  68. {pydantic_ai_slim-0.8.1.dist-info → pydantic_ai_slim-1.0.0b1.dist-info}/WHEEL +0 -0
  69. {pydantic_ai_slim-0.8.1.dist-info → pydantic_ai_slim-1.0.0b1.dist-info}/entry_points.txt +0 -0
  70. {pydantic_ai_slim-0.8.1.dist-info → pydantic_ai_slim-1.0.0b1.dist-info}/licenses/LICENSE +0 -0
@@ -1,8 +1,8 @@
1
1
  from __future__ import annotations
2
2
 
3
- from collections.abc import Awaitable, Sequence
3
+ from collections.abc import Awaitable, Callable, Sequence
4
4
  from dataclasses import dataclass, replace
5
- from typing import Any, Callable, overload
5
+ from typing import Any, overload
6
6
 
7
7
  from pydantic.json_schema import GenerateJsonSchema
8
8
 
@@ -19,7 +19,7 @@ from ..tools import (
19
19
  from .abstract import AbstractToolset, ToolsetTool
20
20
 
21
21
 
22
- @dataclass
22
+ @dataclass(kw_only=True)
23
23
  class FunctionToolsetTool(ToolsetTool[AgentDepsT]):
24
24
  """A tool definition for a function toolset tool that keeps track of the function to call."""
25
25
 
@@ -40,8 +40,8 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
40
40
  def __init__(
41
41
  self,
42
42
  tools: Sequence[Tool[AgentDepsT] | ToolFuncEither[AgentDepsT, ...]] = [],
43
- max_retries: int = 1,
44
43
  *,
44
+ max_retries: int = 1,
45
45
  id: str | None = None,
46
46
  ):
47
47
  """Build a new function toolset.
@@ -80,6 +80,7 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
80
80
  require_parameter_descriptions: bool = False,
81
81
  schema_generator: type[GenerateJsonSchema] = GenerateToolJsonSchema,
82
82
  strict: bool | None = None,
83
+ requires_approval: bool = False,
83
84
  ) -> Callable[[ToolFuncEither[AgentDepsT, ToolParams]], ToolFuncEither[AgentDepsT, ToolParams]]: ...
84
85
 
85
86
  def tool(
@@ -94,6 +95,7 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
94
95
  require_parameter_descriptions: bool = False,
95
96
  schema_generator: type[GenerateJsonSchema] = GenerateToolJsonSchema,
96
97
  strict: bool | None = None,
98
+ requires_approval: bool = False,
97
99
  ) -> Any:
98
100
  """Decorator to register a tool function which takes [`RunContext`][pydantic_ai.tools.RunContext] as its first argument.
99
101
 
@@ -140,6 +142,8 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
140
142
  schema_generator: The JSON schema generator class to use for this tool. Defaults to `GenerateToolJsonSchema`.
141
143
  strict: Whether to enforce JSON schema compliance (only affects OpenAI).
142
144
  See [`ToolDefinition`][pydantic_ai.tools.ToolDefinition] for more info.
145
+ requires_approval: Whether this tool requires human-in-the-loop approval. Defaults to False.
146
+ See the [tools documentation](../tools.md#human-in-the-loop-tool-approval) for more info.
143
147
  """
144
148
 
145
149
  def tool_decorator(
@@ -156,6 +160,7 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
156
160
  require_parameter_descriptions,
157
161
  schema_generator,
158
162
  strict,
163
+ requires_approval,
159
164
  )
160
165
  return func_
161
166
 
@@ -172,6 +177,7 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
172
177
  require_parameter_descriptions: bool = False,
173
178
  schema_generator: type[GenerateJsonSchema] = GenerateToolJsonSchema,
174
179
  strict: bool | None = None,
180
+ requires_approval: bool = False,
175
181
  ) -> None:
176
182
  """Add a function as a tool to the toolset.
177
183
 
@@ -195,6 +201,8 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
195
201
  schema_generator: The JSON schema generator class to use for this tool. Defaults to `GenerateToolJsonSchema`.
196
202
  strict: Whether to enforce JSON schema compliance (only affects OpenAI).
197
203
  See [`ToolDefinition`][pydantic_ai.tools.ToolDefinition] for more info.
204
+ requires_approval: Whether this tool requires human-in-the-loop approval. Defaults to False.
205
+ See the [tools documentation](../tools.md#human-in-the-loop-tool-approval) for more info.
198
206
  """
199
207
  tool = Tool[AgentDepsT](
200
208
  func,
@@ -206,6 +214,7 @@ class FunctionToolset(AbstractToolset[AgentDepsT]):
206
214
  require_parameter_descriptions=require_parameter_descriptions,
207
215
  schema_generator=schema_generator,
208
216
  strict=strict,
217
+ requires_approval=requires_approval,
209
218
  )
210
219
  self.add_tool(tool)
211
220
 
@@ -1,7 +1,8 @@
1
1
  from __future__ import annotations
2
2
 
3
+ from collections.abc import Callable
3
4
  from dataclasses import dataclass, replace
4
- from typing import Any, Callable
5
+ from typing import Any
5
6
 
6
7
  from typing_extensions import Self
7
8
 
pydantic_ai/usage.py CHANGED
@@ -12,7 +12,7 @@ from .exceptions import UsageLimitExceeded
12
12
  __all__ = 'RequestUsage', 'RunUsage', 'Usage', 'UsageLimits'
13
13
 
14
14
 
15
- @dataclass(repr=False)
15
+ @dataclass(repr=False, kw_only=True)
16
16
  class UsageBase:
17
17
  input_tokens: int = 0
18
18
  """Number of input/prompt tokens."""
@@ -75,7 +75,7 @@ class UsageBase:
75
75
  return any(dataclasses.asdict(self).values())
76
76
 
77
77
 
78
- @dataclass(repr=False)
78
+ @dataclass(repr=False, kw_only=True)
79
79
  class RequestUsage(UsageBase):
80
80
  """LLM usage associated with a single request.
81
81
 
@@ -107,7 +107,7 @@ class RequestUsage(UsageBase):
107
107
  return new_usage
108
108
 
109
109
 
110
- @dataclass(repr=False)
110
+ @dataclass(repr=False, kw_only=True)
111
111
  class RunUsage(UsageBase):
112
112
  """LLM usage associated with an agent run.
113
113
 
@@ -122,11 +122,13 @@ class RunUsage(UsageBase):
122
122
 
123
123
  cache_write_tokens: int = 0
124
124
  """Total number of tokens written to the cache."""
125
+
125
126
  cache_read_tokens: int = 0
126
127
  """Total number of tokens read from the cache."""
127
128
 
128
129
  input_audio_tokens: int = 0
129
130
  """Total number of audio input tokens."""
131
+
130
132
  cache_audio_read_tokens: int = 0
131
133
  """Total number of audio tokens read from the cache."""
132
134
 
@@ -174,13 +176,13 @@ def _incr_usage_tokens(slf: RunUsage | RequestUsage, incr_usage: RunUsage | Requ
174
176
  slf.details[key] = slf.details.get(key, 0) + value
175
177
 
176
178
 
177
- @dataclass
179
+ @dataclass(repr=False, kw_only=True)
178
180
  @deprecated('`Usage` is deprecated, use `RunUsage` instead')
179
181
  class Usage(RunUsage):
180
182
  """Deprecated alias for `RunUsage`."""
181
183
 
182
184
 
183
- @dataclass(repr=False)
185
+ @dataclass(repr=False, kw_only=True)
184
186
  class UsageLimits:
185
187
  """Limits on model usage.
186
188
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pydantic-ai-slim
3
- Version: 0.8.1
3
+ Version: 1.0.0b1
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
@@ -21,21 +21,20 @@ Classifier: Operating System :: Unix
21
21
  Classifier: Programming Language :: Python
22
22
  Classifier: Programming Language :: Python :: 3
23
23
  Classifier: Programming Language :: Python :: 3 :: Only
24
- Classifier: Programming Language :: Python :: 3.9
25
24
  Classifier: Programming Language :: Python :: 3.10
26
25
  Classifier: Programming Language :: Python :: 3.11
27
26
  Classifier: Programming Language :: Python :: 3.12
28
27
  Classifier: Programming Language :: Python :: 3.13
29
28
  Classifier: Topic :: Internet
30
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
- Requires-Python: >=3.9
30
+ Requires-Python: >=3.10
32
31
  Requires-Dist: eval-type-backport>=0.2.0
33
32
  Requires-Dist: exceptiongroup; python_version < '3.11'
34
33
  Requires-Dist: genai-prices>=0.0.22
35
34
  Requires-Dist: griffe>=1.3.2
36
35
  Requires-Dist: httpx>=0.27
37
36
  Requires-Dist: opentelemetry-api>=1.28.0
38
- Requires-Dist: pydantic-graph==0.8.1
37
+ Requires-Dist: pydantic-graph==1.0.0b1
39
38
  Requires-Dist: pydantic>=2.10
40
39
  Requires-Dist: typing-inspection>=0.4.0
41
40
  Provides-Extra: a2a
@@ -57,7 +56,7 @@ Requires-Dist: cohere>=5.16.0; (platform_system != 'Emscripten') and extra == 'c
57
56
  Provides-Extra: duckduckgo
58
57
  Requires-Dist: ddgs>=9.0.0; extra == 'duckduckgo'
59
58
  Provides-Extra: evals
60
- Requires-Dist: pydantic-evals==0.8.1; extra == 'evals'
59
+ Requires-Dist: pydantic-evals==1.0.0b1; extra == 'evals'
61
60
  Provides-Extra: google
62
61
  Requires-Dist: google-genai>=1.31.0; extra == 'google'
63
62
  Provides-Extra: groq
@@ -65,7 +64,7 @@ Requires-Dist: groq>=0.25.0; extra == 'groq'
65
64
  Provides-Extra: huggingface
66
65
  Requires-Dist: huggingface-hub[inference]>=0.33.5; extra == 'huggingface'
67
66
  Provides-Extra: logfire
68
- Requires-Dist: logfire>=3.14.1; extra == 'logfire'
67
+ Requires-Dist: logfire[httpx]>=3.14.1; extra == 'logfire'
69
68
  Provides-Extra: mcp
70
69
  Requires-Dist: mcp>=1.12.3; (python_version >= '3.10') and extra == 'mcp'
71
70
  Provides-Extra: mistral
@@ -0,0 +1,120 @@
1
+ pydantic_ai/__init__.py,sha256=CfqGPSjKlDl5iw1L48HbELsDuzxIzBFnFnovI_GcFWA,2083
2
+ pydantic_ai/__main__.py,sha256=Q_zJU15DUA01YtlJ2mnaLCoId2YmgmreVEERGuQT-Y0,132
3
+ pydantic_ai/_a2a.py,sha256=wux52DmJQceLJwF71qxb0Uqupk3aS61m005-NmuWZIw,12164
4
+ pydantic_ai/_agent_graph.py,sha256=88yPQWAfWt0gLWbnN82KU6-qBSPvuaebYeUopyetnQ8,46708
5
+ pydantic_ai/_cli.py,sha256=C-Uvbdx9wWnNqZKHN_r8d4mGte_aIPikOkKrTPvdrN8,14057
6
+ pydantic_ai/_function_schema.py,sha256=olbmUMQoQV5qKV4j0-cOnhcTINz4uYyeDqMyusrFRtY,11234
7
+ pydantic_ai/_griffe.py,sha256=BphvTL00FHxsSY56GM-bNyCOdwrpL0T3LbDQITWUK_Q,5280
8
+ pydantic_ai/_mcp.py,sha256=PuvwnlLjv7YYOa9AZJCrklevBug99zGMhwJCBGG7BHQ,5626
9
+ pydantic_ai/_otel_messages.py,sha256=qLu81aBDEAsUTW6efBzWRXNDMICTrUUBpcGbCEyXr4o,1480
10
+ pydantic_ai/_output.py,sha256=0Oq-FFvxXdR0Ia_8LrJ1CanGOWkI5C98HfdkY8TZhik,37442
11
+ pydantic_ai/_parts_manager.py,sha256=93iz8qEiAeiaWSIKhw5R1IgM_TT7U0aCCmya_UYQnzE,17965
12
+ pydantic_ai/_run_context.py,sha256=AFSTtOBbUAnPpM-V5_b5fLMVAFbEBX4oOdYsGR9ayt4,1824
13
+ pydantic_ai/_system_prompt.py,sha256=WdDW_DTGHujcFFaK-J7J6mA4ZDJZ0IOKpyizJA-1Y5Q,1142
14
+ pydantic_ai/_thinking_part.py,sha256=x80-Vkon16GOyq3W6f2qzafTVPC5dCgF7QD3k8ZMmYU,1304
15
+ pydantic_ai/_tool_manager.py,sha256=WOpyKN6NNWGqLLxyNg0K_YEDde8b6-0rGSddfyULTFw,8826
16
+ pydantic_ai/_utils.py,sha256=xa2PoAcTN-oXhfXOONOighmue-jtSv668o9Fu_IdO0A,16062
17
+ pydantic_ai/ag_ui.py,sha256=6gPKLi2I1cE9IyFnT-0oQPkKo9W5OCxEpmrQS9yf7Pg,26492
18
+ pydantic_ai/builtin_tools.py,sha256=t0wa6KsgDCRoZMKJKRzRDyxaz1X4mDWMHlGjQmqFLdg,3222
19
+ pydantic_ai/direct.py,sha256=zMsz6poVgEq7t7L_8FWM6hmKdqTzjyQYL5xzQt_59Us,14951
20
+ pydantic_ai/exceptions.py,sha256=TiTMjarqk0NO9RfxB60rtvHTbsqV1kaa7UQjy3so8eQ,4950
21
+ pydantic_ai/format_prompt.py,sha256=37imBG2Fgpn-_RfAFalOX8Xc_XpGH2gY9tnhJDvxfk8,4243
22
+ pydantic_ai/mcp.py,sha256=R1FnePn3bjvu5atZBGwSZTzFXbbm4ScFw7uX8-QpyQ4,30655
23
+ pydantic_ai/messages.py,sha256=ODP2bBlTleWvx-arLfbr6TF_dpzb0_OG_CD5j0lZ3a4,51836
24
+ pydantic_ai/output.py,sha256=wzNgVKJgxyXtSH-uNbRxIaUNLidxlQcwWYT2o1gY2hE,12037
25
+ pydantic_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ pydantic_ai/result.py,sha256=FrJbd0nwaRVIxGH_EhV-ITQvrrd-JaDya9EDsE5-Pps,25389
27
+ pydantic_ai/retries.py,sha256=yHpeDvNX0t3daHgXlDCk7qY5DmJmkNmtJbNtgM00kpU,13463
28
+ pydantic_ai/run.py,sha256=qpTu2Q2O3lvcQAZREuIpyL0vQN13AvW99SwD7Oe9hKc,15175
29
+ pydantic_ai/settings.py,sha256=yuUZ7-GkdPB-Gbx71kSdh8dSr6gwM9gEwk84qNxPO_I,3552
30
+ pydantic_ai/tools.py,sha256=O7Xv6V3LPpgerQwVAnut3oaIVE99_E9MunWosfehhUw,19106
31
+ pydantic_ai/usage.py,sha256=l2X6JDIpuRvEj9gMdy5MSxRlJJxstqfU07o5T-15EJ8,12234
32
+ pydantic_ai/agent/__init__.py,sha256=vdeKUuAqBNmz0t-CHV4rwmnPWPWP_X4ddFeJLw7y0KE,62331
33
+ pydantic_ai/agent/abstract.py,sha256=nKDP_T0hRhi1RGVNIcAQbmQkTrwGWbTxt_Lzwfa7cPs,44291
34
+ pydantic_ai/agent/wrapper.py,sha256=--IJo8Yb-2uzcCBSIB9oB_9FQ1R7yZYkWnLSq0iUExs,9464
35
+ pydantic_ai/common_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ pydantic_ai/common_tools/duckduckgo.py,sha256=cJd-BUg-i50E0QjKveRCndGlU5GdvLq9UgNNJ18VQIQ,2263
37
+ pydantic_ai/common_tools/tavily.py,sha256=Q1xxSF5HtXAaZ10Pp-OaDOHXwJf2mco9wScGEQXD7E4,2495
38
+ pydantic_ai/durable_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ pydantic_ai/durable_exec/temporal/__init__.py,sha256=XKwy68wfgmjr057nolRwGHTKiadxufpQEGEUprAV09k,5563
40
+ pydantic_ai/durable_exec/temporal/_agent.py,sha256=ikmnIbmam9jgwVtIBHJhwnHV1xRsMTYq6LOy3ENNH2w,34269
41
+ pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=Hnfz3ukOqgq8j3h9u97S-fMfq4un1HZA4kxN2irWD_0,5562
42
+ pydantic_ai/durable_exec/temporal/_logfire.py,sha256=5bSiOt-jihQATJsg-jrGmEqP3RWW_Sz6c2aicjt03lI,2009
43
+ pydantic_ai/durable_exec/temporal/_mcp_server.py,sha256=VFvHPVhvYz-ITGaXXNyuWwB8tsdF3Hg9rs7gss8TKWY,6032
44
+ pydantic_ai/durable_exec/temporal/_model.py,sha256=cFHrk-yM65d41TPiWp5hwZEqXBNO6lNMtcU587j1b58,6765
45
+ pydantic_ai/durable_exec/temporal/_run_context.py,sha256=IMLEW4AqHklumLiRBUTW-ogJGiH_tX3nCrFrxD7CbFw,2390
46
+ pydantic_ai/durable_exec/temporal/_toolset.py,sha256=HxmQ5vut7Zd5eyrC27eNNn5_CHA_4-yJL_Pk8cKZSOs,2892
47
+ pydantic_ai/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ pydantic_ai/ext/aci.py,sha256=sUllKDNO-LOMurbFgxwRHuzNlBkSa3aVBqXfEm-A_vo,2545
49
+ pydantic_ai/ext/langchain.py,sha256=iLVEZv1kcLkdIHo3us2yfdi0kVqyJ6qTaCt9BoLWm4k,2335
50
+ pydantic_ai/models/__init__.py,sha256=6a0aV10GtVMDDAWx9m-yNx6d5412RiB3UYpY9peHEmc,35673
51
+ pydantic_ai/models/anthropic.py,sha256=FopzBRBuOOaLdO-eKSsG_GMlkawquxmXVvlyWyeZNGU,30447
52
+ pydantic_ai/models/bedrock.py,sha256=Q-Hwi98cNbRaA_-y_1B1fG0_ROm5Hby0dCfMk6Nps1E,31242
53
+ pydantic_ai/models/cohere.py,sha256=aKgpcYfIKwMfEroWxfLyzYu8ELuddF4TXv7s0LU3Pcc,13052
54
+ pydantic_ai/models/fallback.py,sha256=XJ74wRxVT4dF0uewHH3is9I-zcLBK8KFIhpK3BB6mRw,5526
55
+ pydantic_ai/models/function.py,sha256=uWGdw4sFhhmczjU44rwe6i2XFafOXAalIigWGCSivYg,14231
56
+ pydantic_ai/models/gemini.py,sha256=3juGw-1A4IP5IO7q1fIcTqPc-diLmYIDU_HFJth7GBY,39298
57
+ pydantic_ai/models/google.py,sha256=URRct-s9hhLppJyKsA7oF2AgzqNYH6napkD_BYEsm-g,31395
58
+ pydantic_ai/models/groq.py,sha256=1JsBwH4agvto3MKF5IiOUkoCUM2ho_FQWfbqxkOPSQI,21196
59
+ pydantic_ai/models/huggingface.py,sha256=sWjHTVfqOtdlOENdERkPxtGjQ8quUNepPjqlXSR7aGk,20417
60
+ pydantic_ai/models/instrumented.py,sha256=sGzQlWTxMkGHMt1G63f0XRMkURFzV_xsmpTRhLlqNRw,20509
61
+ pydantic_ai/models/mcp_sampling.py,sha256=qnLCO3CB5bNQ86SpWRA-CSSOVcCCLPwjHtcNFvW9wHs,3461
62
+ pydantic_ai/models/mistral.py,sha256=yS5pBYtFUkICwkvGN23iBbBfaBASN1DARsB6QQbBjOc,32344
63
+ pydantic_ai/models/openai.py,sha256=5DI1LdoPHkU0XHvqywavJswHiJd1k9B-JPfadiSJhGQ,64674
64
+ pydantic_ai/models/test.py,sha256=1kBwi7pSUt9_K1U-hokOilplxJWPQ3KRKH_s8bYmt_s,19969
65
+ pydantic_ai/models/wrapper.py,sha256=9MeHW7mXPsEK03IKL0rtjeX6QgXyZROOOzLh72GiX2k,2148
66
+ pydantic_ai/profiles/__init__.py,sha256=V6uGAVJuIaYRuZOQjkdIyFfDKD5py18RC98njnHOFug,3293
67
+ pydantic_ai/profiles/_json_schema.py,sha256=CthOGmPSjgEZRRglfvg31zyQ9vjHDdacXoFpmba93dE,7206
68
+ pydantic_ai/profiles/amazon.py,sha256=IPa2wydpcbFLLvhDK35-pwwoKo0Pg4vP84823fHx0zc,314
69
+ pydantic_ai/profiles/anthropic.py,sha256=J9N46G8eOjHdQ5CwZSLiwGdPb0eeIMdsMjwosDpvNhI,275
70
+ pydantic_ai/profiles/cohere.py,sha256=lcL34Ht1jZopwuqoU6OV9l8vN4zwF-jiPjlsEABbSRo,215
71
+ pydantic_ai/profiles/deepseek.py,sha256=JDwfkr-0YovlB3jEKk7dNFvepxNf_YuLgLkGCtyXHSk,282
72
+ pydantic_ai/profiles/google.py,sha256=cd5zwtx0MU1Xwm8c-oqi2_OJ2-PMJ8Vy23mxvSJF7ik,4856
73
+ pydantic_ai/profiles/grok.py,sha256=nBOxOCYCK9aiLmz2Q-esqYhotNbbBC1boAoOYIk1tVw,211
74
+ pydantic_ai/profiles/groq.py,sha256=jD_vG6M5q_uwLmJgkPavWWhGCqo3HvT_4UYfwzC1BMU,682
75
+ pydantic_ai/profiles/harmony.py,sha256=_81tOGOYGTH3Za67jjtdINvASTTM5_CTyc1Ej2KHJQw,500
76
+ pydantic_ai/profiles/meta.py,sha256=JdZcpdRWx8PY1pU9Z2i_TYtA0Cpbg23xyFrV7eXnooY,309
77
+ pydantic_ai/profiles/mistral.py,sha256=ll01PmcK3szwlTfbaJLQmfd0TADN8lqjov9HpPJzCMQ,217
78
+ pydantic_ai/profiles/moonshotai.py,sha256=e1RJnbEvazE6aJAqfmYLYGNtwNwg52XQDRDkcLrv3fU,272
79
+ pydantic_ai/profiles/openai.py,sha256=4w-xzTfn6PKQwmT-Cc13Wit9UcYGapo6eD1q8LgUHRU,9038
80
+ pydantic_ai/profiles/qwen.py,sha256=9SnTpMKndxNQMFyumyaOczJa5JGWbYQdpVKKW4OzKjk,749
81
+ pydantic_ai/providers/__init__.py,sha256=vjXQTkGoZh1z_fsbP-K_VMKASnkL6Z4W93r4c6yD6f0,4369
82
+ pydantic_ai/providers/anthropic.py,sha256=bDFNAE4WB66Dn7YDnI3dv6yBbMmM9Kzt2kalM4Fq8WQ,3158
83
+ pydantic_ai/providers/azure.py,sha256=msYyeQoHATxCJkiF1N05lPSJivh-SWKK1463WF6xTK4,5823
84
+ pydantic_ai/providers/bedrock.py,sha256=nN5CQ0XOQHp8FSlS7KCjn-p1hYcx0zVeLcMu_tAbvz8,5825
85
+ pydantic_ai/providers/cerebras.py,sha256=2zgsNxup_7OEPOXnbJHMYnVRDnB9UYTQnOO4wv7xnYA,3436
86
+ pydantic_ai/providers/cohere.py,sha256=-F0prLuI2aDtHNZakd1GlyvgFLio-fo5n6fRbyPMvro,2858
87
+ pydantic_ai/providers/deepseek.py,sha256=JSc7dQbB-l7_Phf61ZLb4_c1oym9fHea_h2Yq88uoL8,3032
88
+ pydantic_ai/providers/fireworks.py,sha256=-jMRxbt353nENdpxuDpC4zJZ9wlJBcWa4wdcUk4cXKo,3594
89
+ pydantic_ai/providers/github.py,sha256=Mp6-piXuRe5R0Iu4p0N06aIZgX7rJe5KRzCjt9E4OK4,4378
90
+ pydantic_ai/providers/google.py,sha256=iLXcKUl5r7wdLuZtT1IM3obGZi7ecLM_PDyWdQKDncI,6038
91
+ pydantic_ai/providers/google_gla.py,sha256=dLkDxps5gEtxsQiDbs1e88lXLYeX4i2qnJtDiFFJ0Ng,1965
92
+ pydantic_ai/providers/google_vertex.py,sha256=9wJGctzQTEtmTTr3KCFAubDREMQJ4zOXt9k52F8R8Zs,9739
93
+ pydantic_ai/providers/grok.py,sha256=s9Y_iYkYCBc7UbP2ppGOUdAP_04xrkmPBHq3q3Qr9eE,3109
94
+ pydantic_ai/providers/groq.py,sha256=y3D76uOrT6V2yrZAt9STNjV2QJgXYDE5kZiNrSuJcPk,4027
95
+ pydantic_ai/providers/heroku.py,sha256=wA36vh0ldpdaj33FPtfo4roY_MhaCqErjLyGtcbC6Xs,2958
96
+ pydantic_ai/providers/huggingface.py,sha256=MLAv-Z99Kii5Faolq97_0Ir1LUKH9CwRmJFaI5RvwW4,4914
97
+ pydantic_ai/providers/mistral.py,sha256=ZxfOQNB2RADtHeGLQrhxHwq6cXpBi3LMgIUa_9wXoug,3088
98
+ pydantic_ai/providers/moonshotai.py,sha256=LwasmxCZCPkq1pb1uDtZTEb_nE55bAtX3QXgLmuNlHE,3260
99
+ pydantic_ai/providers/ollama.py,sha256=_bxons0p8g0RSPNV8iq3AScVS1ym27QTW4zhDqSakgY,4633
100
+ pydantic_ai/providers/openai.py,sha256=xCpR2c7QnYQukiJJKiFTSaGSewPFht7ekTasJDjSimA,3071
101
+ pydantic_ai/providers/openrouter.py,sha256=PXGgHPtlQQHKFaSnmiswWZ3dTvmT9PAg-NvfRYGjrPw,4154
102
+ pydantic_ai/providers/together.py,sha256=Dln_NgCul1XVOQtNaYvqWrNjOWj9XzA8n4NwNMKkbLk,3450
103
+ pydantic_ai/providers/vercel.py,sha256=Q7pPvzaoh7Uiqq7CD8TxaWnXnXRKYgWJRwQXSYm0ZKQ,4257
104
+ pydantic_ai/toolsets/__init__.py,sha256=lYwnxjSqxY6rIYYDTDctyWPckDwnRX_9orvqY2Ap2B8,806
105
+ pydantic_ai/toolsets/_dynamic.py,sha256=ETAtKW2A_aFjSIPO3pRIZNKH54qNfHQB7WtmEjWqHzc,2939
106
+ pydantic_ai/toolsets/abstract.py,sha256=CXsDF37JkBWcy9hwrgdBe4gqgocNcPKOFEIvQ7t9Ysk,7751
107
+ pydantic_ai/toolsets/approval_required.py,sha256=zyYGEx2VqprLed16OXg1QWr81rnAB0CmAzTeyQJ9A4o,1100
108
+ pydantic_ai/toolsets/combined.py,sha256=rDV_BZA_nA-KavKQRNVr8UeyBgl722Ler4DgJ071eus,4026
109
+ pydantic_ai/toolsets/external.py,sha256=J9mWQm1HLbRCOJwpLBIvUZZGR_ywSB7pz8MrXkRNBoU,1736
110
+ pydantic_ai/toolsets/filtered.py,sha256=PSQG9EbBYJpHUEBb_4TGzhjAcQPo5aPKvTuReeoWYtQ,864
111
+ pydantic_ai/toolsets/function.py,sha256=UaOKde9oSgsAD9deKmsXAgFUjP0NLtszwB7dWBR4vP8,11256
112
+ pydantic_ai/toolsets/prefixed.py,sha256=0KwcDkW8OM36ZUsOLVP5h-Nj2tPq78L3_E2c-1Fbh5s,1426
113
+ pydantic_ai/toolsets/prepared.py,sha256=Zjfz6S8In6PBVxoKFN9sKPN984zO6t0awB7Lnq5KODw,1431
114
+ pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs75k,1637
115
+ pydantic_ai/toolsets/wrapper.py,sha256=KRzF1p8dncHbva8CE6Ud-IC5E_aygIHlwH5atXK55k4,1673
116
+ pydantic_ai_slim-1.0.0b1.dist-info/METADATA,sha256=GiZKoqdpAp_yp27ubFmzx_Xy_2ofztmGk-zblcwLVm8,4625
117
+ pydantic_ai_slim-1.0.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
118
+ pydantic_ai_slim-1.0.0b1.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
119
+ pydantic_ai_slim-1.0.0b1.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
120
+ pydantic_ai_slim-1.0.0b1.dist-info/RECORD,,
@@ -1,119 +0,0 @@
1
- pydantic_ai/__init__.py,sha256=i_AteC7yah1Z55PO7JNa3po2-mC10RoefDG-N6Vp4CQ,1516
2
- pydantic_ai/__main__.py,sha256=Q_zJU15DUA01YtlJ2mnaLCoId2YmgmreVEERGuQT-Y0,132
3
- pydantic_ai/_a2a.py,sha256=wux52DmJQceLJwF71qxb0Uqupk3aS61m005-NmuWZIw,12164
4
- pydantic_ai/_agent_graph.py,sha256=W6bdFC_LtROBkU7ZpWqWL-sTSKD17tYyeBI9nWzVL5k,38484
5
- pydantic_ai/_cli.py,sha256=C-Uvbdx9wWnNqZKHN_r8d4mGte_aIPikOkKrTPvdrN8,14057
6
- pydantic_ai/_function_schema.py,sha256=YFHxb6bKfhgeY6rNdbuYXgndGCDanveUx2258xkSNlQ,11233
7
- pydantic_ai/_griffe.py,sha256=Ugft16ZHw9CN_6-lW0Svn6jESK9zHXO_x4utkGBkbBI,5253
8
- pydantic_ai/_mcp.py,sha256=PuvwnlLjv7YYOa9AZJCrklevBug99zGMhwJCBGG7BHQ,5626
9
- pydantic_ai/_otel_messages.py,sha256=C_t8Jj0tlbYPGS_Wuf5eSw_7n3SwDsFfLQjLl9hM_bk,1480
10
- pydantic_ai/_output.py,sha256=6Vxlw8F9nRWCkjy4qvFF8tmDi2xZn7Dq72T6s4C5kAM,37640
11
- pydantic_ai/_parts_manager.py,sha256=zrra5yDpAX8cFB_eK0btAp9d6NAR979V1Rmepm83l1w,17980
12
- pydantic_ai/_run_context.py,sha256=uSjR0a9QJ7KifqJsu7buGpK4wqexO7ldZMzWsBOboDI,1697
13
- pydantic_ai/_system_prompt.py,sha256=lUSq-gDZjlYTGtd6BUm54yEvTIvgdwBmJ8mLsNZZtYU,1142
14
- pydantic_ai/_thinking_part.py,sha256=x80-Vkon16GOyq3W6f2qzafTVPC5dCgF7QD3k8ZMmYU,1304
15
- pydantic_ai/_tool_manager.py,sha256=WPMXgHBzyn7UgRKIuqU-oV2GpsAOW0nF2RsxPCKOp7U,9655
16
- pydantic_ai/_utils.py,sha256=Ge9rtu8NJvsfSFjx1MduITPr0-9b_I0emDFSpwJbYes,16372
17
- pydantic_ai/ag_ui.py,sha256=v9icCyqVCGOKjIAODIyfRbNWn7WZEw5t-dQsTgsXbNE,26491
18
- pydantic_ai/builtin_tools.py,sha256=Fr9PF5RDdi5xQzKj7VJ8iDulbNgvF0yBdCC8E6F38Vo,3194
19
- pydantic_ai/direct.py,sha256=zMsz6poVgEq7t7L_8FWM6hmKdqTzjyQYL5xzQt_59Us,14951
20
- pydantic_ai/exceptions.py,sha256=vHRH_b6JpMi5p5EGhz2O4FSeKGJv3WMD291Y1FjHYFc,3528
21
- pydantic_ai/format_prompt.py,sha256=Or-Ytq55RQb1UJqy2HKIyPpZ-knWXfdDP3Z6tNc6Orw,4244
22
- pydantic_ai/mcp.py,sha256=agK5zM8swQ-39G7d6s4xHGHLr_mDcnTQSYkDhIcVuB0,30655
23
- pydantic_ai/messages.py,sha256=dZdnvFBWwTs4qYP6uLCrdcT_vuq3GOZ3mp72zPZN634,51609
24
- pydantic_ai/output.py,sha256=54Cwd1RruXlA5hucZ1h-SxFrzKHJuLvYvLtH9iyg2GI,11988
25
- pydantic_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- pydantic_ai/result.py,sha256=zNOH5iOEtc61vyAOTnfxt8JWzqy5pEl37IMruOjNxPw,20845
27
- pydantic_ai/retries.py,sha256=Y45-pdIb7Fn28J8lYF4ZVxipCtnofL_NzSXxIw5rS54,14796
28
- pydantic_ai/run.py,sha256=acyyTDH8qP1W-gbUA8TBBcOqte-7ICyoelJRjO_ojeo,14879
29
- pydantic_ai/settings.py,sha256=yuUZ7-GkdPB-Gbx71kSdh8dSr6gwM9gEwk84qNxPO_I,3552
30
- pydantic_ai/tools.py,sha256=HzwxH7H-TVCRmGF8PnKIQe1zlElorDFD2o_qrWrmyDc,15006
31
- pydantic_ai/usage.py,sha256=7A9GkTo9SohQtd54OzL3sl3oix4s634kDEdWsHI4wlA,12150
32
- pydantic_ai/agent/__init__.py,sha256=68jmjiLV_OVQutpWg2kIWbVzLrJm0b_ONYnVBv2e3dY,59497
33
- pydantic_ai/agent/abstract.py,sha256=QPM5h6RRY6jvNhTC7myewvSrqKieOBJSYIE_jX5AiW4,42203
34
- pydantic_ai/agent/wrapper.py,sha256=sE_9rA1PNF5v0qAMhRYw0W8bIhLT4RP17S3TSLz0k5w,9084
35
- pydantic_ai/common_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- pydantic_ai/common_tools/duckduckgo.py,sha256=aQsm7zKuoRNgPM8ltbdyj8dPkREEkQenimsf_laF6kc,2245
37
- pydantic_ai/common_tools/tavily.py,sha256=Q1xxSF5HtXAaZ10Pp-OaDOHXwJf2mco9wScGEQXD7E4,2495
38
- pydantic_ai/durable_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- pydantic_ai/durable_exec/temporal/__init__.py,sha256=6a3mMr0E3YnVevOHo6P_SxHm3hcwxf9TPh8x73Y29SE,5494
40
- pydantic_ai/durable_exec/temporal/_agent.py,sha256=H1oHoZC9wOuAN79LG7Qb3DNtK2XFCLXB-6NRLv97dTI,32820
41
- pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=81QpjZivf4lez9L0Y858RQFTepEYhzNoLL0oLvu05F8,4229
42
- pydantic_ai/durable_exec/temporal/_logfire.py,sha256=mANSZMZktOUIRDH7NnZ98sf5A2q7wf5wAVYI9t_Bprc,2000
43
- pydantic_ai/durable_exec/temporal/_mcp_server.py,sha256=J7CC4gRDhM4uQo3_kNKV7e4uiWC0He0AgS7bdq9Pt4o,6005
44
- pydantic_ai/durable_exec/temporal/_model.py,sha256=hHanoDWEi6FgSvFJ7HUJaAzE0aEFAj0VZ2sb0wQ-3EY,6765
45
- pydantic_ai/durable_exec/temporal/_run_context.py,sha256=5NTomzWBAlFcXeVw-4mqa76Rmrc8b3G1bB5ElVsAyCY,2310
46
- pydantic_ai/durable_exec/temporal/_toolset.py,sha256=XlQx7NGSKR9n-mjNWaTn-i3HW9X4z5fZUAM9DwDTBwY,2865
47
- pydantic_ai/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- pydantic_ai/ext/aci.py,sha256=sUllKDNO-LOMurbFgxwRHuzNlBkSa3aVBqXfEm-A_vo,2545
49
- pydantic_ai/ext/langchain.py,sha256=iLVEZv1kcLkdIHo3us2yfdi0kVqyJ6qTaCt9BoLWm4k,2335
50
- pydantic_ai/models/__init__.py,sha256=09F2gK9DCk4wySTevt1aSa3U0GLs7ocfAUH9jRsrAsY,35671
51
- pydantic_ai/models/anthropic.py,sha256=YxP38YbhUOtip7esdoX7tGG0D51qT_q3CalXg_wv4TA,30456
52
- pydantic_ai/models/bedrock.py,sha256=hbVWjTXhML6bUJu3OsvVn8U9Wi7uezVfedUAEEzhynY,31011
53
- pydantic_ai/models/cohere.py,sha256=WosAOwDbxpeVpIX4swmaxL5XgfcfHwkoekt4UqVeNUQ,13066
54
- pydantic_ai/models/fallback.py,sha256=ftcYhl0oSOer0vYbLkaf7dfgI_3h0hk7hp07i1Wh9rI,5526
55
- pydantic_ai/models/function.py,sha256=jSr55QtW1fFxoXNK3EgrmuCcaG0U6uh6q56q8hrI_To,14248
56
- pydantic_ai/models/gemini.py,sha256=1Bqi6FhGmwB9tOObgqnGKpk7_FGIkqc8Bp9aCr6HrLg,39370
57
- pydantic_ai/models/google.py,sha256=um7JAscB20A9VBVfXM3lffnBFmhuVBhV7y5pKrCal4Q,31409
58
- pydantic_ai/models/groq.py,sha256=k4MR8Yb-ItOUFf5KOi7v50dITKjj8TChkq3PjDu_Z9U,21203
59
- pydantic_ai/models/huggingface.py,sha256=LG1OgYZfbmDJ-t4QBOwvEM0JmkCpMWf4rPmXQFNfchE,20425
60
- pydantic_ai/models/instrumented.py,sha256=T-dX-4rifvVzrgZnj__U-7QLLHASffOGHXvFjjX3jyo,19803
61
- pydantic_ai/models/mcp_sampling.py,sha256=iXIjwTP5Jszn0Iz-5MZiCk_BdUYE7IAxCnC5yIrGIu0,3436
62
- pydantic_ai/models/mistral.py,sha256=tTCqbw1_d-HYUCnBGXEeQcd9mhkZqpN4_rf9WgmKkWA,32431
63
- pydantic_ai/models/openai.py,sha256=Hx0bZHWhChhBliS3cJY11g2zmTbxzvXItKEZv63R3yE,64995
64
- pydantic_ai/models/test.py,sha256=7D1l21iI5Kwp9Stdhdd-M8V_1PeofaffETKvB_SHV3Q,19277
65
- pydantic_ai/models/wrapper.py,sha256=9MeHW7mXPsEK03IKL0rtjeX6QgXyZROOOzLh72GiX2k,2148
66
- pydantic_ai/profiles/__init__.py,sha256=8QA7muFffSBM_ixLtMLytiejJJcEWgB2kdkyt5dRai8,3289
67
- pydantic_ai/profiles/_json_schema.py,sha256=CthOGmPSjgEZRRglfvg31zyQ9vjHDdacXoFpmba93dE,7206
68
- pydantic_ai/profiles/amazon.py,sha256=IPa2wydpcbFLLvhDK35-pwwoKo0Pg4vP84823fHx0zc,314
69
- pydantic_ai/profiles/anthropic.py,sha256=J9N46G8eOjHdQ5CwZSLiwGdPb0eeIMdsMjwosDpvNhI,275
70
- pydantic_ai/profiles/cohere.py,sha256=lcL34Ht1jZopwuqoU6OV9l8vN4zwF-jiPjlsEABbSRo,215
71
- pydantic_ai/profiles/deepseek.py,sha256=JDwfkr-0YovlB3jEKk7dNFvepxNf_YuLgLkGCtyXHSk,282
72
- pydantic_ai/profiles/google.py,sha256=cd5zwtx0MU1Xwm8c-oqi2_OJ2-PMJ8Vy23mxvSJF7ik,4856
73
- pydantic_ai/profiles/grok.py,sha256=nBOxOCYCK9aiLmz2Q-esqYhotNbbBC1boAoOYIk1tVw,211
74
- pydantic_ai/profiles/groq.py,sha256=5jLNnOuxq3HTrbY-cizJyGa1hIluW7sCPLmDP1C1unc,668
75
- pydantic_ai/profiles/harmony.py,sha256=_81tOGOYGTH3Za67jjtdINvASTTM5_CTyc1Ej2KHJQw,500
76
- pydantic_ai/profiles/meta.py,sha256=JdZcpdRWx8PY1pU9Z2i_TYtA0Cpbg23xyFrV7eXnooY,309
77
- pydantic_ai/profiles/mistral.py,sha256=ll01PmcK3szwlTfbaJLQmfd0TADN8lqjov9HpPJzCMQ,217
78
- pydantic_ai/profiles/moonshotai.py,sha256=e1RJnbEvazE6aJAqfmYLYGNtwNwg52XQDRDkcLrv3fU,272
79
- pydantic_ai/profiles/openai.py,sha256=m_kfAddcV4EX6PA4aU_k34NrHXoran8n4c7QYHqyXco,8371
80
- pydantic_ai/profiles/qwen.py,sha256=9SnTpMKndxNQMFyumyaOczJa5JGWbYQdpVKKW4OzKjk,749
81
- pydantic_ai/providers/__init__.py,sha256=vjXQTkGoZh1z_fsbP-K_VMKASnkL6Z4W93r4c6yD6f0,4369
82
- pydantic_ai/providers/anthropic.py,sha256=i9Y7hAHWPTcPUsmRSxtD7QtNrEk5n3uvEtCkYWyipJ4,3200
83
- pydantic_ai/providers/azure.py,sha256=msYyeQoHATxCJkiF1N05lPSJivh-SWKK1463WF6xTK4,5823
84
- pydantic_ai/providers/bedrock.py,sha256=8jz77ySKv6CzCktN9YbZb1736gZM0d_btcKvXiZSSHI,5784
85
- pydantic_ai/providers/cerebras.py,sha256=2zgsNxup_7OEPOXnbJHMYnVRDnB9UYTQnOO4wv7xnYA,3436
86
- pydantic_ai/providers/cohere.py,sha256=-F0prLuI2aDtHNZakd1GlyvgFLio-fo5n6fRbyPMvro,2858
87
- pydantic_ai/providers/deepseek.py,sha256=JSc7dQbB-l7_Phf61ZLb4_c1oym9fHea_h2Yq88uoL8,3032
88
- pydantic_ai/providers/fireworks.py,sha256=-jMRxbt353nENdpxuDpC4zJZ9wlJBcWa4wdcUk4cXKo,3594
89
- pydantic_ai/providers/github.py,sha256=Mp6-piXuRe5R0Iu4p0N06aIZgX7rJe5KRzCjt9E4OK4,4378
90
- pydantic_ai/providers/google.py,sha256=iLXcKUl5r7wdLuZtT1IM3obGZi7ecLM_PDyWdQKDncI,6038
91
- pydantic_ai/providers/google_gla.py,sha256=dLkDxps5gEtxsQiDbs1e88lXLYeX4i2qnJtDiFFJ0Ng,1965
92
- pydantic_ai/providers/google_vertex.py,sha256=9wJGctzQTEtmTTr3KCFAubDREMQJ4zOXt9k52F8R8Zs,9739
93
- pydantic_ai/providers/grok.py,sha256=s9Y_iYkYCBc7UbP2ppGOUdAP_04xrkmPBHq3q3Qr9eE,3109
94
- pydantic_ai/providers/groq.py,sha256=y3D76uOrT6V2yrZAt9STNjV2QJgXYDE5kZiNrSuJcPk,4027
95
- pydantic_ai/providers/heroku.py,sha256=wA36vh0ldpdaj33FPtfo4roY_MhaCqErjLyGtcbC6Xs,2958
96
- pydantic_ai/providers/huggingface.py,sha256=MLAv-Z99Kii5Faolq97_0Ir1LUKH9CwRmJFaI5RvwW4,4914
97
- pydantic_ai/providers/mistral.py,sha256=ZxfOQNB2RADtHeGLQrhxHwq6cXpBi3LMgIUa_9wXoug,3088
98
- pydantic_ai/providers/moonshotai.py,sha256=LwasmxCZCPkq1pb1uDtZTEb_nE55bAtX3QXgLmuNlHE,3260
99
- pydantic_ai/providers/ollama.py,sha256=_bxons0p8g0RSPNV8iq3AScVS1ym27QTW4zhDqSakgY,4633
100
- pydantic_ai/providers/openai.py,sha256=xCpR2c7QnYQukiJJKiFTSaGSewPFht7ekTasJDjSimA,3071
101
- pydantic_ai/providers/openrouter.py,sha256=PXGgHPtlQQHKFaSnmiswWZ3dTvmT9PAg-NvfRYGjrPw,4154
102
- pydantic_ai/providers/together.py,sha256=Dln_NgCul1XVOQtNaYvqWrNjOWj9XzA8n4NwNMKkbLk,3450
103
- pydantic_ai/providers/vercel.py,sha256=Q7pPvzaoh7Uiqq7CD8TxaWnXnXRKYgWJRwQXSYm0ZKQ,4257
104
- pydantic_ai/toolsets/__init__.py,sha256=btvEfRHUzW8E6HiWP-AUKc0xBvIEigW6qWqVfnN11Ag,643
105
- pydantic_ai/toolsets/_dynamic.py,sha256=EdhClHnmxEy3bdGdVrzg4TLGlYrK3m8VIqWxzGdIXew,2957
106
- pydantic_ai/toolsets/abstract.py,sha256=jYgDcgnuWfMAgcjqripJQOlxWf2O7R-rAfsZUcC1MoI,7061
107
- pydantic_ai/toolsets/combined.py,sha256=QmzU7jA98hnbddMOqvwuu2vUZoaPspu37-W0-hlQ-lw,4122
108
- pydantic_ai/toolsets/deferred.py,sha256=Bm2ZthtjpmeZqlH57zFJc9z7n_xYtZgjX5hog36Qm9U,1654
109
- pydantic_ai/toolsets/filtered.py,sha256=qmPeQDTZoWa_yyk6VXKHcpV9NFgdnLN48sBf7WItjBs,855
110
- pydantic_ai/toolsets/function.py,sha256=KKmHMljuV8YdaIDtHEs6xmyiUl-kaqTiQQGYtoWEfEs,10613
111
- pydantic_ai/toolsets/prefixed.py,sha256=0KwcDkW8OM36ZUsOLVP5h-Nj2tPq78L3_E2c-1Fbh5s,1426
112
- pydantic_ai/toolsets/prepared.py,sha256=Zjfz6S8In6PBVxoKFN9sKPN984zO6t0awB7Lnq5KODw,1431
113
- pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs75k,1637
114
- pydantic_ai/toolsets/wrapper.py,sha256=mMuMPdko9PJUdcsexlRXbwViSwKKJfv6JE58d8HK3ds,1646
115
- pydantic_ai_slim-0.8.1.dist-info/METADATA,sha256=XmNPRJlIuhjg6KIMGuDiNRJ2jKzxNYkBgyYspA9a-8c,4661
116
- pydantic_ai_slim-0.8.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
117
- pydantic_ai_slim-0.8.1.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
118
- pydantic_ai_slim-0.8.1.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
119
- pydantic_ai_slim-0.8.1.dist-info/RECORD,,