File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
lib/crewai-tools/src/crewai_tools/tools/qdrant_vector_search_tool Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1212
1313
1414class QdrantToolSchema (BaseModel ):
15- query : str = Field (..., description = "Query to search in Qdrant DB" )
15+ query : str = Field (
16+ ..., description = "Query to search in Qdrant DB - always required."
17+ )
1618 filter_by : str | None = Field (
17- default = None , description = "Parameter to filter the search by."
19+ default = None ,
20+ description = "Parameter to filter the search by. When filtering, needs to be used in conjunction with filter_value." ,
1821 )
1922 filter_value : Any | None = Field (
20- default = None , description = "Value to filter the search by."
23+ default = None ,
24+ description = "Value to filter the search by. When filtering, needs to be used in conjunction with filter_by." ,
2125 )
2226
2327
You can’t perform that action at this time.
0 commit comments