Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions crewai_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,23 @@
S3ReaderTool,
S3WriterTool,
)
from .azure import (
AzureCosmosDBNoSqlSearchTool,
AzureCosmosDBMemoryTool,
AzureCosmosDBSemanticCacheTool
)
from .tools import (
AIMindTool,
ApifyActorsTool,
ArxivPaperTool,
BraveSearchTool,
BrowserbaseLoadTool,
CodeDocsSearchTool,
# CodeDocsSearchTool,
CodeInterpreterTool,
ComposioTool,
CouchbaseFTSVectorSearchTool,
CrewaiEnterpriseTools,
CSVSearchTool,
# CSVSearchTool,
DallETool,
DatabricksQueryTool,
DirectoryReadTool,
Expand All @@ -40,7 +45,7 @@
MongoDBVectorSearchConfig,
MongoDBVectorSearchTool,
MultiOnTool,
MySQLSearchTool,
# MySQLSearchTool,
NL2SQLTool,
OxylabsUniversalScraperTool,
OxylabsGoogleSearchScraperTool,
Expand Down
24 changes: 24 additions & 0 deletions crewai_tools/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from .cosmosdb_nosql.semantic_cache import AzureCosmosDBSemanticCacheConfig, AzureCosmosDBSemanticCacheTool, \
AzureCosmosDBSemanticCacheToolSchema
from .cosmosdb_nosql.vector_search.vector_search_tool import (
AzureCosmosDBNoSqlSearchTool,
AzureCosmosDBNoSqlSearchConfig,
AzureCosmosDBNoSqlToolSchema
)
from .cosmosdb_nosql.memory_store.memory_store_tool import (
AzureCosmosDBMemoryConfig,
AzureCosmosDBMemoryTool,
AzureCosmosDBMemoryToolSchema
)

__all__ = [
"AzureCosmosDBNoSqlSearchTool",
"AzureCosmosDBNoSqlSearchConfig",
"AzureCosmosDBNoSqlToolSchema",
"AzureCosmosDBMemoryTool",
"AzureCosmosDBMemoryConfig",
"AzureCosmosDBMemoryToolSchema",
"AzureCosmosDBSemanticCacheTool",
"AzureCosmosDBSemanticCacheConfig",
"AzureCosmosDBSemanticCacheToolSchema",
]
Loading