File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
3939
4040class 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
You can’t perform that action at this time.
0 commit comments