pydantic-ai-slim 1.9.1__py3-none-any.whl → 1.11.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.
Potentially problematic release.
This version of pydantic-ai-slim might be problematic. Click here for more details.
- pydantic_ai/_run_context.py +8 -2
- pydantic_ai/_tool_manager.py +1 -0
- pydantic_ai/_utils.py +18 -0
- pydantic_ai/agent/__init__.py +13 -3
- pydantic_ai/agent/abstract.py +155 -3
- pydantic_ai/agent/wrapper.py +5 -0
- 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/_function_toolset.py +23 -73
- pydantic_ai/durable_exec/temporal/_mcp_server.py +30 -30
- pydantic_ai/durable_exec/temporal/_run_context.py +9 -3
- pydantic_ai/durable_exec/temporal/_toolset.py +67 -3
- pydantic_ai/messages.py +10 -1
- pydantic_ai/models/openai.py +4 -0
- pydantic_ai/profiles/openai.py +5 -2
- pydantic_ai/providers/openrouter.py +3 -0
- pydantic_ai/result.py +159 -4
- pydantic_ai/tools.py +10 -6
- pydantic_ai/ui/_event_stream.py +4 -4
- pydantic_ai/ui/ag_ui/_event_stream.py +11 -2
- {pydantic_ai_slim-1.9.1.dist-info → pydantic_ai_slim-1.11.0.dist-info}/METADATA +8 -6
- {pydantic_ai_slim-1.9.1.dist-info → pydantic_ai_slim-1.11.0.dist-info}/RECORD +26 -26
- {pydantic_ai_slim-1.9.1.dist-info → pydantic_ai_slim-1.11.0.dist-info}/WHEEL +0 -0
- {pydantic_ai_slim-1.9.1.dist-info → pydantic_ai_slim-1.11.0.dist-info}/entry_points.txt +0 -0
- {pydantic_ai_slim-1.9.1.dist-info → pydantic_ai_slim-1.11.0.dist-info}/licenses/LICENSE +0 -0
pydantic_ai/tools.py
CHANGED
|
@@ -240,16 +240,20 @@ class GenerateToolJsonSchema(GenerateJsonSchema):
|
|
|
240
240
|
return s
|
|
241
241
|
|
|
242
242
|
|
|
243
|
+
ToolAgentDepsT = TypeVar('ToolAgentDepsT', default=object, contravariant=True)
|
|
244
|
+
"""Type variable for agent dependencies for a tool."""
|
|
245
|
+
|
|
246
|
+
|
|
243
247
|
@dataclass(init=False)
|
|
244
|
-
class Tool(Generic[
|
|
248
|
+
class Tool(Generic[ToolAgentDepsT]):
|
|
245
249
|
"""A tool function for an agent."""
|
|
246
250
|
|
|
247
|
-
function: ToolFuncEither[
|
|
251
|
+
function: ToolFuncEither[ToolAgentDepsT]
|
|
248
252
|
takes_ctx: bool
|
|
249
253
|
max_retries: int | None
|
|
250
254
|
name: str
|
|
251
255
|
description: str | None
|
|
252
|
-
prepare: ToolPrepareFunc[
|
|
256
|
+
prepare: ToolPrepareFunc[ToolAgentDepsT] | None
|
|
253
257
|
docstring_format: DocstringFormat
|
|
254
258
|
require_parameter_descriptions: bool
|
|
255
259
|
strict: bool | None
|
|
@@ -265,13 +269,13 @@ class Tool(Generic[AgentDepsT]):
|
|
|
265
269
|
|
|
266
270
|
def __init__(
|
|
267
271
|
self,
|
|
268
|
-
function: ToolFuncEither[
|
|
272
|
+
function: ToolFuncEither[ToolAgentDepsT],
|
|
269
273
|
*,
|
|
270
274
|
takes_ctx: bool | None = None,
|
|
271
275
|
max_retries: int | None = None,
|
|
272
276
|
name: str | None = None,
|
|
273
277
|
description: str | None = None,
|
|
274
|
-
prepare: ToolPrepareFunc[
|
|
278
|
+
prepare: ToolPrepareFunc[ToolAgentDepsT] | None = None,
|
|
275
279
|
docstring_format: DocstringFormat = 'auto',
|
|
276
280
|
require_parameter_descriptions: bool = False,
|
|
277
281
|
schema_generator: type[GenerateJsonSchema] = GenerateToolJsonSchema,
|
|
@@ -413,7 +417,7 @@ class Tool(Generic[AgentDepsT]):
|
|
|
413
417
|
metadata=self.metadata,
|
|
414
418
|
)
|
|
415
419
|
|
|
416
|
-
async def prepare_tool_def(self, ctx: RunContext[
|
|
420
|
+
async def prepare_tool_def(self, ctx: RunContext[ToolAgentDepsT]) -> ToolDefinition | None:
|
|
417
421
|
"""Get the tool definition.
|
|
418
422
|
|
|
419
423
|
By default, this method creates a tool definition, then either returns it, or calls `self.prepare`
|
pydantic_ai/ui/_event_stream.py
CHANGED
|
@@ -404,7 +404,7 @@ class UIEventStream(ABC, Generic[RunInputT, EventT, AgentDepsT, OutputDataT]):
|
|
|
404
404
|
|
|
405
405
|
Override this to inject custom events at the start of the request.
|
|
406
406
|
"""
|
|
407
|
-
return
|
|
407
|
+
return # pragma: lax no cover
|
|
408
408
|
yield # Make this an async generator
|
|
409
409
|
|
|
410
410
|
async def after_request(self) -> AsyncIterator[EventT]:
|
|
@@ -412,7 +412,7 @@ class UIEventStream(ABC, Generic[RunInputT, EventT, AgentDepsT, OutputDataT]):
|
|
|
412
412
|
|
|
413
413
|
Override this to inject custom events at the end of the request.
|
|
414
414
|
"""
|
|
415
|
-
return
|
|
415
|
+
return # pragma: lax no cover
|
|
416
416
|
yield # Make this an async generator
|
|
417
417
|
|
|
418
418
|
async def before_response(self) -> AsyncIterator[EventT]:
|
|
@@ -420,7 +420,7 @@ class UIEventStream(ABC, Generic[RunInputT, EventT, AgentDepsT, OutputDataT]):
|
|
|
420
420
|
|
|
421
421
|
Override this to inject custom events at the start of the response.
|
|
422
422
|
"""
|
|
423
|
-
return
|
|
423
|
+
return # pragma: no cover
|
|
424
424
|
yield # Make this an async generator
|
|
425
425
|
|
|
426
426
|
async def after_response(self) -> AsyncIterator[EventT]:
|
|
@@ -428,7 +428,7 @@ class UIEventStream(ABC, Generic[RunInputT, EventT, AgentDepsT, OutputDataT]):
|
|
|
428
428
|
|
|
429
429
|
Override this to inject custom events at the end of the response.
|
|
430
430
|
"""
|
|
431
|
-
return
|
|
431
|
+
return # pragma: lax no cover
|
|
432
432
|
yield # Make this an async generator
|
|
433
433
|
|
|
434
434
|
async def handle_text_start(self, part: TextPart, follows_text: bool = False) -> AsyncIterator[EventT]:
|
|
@@ -92,6 +92,13 @@ class AGUIEventStream(UIEventStream[RunAgentInput, BaseEvent, AgentDepsT, Output
|
|
|
92
92
|
run_id=self.run_input.run_id,
|
|
93
93
|
)
|
|
94
94
|
|
|
95
|
+
async def before_response(self) -> AsyncIterator[BaseEvent]:
|
|
96
|
+
# Prevent parts from a subsequent response being tied to parts from an earlier response.
|
|
97
|
+
# See https://github.com/pydantic/pydantic-ai/issues/3316
|
|
98
|
+
self.new_message_id()
|
|
99
|
+
return
|
|
100
|
+
yield # Make this an async generator
|
|
101
|
+
|
|
95
102
|
async def after_stream(self) -> AsyncIterator[BaseEvent]:
|
|
96
103
|
if not self._error:
|
|
97
104
|
yield RunFinishedEvent(
|
|
@@ -167,9 +174,11 @@ class AGUIEventStream(UIEventStream[RunAgentInput, BaseEvent, AgentDepsT, Output
|
|
|
167
174
|
self, part: ToolCallPart | BuiltinToolCallPart, tool_call_id: str | None = None
|
|
168
175
|
) -> AsyncIterator[BaseEvent]:
|
|
169
176
|
tool_call_id = tool_call_id or part.tool_call_id
|
|
170
|
-
|
|
177
|
+
parent_message_id = self.message_id
|
|
171
178
|
|
|
172
|
-
yield ToolCallStartEvent(
|
|
179
|
+
yield ToolCallStartEvent(
|
|
180
|
+
tool_call_id=tool_call_id, tool_call_name=part.tool_name, parent_message_id=parent_message_id
|
|
181
|
+
)
|
|
173
182
|
if part.args:
|
|
174
183
|
yield ToolCallArgsEvent(tool_call_id=tool_call_id, delta=part.args_as_json_str())
|
|
175
184
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pydantic-ai-slim
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.11.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.11.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.11.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
|
|
@@ -11,40 +11,40 @@ pydantic_ai/_mcp.py,sha256=PuvwnlLjv7YYOa9AZJCrklevBug99zGMhwJCBGG7BHQ,5626
|
|
|
11
11
|
pydantic_ai/_otel_messages.py,sha256=SsMpbyI1fIISOck_wQcZJPIOei8lOmvwARkdPSCx8y8,1650
|
|
12
12
|
pydantic_ai/_output.py,sha256=83Imvnwqwr-zveX_I95E24zt2Iqn-ofpd0HsbvOhS70,41274
|
|
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=
|
|
18
|
-
pydantic_ai/_utils.py,sha256=
|
|
17
|
+
pydantic_ai/_tool_manager.py,sha256=O2utqxahdzQdSDB97VuvQ2cwlTwWo-HkDbO4XNS9AX0,10510
|
|
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
24
|
pydantic_ai/mcp.py,sha256=FHlD5pHH7Z6h76P6IjddQz0Pt6F0gAVlepmks4U1Cho,36190
|
|
25
|
-
pydantic_ai/messages.py,sha256=
|
|
25
|
+
pydantic_ai/messages.py,sha256=1CPvWqzMX0uFvQRzbGXpmJOHZmUfK2Fq6twO69jYOIk,66330
|
|
26
26
|
pydantic_ai/output.py,sha256=q91oqvJ-FqV9GbUUil7WVWbii66SVsVZ54AEm_NWSEo,13002
|
|
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=ITisUdqf_vuTUhwifriMxinE9b5etAzcODPh6CRbOmk,20503
|
|
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=0eqWhuMCjaENqSXJW2pwRyffu-fIBVuyubhMIMl99a0,67136
|
|
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
38
|
pydantic_ai/common_tools/duckduckgo.py,sha256=1ae_o3zqMGrC6KFqAmuqPwJqQgNBTisuvU2jX9KU8PI,2273
|
|
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,13 +52,13 @@ 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=
|
|
56
|
-
pydantic_ai/durable_exec/temporal/_function_toolset.py,sha256=
|
|
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=
|
|
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=
|
|
61
|
-
pydantic_ai/durable_exec/temporal/_toolset.py,sha256=
|
|
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
|
|
@@ -75,7 +75,7 @@ pydantic_ai/models/huggingface.py,sha256=iADyoCKYrNyjixr55rEpXW02F-sah4rLmqrThEc
|
|
|
75
75
|
pydantic_ai/models/instrumented.py,sha256=J8eVTutr3UP1r_wd5sM5c0BIdzkRqT-EGgd2NiF0ssQ,22319
|
|
76
76
|
pydantic_ai/models/mcp_sampling.py,sha256=qY4y4nXbRpNp2QbkfjzWLvF_8KLZGXypz4cc0lYRHXU,3553
|
|
77
77
|
pydantic_ai/models/mistral.py,sha256=fi57hADjYxZw8wEpAcNI6mqY32VG9hHK9GGRQ-9vlZg,33905
|
|
78
|
-
pydantic_ai/models/openai.py,sha256=
|
|
78
|
+
pydantic_ai/models/openai.py,sha256=OO4O7HlEdHXx_sAv0y7Lf8NeVJac248JsrlRiNjagRk,109295
|
|
79
79
|
pydantic_ai/models/outlines.py,sha256=Un4KERT-jW97georXrE3iNuThFiYaYxZjGYHm2-PpD8,24270
|
|
80
80
|
pydantic_ai/models/test.py,sha256=cRiLD1uXKERUkBTyrVj3L5NQHoDrDqL5UU9EG_odkTg,20707
|
|
81
81
|
pydantic_ai/models/wrapper.py,sha256=nwh8Gea59blbr1JDKlUnkYICuI9TUubC4qP7iZRRW28,2440
|
|
@@ -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
|
|
@@ -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=
|
|
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
|
|
@@ -136,11 +136,11 @@ pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs7
|
|
|
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
138
|
pydantic_ai/ui/_adapter.py,sha256=f73ChFKjAmg1Tios3-rvE70htpEGMKwx-bhWg7ZAMGI,16573
|
|
139
|
-
pydantic_ai/ui/_event_stream.py,sha256=
|
|
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=
|
|
143
|
+
pydantic_ai/ui/ag_ui/_event_stream.py,sha256=eJEdi72207T1D4ftuG_EwHcvi2ZXXRk5bDbI0llzN4g,9348
|
|
144
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
|
|
@@ -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.11.0.dist-info/METADATA,sha256=wxcDhuiMyMly1VQWyqXXG5_2F30KJnZHsBjetFBqC3E,6087
|
|
152
|
+
pydantic_ai_slim-1.11.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
153
|
+
pydantic_ai_slim-1.11.0.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
|
|
154
|
+
pydantic_ai_slim-1.11.0.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
|
|
155
|
+
pydantic_ai_slim-1.11.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|