Skip to content

Commit 495521f

Browse files
committed
Bump pydantic
1 parent d3c9863 commit 495521f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

example_clients/crew_ai_agent.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# dependencies = [
44
# "crewai>=0.11.0",
55
# "crewai-tools[mcp]>=0.0.5",
6+
# "pydantic>=2.11.0",
67
# "python-dotenv>=1.0.0",
7-
# "mcp>=0.1.9"
88
# ]
99
# ///
1010

@@ -39,20 +39,20 @@
3939

4040
class SourceConfigurationResult(BaseModel):
4141
source_id: Optional[str] = Field(
42-
description="The ID of the configured data source",
4342
default=None,
43+
description="The ID of the configured data source",
4444
)
4545
source_type: Optional[str] = Field(
46-
description="The type of data source configured",
4746
default=None,
47+
description="The type of data source configured",
4848
)
4949
source_name: Optional[str] = Field(
50-
description="The name of the configured data source",
5150
default=None,
51+
description="The name of the configured data source",
5252
)
5353
source_config: Optional[dict] = Field(
54-
description="The configuration details of the data source",
5554
default=None,
55+
description="The configuration details of the data source",
5656
)
5757

5858

0 commit comments

Comments
 (0)