pydantic-ai 1.7.0__py3-none-any.whl → 1.9.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 might be problematic. Click here for more details.
- README.md +2 -2
- {pydantic_ai-1.7.0.dist-info → pydantic_ai-1.9.0.dist-info}/METADATA +17 -7
- pydantic_ai-1.9.0.dist-info/RECORD +6 -0
- pydantic_ai-1.7.0.dist-info/RECORD +0 -6
- {pydantic_ai-1.7.0.dist-info → pydantic_ai-1.9.0.dist-info}/WHEEL +0 -0
- {pydantic_ai-1.7.0.dist-info → pydantic_ai-1.9.0.dist-info}/entry_points.txt +0 -0
- {pydantic_ai-1.7.0.dist-info → pydantic_ai-1.9.0.dist-info}/licenses/LICENSE +0 -0
README.md
CHANGED
|
@@ -50,8 +50,8 @@ Designed to give your IDE or AI coding agent as much context as possible for aut
|
|
|
50
50
|
5. **Powerful Evals**:
|
|
51
51
|
Enables you to systematically test and [evaluate](https://ai.pydantic.dev/evals) the performance and accuracy of the agentic systems you build, and monitor the performance over time in Pydantic Logfire.
|
|
52
52
|
|
|
53
|
-
6. **MCP, A2A, and
|
|
54
|
-
Integrates the [Model Context Protocol](https://ai.pydantic.dev/mcp/
|
|
53
|
+
6. **MCP, A2A, and UI**:
|
|
54
|
+
Integrates the [Model Context Protocol](https://ai.pydantic.dev/mcp/overview), [Agent2Agent](https://ai.pydantic.dev/a2a), and various [UI event stream](https://ai.pydantic.dev/ui/overview) standards to give your agent access to external tools and data, let it interoperate with other agents, and build interactive applications with streaming event-based communication.
|
|
55
55
|
|
|
56
56
|
7. **Human-in-the-Loop Tool Approval**:
|
|
57
57
|
Easily lets you flag that certain tool calls [require approval](https://ai.pydantic.dev/deferred-tools#human-in-the-loop-tool-approval) before they can proceed, possibly depending on tool call arguments, conversation history, or user preferences.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pydantic-ai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.9.0
|
|
4
4
|
Summary: Agent Framework / shim to use Pydantic with LLMs
|
|
5
5
|
Project-URL: Homepage, https://ai.pydantic.dev
|
|
6
6
|
Project-URL: Source, https://github.com/pydantic/pydantic-ai
|
|
@@ -26,15 +26,25 @@ Classifier: Topic :: Internet
|
|
|
26
26
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
27
27
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
28
28
|
Requires-Python: >=3.10
|
|
29
|
-
Requires-Dist: pydantic-ai-slim[ag-ui,anthropic,bedrock,cli,cohere,evals,fastmcp,google,groq,huggingface,logfire,mcp,mistral,openai,retries,temporal,vertexai]==1.
|
|
29
|
+
Requires-Dist: pydantic-ai-slim[ag-ui,anthropic,bedrock,cli,cohere,evals,fastmcp,google,groq,huggingface,logfire,mcp,mistral,openai,retries,temporal,ui,vertexai]==1.9.0
|
|
30
30
|
Provides-Extra: a2a
|
|
31
31
|
Requires-Dist: fasta2a>=0.4.1; extra == 'a2a'
|
|
32
32
|
Provides-Extra: dbos
|
|
33
|
-
Requires-Dist: pydantic-ai-slim[dbos]==1.
|
|
33
|
+
Requires-Dist: pydantic-ai-slim[dbos]==1.9.0; extra == 'dbos'
|
|
34
34
|
Provides-Extra: examples
|
|
35
|
-
Requires-Dist: pydantic-ai-examples==1.
|
|
35
|
+
Requires-Dist: pydantic-ai-examples==1.9.0; extra == 'examples'
|
|
36
|
+
Provides-Extra: outlines-llamacpp
|
|
37
|
+
Requires-Dist: pydantic-ai-slim[outlines-llamacpp]==1.9.0; extra == 'outlines-llamacpp'
|
|
38
|
+
Provides-Extra: outlines-mlxlm
|
|
39
|
+
Requires-Dist: pydantic-ai-slim[outlines-mlxlm]==1.9.0; extra == 'outlines-mlxlm'
|
|
40
|
+
Provides-Extra: outlines-sglang
|
|
41
|
+
Requires-Dist: pydantic-ai-slim[outlines-sglang]==1.9.0; extra == 'outlines-sglang'
|
|
42
|
+
Provides-Extra: outlines-transformers
|
|
43
|
+
Requires-Dist: pydantic-ai-slim[outlines-transformers]==1.9.0; extra == 'outlines-transformers'
|
|
44
|
+
Provides-Extra: outlines-vllm-offline
|
|
45
|
+
Requires-Dist: pydantic-ai-slim[outlines-vllm-offline]==1.9.0; extra == 'outlines-vllm-offline'
|
|
36
46
|
Provides-Extra: prefect
|
|
37
|
-
Requires-Dist: pydantic-ai-slim[prefect]==1.
|
|
47
|
+
Requires-Dist: pydantic-ai-slim[prefect]==1.9.0; extra == 'prefect'
|
|
38
48
|
Description-Content-Type: text/markdown
|
|
39
49
|
|
|
40
50
|
<div align="center">
|
|
@@ -89,8 +99,8 @@ Designed to give your IDE or AI coding agent as much context as possible for aut
|
|
|
89
99
|
5. **Powerful Evals**:
|
|
90
100
|
Enables you to systematically test and [evaluate](https://ai.pydantic.dev/evals) the performance and accuracy of the agentic systems you build, and monitor the performance over time in Pydantic Logfire.
|
|
91
101
|
|
|
92
|
-
6. **MCP, A2A, and
|
|
93
|
-
Integrates the [Model Context Protocol](https://ai.pydantic.dev/mcp/
|
|
102
|
+
6. **MCP, A2A, and UI**:
|
|
103
|
+
Integrates the [Model Context Protocol](https://ai.pydantic.dev/mcp/overview), [Agent2Agent](https://ai.pydantic.dev/a2a), and various [UI event stream](https://ai.pydantic.dev/ui/overview) standards to give your agent access to external tools and data, let it interoperate with other agents, and build interactive applications with streaming event-based communication.
|
|
94
104
|
|
|
95
105
|
7. **Human-in-the-Loop Tool Approval**:
|
|
96
106
|
Easily lets you flag that certain tool calls [require approval](https://ai.pydantic.dev/deferred-tools#human-in-the-loop-tool-approval) before they can proceed, possibly depending on tool call arguments, conversation history, or user preferences.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
README.md,sha256=uZJ_xRYVOBA2ggClS_dJrrI2_tOxPtHI7hHGBLAOb-A,11639
|
|
2
|
+
pydantic_ai-1.9.0.dist-info/METADATA,sha256=e0JLyf7nfFtQdJbNuFTcSdh7aPg7KyE8jimirinjPrA,14212
|
|
3
|
+
pydantic_ai-1.9.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
+
pydantic_ai-1.9.0.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
|
|
5
|
+
pydantic_ai-1.9.0.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
|
|
6
|
+
pydantic_ai-1.9.0.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
README.md,sha256=Q732GqW9zFGoHeKvbQsUuigvJa-YhERI7z7vnVpxD5I,11616
|
|
2
|
-
pydantic_ai-1.7.0.dist-info/METADATA,sha256=Q1KNJ5qQJq4z-mMLqJzK-e0i659Y2uRJLoiiBaD62xU,13567
|
|
3
|
-
pydantic_ai-1.7.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
-
pydantic_ai-1.7.0.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
|
|
5
|
-
pydantic_ai-1.7.0.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
|
|
6
|
-
pydantic_ai-1.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|