pydantic-ai-slim 0.6.0__py3-none-any.whl → 0.6.2__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/__init__.py +5 -0
- pydantic_ai/_agent_graph.py +7 -0
- pydantic_ai/_utils.py +7 -1
- pydantic_ai/agent.py +9 -0
- pydantic_ai/builtin_tools.py +105 -0
- pydantic_ai/messages.py +73 -11
- pydantic_ai/models/__init__.py +17 -6
- pydantic_ai/models/anthropic.py +120 -12
- pydantic_ai/models/bedrock.py +31 -5
- pydantic_ai/models/cohere.py +10 -0
- pydantic_ai/models/function.py +9 -0
- pydantic_ai/models/gemini.py +5 -0
- pydantic_ai/models/google.py +36 -2
- pydantic_ai/models/groq.py +36 -3
- pydantic_ai/models/huggingface.py +9 -0
- pydantic_ai/models/mistral.py +16 -0
- pydantic_ai/models/openai.py +73 -12
- pydantic_ai/models/test.py +9 -0
- pydantic_ai/profiles/__init__.py +9 -1
- pydantic_ai/profiles/amazon.py +1 -2
- pydantic_ai/profiles/groq.py +23 -0
- pydantic_ai/profiles/meta.py +1 -2
- pydantic_ai/profiles/qwen.py +1 -2
- pydantic_ai/providers/bedrock.py +4 -3
- pydantic_ai/providers/groq.py +2 -0
- {pydantic_ai_slim-0.6.0.dist-info → pydantic_ai_slim-0.6.2.dist-info}/METADATA +5 -5
- {pydantic_ai_slim-0.6.0.dist-info → pydantic_ai_slim-0.6.2.dist-info}/RECORD +30 -28
- {pydantic_ai_slim-0.6.0.dist-info → pydantic_ai_slim-0.6.2.dist-info}/WHEEL +0 -0
- {pydantic_ai_slim-0.6.0.dist-info → pydantic_ai_slim-0.6.2.dist-info}/entry_points.txt +0 -0
- {pydantic_ai_slim-0.6.0.dist-info → pydantic_ai_slim-0.6.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from __future__ import annotations as _annotations
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
|
|
5
|
+
from . import ModelProfile
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass
|
|
9
|
+
class GroqModelProfile(ModelProfile):
|
|
10
|
+
"""Profile for models used with GroqModel.
|
|
11
|
+
|
|
12
|
+
ALL FIELDS MUST BE `groq_` PREFIXED SO YOU CAN MERGE THEM WITH OTHER MODELS.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
groq_always_has_web_search_builtin_tool: bool = False
|
|
16
|
+
"""Whether the model always has the web search built-in tool available."""
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def groq_model_profile(model_name: str) -> ModelProfile:
|
|
20
|
+
"""Get the model profile for a Groq model."""
|
|
21
|
+
return GroqModelProfile(
|
|
22
|
+
groq_always_has_web_search_builtin_tool=model_name.startswith('compound-'),
|
|
23
|
+
)
|
pydantic_ai/profiles/meta.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations as _annotations
|
|
2
2
|
|
|
3
|
-
from . import ModelProfile
|
|
4
|
-
from ._json_schema import InlineDefsJsonSchemaTransformer
|
|
3
|
+
from . import InlineDefsJsonSchemaTransformer, ModelProfile
|
|
5
4
|
|
|
6
5
|
|
|
7
6
|
def meta_model_profile(model_name: str) -> ModelProfile | None:
|
pydantic_ai/profiles/qwen.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations as _annotations
|
|
2
2
|
|
|
3
|
-
from . import ModelProfile
|
|
4
|
-
from ._json_schema import InlineDefsJsonSchemaTransformer
|
|
3
|
+
from . import InlineDefsJsonSchemaTransformer, ModelProfile
|
|
5
4
|
|
|
6
5
|
|
|
7
6
|
def qwen_model_profile(model_name: str) -> ModelProfile | None:
|
pydantic_ai/providers/bedrock.py
CHANGED
|
@@ -36,6 +36,7 @@ class BedrockModelProfile(ModelProfile):
|
|
|
36
36
|
|
|
37
37
|
bedrock_supports_tool_choice: bool = True
|
|
38
38
|
bedrock_tool_result_format: Literal['text', 'json'] = 'text'
|
|
39
|
+
bedrock_send_back_thinking_parts: bool = False
|
|
39
40
|
|
|
40
41
|
|
|
41
42
|
class BedrockProvider(Provider[BaseClient]):
|
|
@@ -55,9 +56,9 @@ class BedrockProvider(Provider[BaseClient]):
|
|
|
55
56
|
|
|
56
57
|
def model_profile(self, model_name: str) -> ModelProfile | None:
|
|
57
58
|
provider_to_profile: dict[str, Callable[[str], ModelProfile | None]] = {
|
|
58
|
-
'anthropic': lambda model_name: BedrockModelProfile(
|
|
59
|
-
|
|
60
|
-
),
|
|
59
|
+
'anthropic': lambda model_name: BedrockModelProfile(
|
|
60
|
+
bedrock_supports_tool_choice=False, bedrock_send_back_thinking_parts=True
|
|
61
|
+
).update(anthropic_model_profile(model_name)),
|
|
61
62
|
'mistral': lambda model_name: BedrockModelProfile(bedrock_tool_result_format='json').update(
|
|
62
63
|
mistral_model_profile(model_name)
|
|
63
64
|
),
|
pydantic_ai/providers/groq.py
CHANGED
|
@@ -10,6 +10,7 @@ from pydantic_ai.models import cached_async_http_client
|
|
|
10
10
|
from pydantic_ai.profiles import ModelProfile
|
|
11
11
|
from pydantic_ai.profiles.deepseek import deepseek_model_profile
|
|
12
12
|
from pydantic_ai.profiles.google import google_model_profile
|
|
13
|
+
from pydantic_ai.profiles.groq import groq_model_profile
|
|
13
14
|
from pydantic_ai.profiles.meta import meta_model_profile
|
|
14
15
|
from pydantic_ai.profiles.mistral import mistral_model_profile
|
|
15
16
|
from pydantic_ai.profiles.moonshotai import moonshotai_model_profile
|
|
@@ -49,6 +50,7 @@ class GroqProvider(Provider[AsyncGroq]):
|
|
|
49
50
|
'deepseek': deepseek_model_profile,
|
|
50
51
|
'mistral': mistral_model_profile,
|
|
51
52
|
'moonshotai/': moonshotai_model_profile,
|
|
53
|
+
'compound-': groq_model_profile,
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
for prefix, profile_func in prefix_to_profile.items():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pydantic-ai-slim
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.2
|
|
4
4
|
Summary: Agent Framework / shim to use Pydantic with LLMs, slim package
|
|
5
5
|
Author-email: Samuel Colvin <samuel@pydantic.dev>, Marcelo Trylesinski <marcelotryle@gmail.com>, David Montague <david@pydantic.dev>, Alex Hall <alex@pydantic.dev>, Douwe Maan <douwe@pydantic.dev>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -30,7 +30,7 @@ Requires-Dist: exceptiongroup; python_version < '3.11'
|
|
|
30
30
|
Requires-Dist: griffe>=1.3.2
|
|
31
31
|
Requires-Dist: httpx>=0.27
|
|
32
32
|
Requires-Dist: opentelemetry-api>=1.28.0
|
|
33
|
-
Requires-Dist: pydantic-graph==0.6.
|
|
33
|
+
Requires-Dist: pydantic-graph==0.6.2
|
|
34
34
|
Requires-Dist: pydantic>=2.10
|
|
35
35
|
Requires-Dist: typing-inspection>=0.4.0
|
|
36
36
|
Provides-Extra: a2a
|
|
@@ -41,7 +41,7 @@ Requires-Dist: starlette>=0.45.3; extra == 'ag-ui'
|
|
|
41
41
|
Provides-Extra: anthropic
|
|
42
42
|
Requires-Dist: anthropic>=0.61.0; extra == 'anthropic'
|
|
43
43
|
Provides-Extra: bedrock
|
|
44
|
-
Requires-Dist: boto3>=1.
|
|
44
|
+
Requires-Dist: boto3>=1.39.0; extra == 'bedrock'
|
|
45
45
|
Provides-Extra: cli
|
|
46
46
|
Requires-Dist: argcomplete>=3.5.0; extra == 'cli'
|
|
47
47
|
Requires-Dist: prompt-toolkit>=3; extra == 'cli'
|
|
@@ -51,11 +51,11 @@ Requires-Dist: cohere>=5.16.0; (platform_system != 'Emscripten') and extra == 'c
|
|
|
51
51
|
Provides-Extra: duckduckgo
|
|
52
52
|
Requires-Dist: ddgs>=9.0.0; extra == 'duckduckgo'
|
|
53
53
|
Provides-Extra: evals
|
|
54
|
-
Requires-Dist: pydantic-evals==0.6.
|
|
54
|
+
Requires-Dist: pydantic-evals==0.6.2; extra == 'evals'
|
|
55
55
|
Provides-Extra: google
|
|
56
56
|
Requires-Dist: google-genai>=1.28.0; extra == 'google'
|
|
57
57
|
Provides-Extra: groq
|
|
58
|
-
Requires-Dist: groq>=0.
|
|
58
|
+
Requires-Dist: groq>=0.25.0; extra == 'groq'
|
|
59
59
|
Provides-Extra: huggingface
|
|
60
60
|
Requires-Dist: huggingface-hub[inference]>=0.33.5; extra == 'huggingface'
|
|
61
61
|
Provides-Extra: logfire
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pydantic_ai/__init__.py,sha256=
|
|
1
|
+
pydantic_ai/__init__.py,sha256=Uy0J4BgX4CXsa0sUUb5K0FC4uUWGIwBici93QHLkNsk,1478
|
|
2
2
|
pydantic_ai/__main__.py,sha256=Q_zJU15DUA01YtlJ2mnaLCoId2YmgmreVEERGuQT-Y0,132
|
|
3
3
|
pydantic_ai/_a2a.py,sha256=Tw_j9VRud0rLEk5kRs4GhRyhWYioXnsoZaTTyISq4M4,12126
|
|
4
|
-
pydantic_ai/_agent_graph.py,sha256=
|
|
4
|
+
pydantic_ai/_agent_graph.py,sha256=1VK6SAYFJBYtUoK0i49fTbG81oiHGvrD9oonPDU1mIs,37818
|
|
5
5
|
pydantic_ai/_cli.py,sha256=YkiW2u9HGPd9fsgo9dpK1DZvtUPk4uXGQJcm75XgfhU,13250
|
|
6
6
|
pydantic_ai/_function_schema.py,sha256=YFHxb6bKfhgeY6rNdbuYXgndGCDanveUx2258xkSNlQ,11233
|
|
7
7
|
pydantic_ai/_griffe.py,sha256=Ugft16ZHw9CN_6-lW0Svn6jESK9zHXO_x4utkGBkbBI,5253
|
|
@@ -12,14 +12,15 @@ pydantic_ai/_run_context.py,sha256=pqb_HPXytE1Z9zZRRuBboRYes_tVTC75WGTpZgnb2Ko,1
|
|
|
12
12
|
pydantic_ai/_system_prompt.py,sha256=lUSq-gDZjlYTGtd6BUm54yEvTIvgdwBmJ8mLsNZZtYU,1142
|
|
13
13
|
pydantic_ai/_thinking_part.py,sha256=x80-Vkon16GOyq3W6f2qzafTVPC5dCgF7QD3k8ZMmYU,1304
|
|
14
14
|
pydantic_ai/_tool_manager.py,sha256=BdjPntbSshNvYVpYZUNxb-yib5n4GPqcDinbNpzhBVo,8960
|
|
15
|
-
pydantic_ai/_utils.py,sha256=
|
|
15
|
+
pydantic_ai/_utils.py,sha256=Ge9rtu8NJvsfSFjx1MduITPr0-9b_I0emDFSpwJbYes,16372
|
|
16
16
|
pydantic_ai/ag_ui.py,sha256=snIBVMcUUm3WWZ5P5orikyAzvM-7vGunNMgIudhvK-A,26156
|
|
17
|
-
pydantic_ai/agent.py,sha256=
|
|
17
|
+
pydantic_ai/agent.py,sha256=inwfTJJMiE3IBjle6aFycqhnN-JJMUEfbsgWyMkRIOo,96346
|
|
18
|
+
pydantic_ai/builtin_tools.py,sha256=mwIq-7m0ZSbCZp1zxswjRfQM648QE01IDfifvqDGxUQ,3023
|
|
18
19
|
pydantic_ai/direct.py,sha256=WRfgke3zm-eeR39LTuh9XI2TrdHXAqO81eDvFwih4Ko,14803
|
|
19
20
|
pydantic_ai/exceptions.py,sha256=vHRH_b6JpMi5p5EGhz2O4FSeKGJv3WMD291Y1FjHYFc,3528
|
|
20
21
|
pydantic_ai/format_prompt.py,sha256=Or-Ytq55RQb1UJqy2HKIyPpZ-knWXfdDP3Z6tNc6Orw,4244
|
|
21
22
|
pydantic_ai/mcp.py,sha256=v_f4CRzJ399uPC96aqTiEzpaYvuo6vIQyLIpXQBudsY,26271
|
|
22
|
-
pydantic_ai/messages.py,sha256=
|
|
23
|
+
pydantic_ai/messages.py,sha256=HPsVQ-V2mLZ22xbUGe8vuKH8z1uQ95DvYuTpCS_Zxc4,45658
|
|
23
24
|
pydantic_ai/output.py,sha256=54Cwd1RruXlA5hucZ1h-SxFrzKHJuLvYvLtH9iyg2GI,11988
|
|
24
25
|
pydantic_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
26
|
pydantic_ai/result.py,sha256=N9YJ8WshUUyLgdbDVivmhgn8e6NPqFH9JQjEoR2_J9E,21767
|
|
@@ -33,39 +34,40 @@ pydantic_ai/common_tools/tavily.py,sha256=Q1xxSF5HtXAaZ10Pp-OaDOHXwJf2mco9wScGEQ
|
|
|
33
34
|
pydantic_ai/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
35
|
pydantic_ai/ext/aci.py,sha256=vUaNIj6pRM52x6RkPW_DohSYxJPm75pPUfOMw2i5Xx0,2515
|
|
35
36
|
pydantic_ai/ext/langchain.py,sha256=GemxfhpyG1JPxj69PbRiSJANnY8Q5s4hSB7wqt-uTbo,2266
|
|
36
|
-
pydantic_ai/models/__init__.py,sha256=
|
|
37
|
-
pydantic_ai/models/anthropic.py,sha256=
|
|
38
|
-
pydantic_ai/models/bedrock.py,sha256=
|
|
39
|
-
pydantic_ai/models/cohere.py,sha256=
|
|
37
|
+
pydantic_ai/models/__init__.py,sha256=BzQFH8ncFbQs9dWnQugilodg7ycvdYc4csp_Dj7_Y3E,31131
|
|
38
|
+
pydantic_ai/models/anthropic.py,sha256=vJzO-DjL3sN3-xd_oTjPjI2h1NzEQBTw4T6DsMm-4G8,29424
|
|
39
|
+
pydantic_ai/models/bedrock.py,sha256=FbHSb6go0vLUKOfJ1f7fz3APgG_Ct0325DmPxysFhR0,30788
|
|
40
|
+
pydantic_ai/models/cohere.py,sha256=EUDKwF-UZjEqmZvqOA7sLpYnaythiG_3unGpcRNAI1c,13261
|
|
40
41
|
pydantic_ai/models/fallback.py,sha256=URaV-dTQWkg99xrlkmknue5lXZWDcEt7cJ1Vsky4oB4,5130
|
|
41
|
-
pydantic_ai/models/function.py,sha256=
|
|
42
|
-
pydantic_ai/models/gemini.py,sha256=
|
|
43
|
-
pydantic_ai/models/google.py,sha256=
|
|
44
|
-
pydantic_ai/models/groq.py,sha256=
|
|
45
|
-
pydantic_ai/models/huggingface.py,sha256=
|
|
42
|
+
pydantic_ai/models/function.py,sha256=qKDltLV2hNFivZGj0spAtloLwY5yL0XbiZqQ-2Zk9JE,14117
|
|
43
|
+
pydantic_ai/models/gemini.py,sha256=1Od0FqE-pA_fCaHLleMTK4XKb7Ue6GTeeQbRgSHVesk,38538
|
|
44
|
+
pydantic_ai/models/google.py,sha256=lijot-mkchJXV7XryHZOMFM3bdt-t7nfjQ8j82oVcvE,26131
|
|
45
|
+
pydantic_ai/models/groq.py,sha256=MUshoLXZWDkyPZm7_JxUEFm28AJOQHe6ikh-DRdYGAk,20772
|
|
46
|
+
pydantic_ai/models/huggingface.py,sha256=fkAtCpZom_Nlf2yylUtFEHKm4NebHd2edfI_0vGgnSU,19660
|
|
46
47
|
pydantic_ai/models/instrumented.py,sha256=j6zFwfF_xxog2OrU2xaObBRkc0wyGqjIqFIMv7cxqmI,16212
|
|
47
48
|
pydantic_ai/models/mcp_sampling.py,sha256=q9nnjNEAAbhrfRc_Qw5z9TtCHMG_SwlCWW9FvKWjh8k,3395
|
|
48
|
-
pydantic_ai/models/mistral.py,sha256=
|
|
49
|
-
pydantic_ai/models/openai.py,sha256=
|
|
50
|
-
pydantic_ai/models/test.py,sha256=
|
|
49
|
+
pydantic_ai/models/mistral.py,sha256=NuHxGMlxL9zUOeqggoWgu7Tii2-9MPMMZDsoYYCINkw,32386
|
|
50
|
+
pydantic_ai/models/openai.py,sha256=2DlShhEY3iJoQkOHJy_G-SIN3LrvOePV5FKBrhfeH1E,59765
|
|
51
|
+
pydantic_ai/models/test.py,sha256=33kb7Z3CWdTRIsVAiir-OVr7Er8QjW1qFfLc6jzjCKc,18998
|
|
51
52
|
pydantic_ai/models/wrapper.py,sha256=A5-ncYhPF8c9S_czGoXkd55s2KOQb65p3jbVpwZiFPA,2043
|
|
52
|
-
pydantic_ai/profiles/__init__.py,sha256=
|
|
53
|
+
pydantic_ai/profiles/__init__.py,sha256=Ggk_pbNnRcaGnDWEBppsH3sUk8ajckaaXKfJlkLQWVo,2775
|
|
53
54
|
pydantic_ai/profiles/_json_schema.py,sha256=CthOGmPSjgEZRRglfvg31zyQ9vjHDdacXoFpmba93dE,7206
|
|
54
|
-
pydantic_ai/profiles/amazon.py,sha256=
|
|
55
|
+
pydantic_ai/profiles/amazon.py,sha256=IPa2wydpcbFLLvhDK35-pwwoKo0Pg4vP84823fHx0zc,314
|
|
55
56
|
pydantic_ai/profiles/anthropic.py,sha256=J9N46G8eOjHdQ5CwZSLiwGdPb0eeIMdsMjwosDpvNhI,275
|
|
56
57
|
pydantic_ai/profiles/cohere.py,sha256=lcL34Ht1jZopwuqoU6OV9l8vN4zwF-jiPjlsEABbSRo,215
|
|
57
58
|
pydantic_ai/profiles/deepseek.py,sha256=DS_idprnXpMliKziKF0k1neLDJOwUvpatZ3YLaiYnCM,219
|
|
58
59
|
pydantic_ai/profiles/google.py,sha256=cd5zwtx0MU1Xwm8c-oqi2_OJ2-PMJ8Vy23mxvSJF7ik,4856
|
|
59
60
|
pydantic_ai/profiles/grok.py,sha256=nBOxOCYCK9aiLmz2Q-esqYhotNbbBC1boAoOYIk1tVw,211
|
|
60
|
-
pydantic_ai/profiles/
|
|
61
|
+
pydantic_ai/profiles/groq.py,sha256=5jLNnOuxq3HTrbY-cizJyGa1hIluW7sCPLmDP1C1unc,668
|
|
62
|
+
pydantic_ai/profiles/meta.py,sha256=JdZcpdRWx8PY1pU9Z2i_TYtA0Cpbg23xyFrV7eXnooY,309
|
|
61
63
|
pydantic_ai/profiles/mistral.py,sha256=ll01PmcK3szwlTfbaJLQmfd0TADN8lqjov9HpPJzCMQ,217
|
|
62
64
|
pydantic_ai/profiles/moonshotai.py,sha256=LL5RacKHKn6rdvhoKjpGgZ8aVriv5NMeL6HCWEANAiU,223
|
|
63
65
|
pydantic_ai/profiles/openai.py,sha256=80ffJK9T7YbBRR7mhyRkjDB29pYi2H4dIQOAmIr5Ppc,7530
|
|
64
|
-
pydantic_ai/profiles/qwen.py,sha256=
|
|
66
|
+
pydantic_ai/profiles/qwen.py,sha256=zU19r2lVBxU0v0fXyA9G-VvG3XzBZMZJVxCpQutU9k0,309
|
|
65
67
|
pydantic_ai/providers/__init__.py,sha256=yxPgiTJKFYZbDW18tmVM6mmD2Znol3WwniwnhtlN0Ak,4141
|
|
66
68
|
pydantic_ai/providers/anthropic.py,sha256=D35UXxCPXv8yIbD0fj9Zg2FvNyoMoJMeDUtVM8Sn78I,3046
|
|
67
69
|
pydantic_ai/providers/azure.py,sha256=y77IHGiSQ9Ttx9f4SGMgdpin2Daq6eYyzUdM9ET22RQ,5819
|
|
68
|
-
pydantic_ai/providers/bedrock.py,sha256=
|
|
70
|
+
pydantic_ai/providers/bedrock.py,sha256=8jz77ySKv6CzCktN9YbZb1736gZM0d_btcKvXiZSSHI,5784
|
|
69
71
|
pydantic_ai/providers/cohere.py,sha256=LT6QaLPJBBlFUgYgXQOfKpbM9SXLzorWFxI7jNfOX_4,2892
|
|
70
72
|
pydantic_ai/providers/deepseek.py,sha256=kUdM8eVp1lse4bS_uy70Gy7wgog94NTZ36GY-vhSB50,3060
|
|
71
73
|
pydantic_ai/providers/fireworks.py,sha256=TPbqOpNgXG59qovBaHWbbV2vsvROwlHwQ3PvqHUBH-s,3626
|
|
@@ -74,7 +76,7 @@ pydantic_ai/providers/google.py,sha256=iyAqYB-Rcpy6Rea-QfS_FL1v6ej-DZpGx-rPY3X_d
|
|
|
74
76
|
pydantic_ai/providers/google_gla.py,sha256=dLkDxps5gEtxsQiDbs1e88lXLYeX4i2qnJtDiFFJ0Ng,1965
|
|
75
77
|
pydantic_ai/providers/google_vertex.py,sha256=9wJGctzQTEtmTTr3KCFAubDREMQJ4zOXt9k52F8R8Zs,9739
|
|
76
78
|
pydantic_ai/providers/grok.py,sha256=dIkpxuuJlZ4pFtTSgeeJgiM_Z3mJU9qvk4f7jvSzi24,3141
|
|
77
|
-
pydantic_ai/providers/groq.py,sha256=
|
|
79
|
+
pydantic_ai/providers/groq.py,sha256=AeG5flZ_n4fRy8RWm0RGvDBEDrdaLfR8gMOTRHQB368,4059
|
|
78
80
|
pydantic_ai/providers/heroku.py,sha256=NmDIkAdxtWsvCjlX-bKI5FgI4HW1zO9-e0mrNQNGMCk,2990
|
|
79
81
|
pydantic_ai/providers/huggingface.py,sha256=LRmJcJpQRRYvam3IAPkYs2fMUJf70GgE3aDgQltGRCU,3821
|
|
80
82
|
pydantic_ai/providers/mistral.py,sha256=EIUSENjFuGzBhvbdrarUTM4VPkesIMnZrzfnEKHOsc4,3120
|
|
@@ -93,8 +95,8 @@ pydantic_ai/toolsets/prefixed.py,sha256=MIStkzUdiU0rk2Y6P19IrTBxspH5pTstGxsqCBt-
|
|
|
93
95
|
pydantic_ai/toolsets/prepared.py,sha256=Zjfz6S8In6PBVxoKFN9sKPN984zO6t0awB7Lnq5KODw,1431
|
|
94
96
|
pydantic_ai/toolsets/renamed.py,sha256=JuLHpi-hYPiSPlaTpN8WiXLiGsywYK0axi2lW2Qs75k,1637
|
|
95
97
|
pydantic_ai/toolsets/wrapper.py,sha256=WjLoiM1WDuffSJ4mDS6pZrEZGHgZ421fjrqFcB66W94,1205
|
|
96
|
-
pydantic_ai_slim-0.6.
|
|
97
|
-
pydantic_ai_slim-0.6.
|
|
98
|
-
pydantic_ai_slim-0.6.
|
|
99
|
-
pydantic_ai_slim-0.6.
|
|
100
|
-
pydantic_ai_slim-0.6.
|
|
98
|
+
pydantic_ai_slim-0.6.2.dist-info/METADATA,sha256=OHGCaSYj8KsdXNyUSUXFkcs8WHTf49t137GrbtaCtqk,4172
|
|
99
|
+
pydantic_ai_slim-0.6.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
100
|
+
pydantic_ai_slim-0.6.2.dist-info/entry_points.txt,sha256=kbKxe2VtDCYS06hsI7P3uZGxcVC08-FPt1rxeiMpIps,50
|
|
101
|
+
pydantic_ai_slim-0.6.2.dist-info/licenses/LICENSE,sha256=vA6Jc482lEyBBuGUfD1pYx-cM7jxvLYOxPidZ30t_PQ,1100
|
|
102
|
+
pydantic_ai_slim-0.6.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|