mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
added __init__ files as suggested.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
from .s3 import S3ReaderTool, S3WriterTool
|
||||
from .bedrock import BedrockKBRetrieverTool, BedrockInvokeAgentTool
|
||||
|
||||
__all__ = ['S3ReaderTool', 'S3WriterTool']
|
||||
__all__ = [
|
||||
'S3ReaderTool',
|
||||
'S3WriterTool',
|
||||
'BedrockKBRetrieverTool',
|
||||
'BedrockInvokeAgentTool'
|
||||
]
|
||||
4
src/crewai_tools/aws/bedrock/__init__.py
Normal file
4
src/crewai_tools/aws/bedrock/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from .knowledge_base.retriever_tool import BedrockKBRetrieverTool
|
||||
from .agents.invoke_agent_tool import BedrockInvokeAgentTool
|
||||
|
||||
__all__ = ["BedrockKBRetrieverTool", "BedrockInvokeAgentTool"]
|
||||
3
src/crewai_tools/aws/bedrock/agents/__init__.py
Normal file
3
src/crewai_tools/aws/bedrock/agents/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .invoke_agent_tool import BedrockInvokeAgentTool
|
||||
|
||||
__all__ = ["BedrockInvokeAgentTool"]
|
||||
3
src/crewai_tools/aws/bedrock/knowledge_base/__init__.py
Normal file
3
src/crewai_tools/aws/bedrock/knowledge_base/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .retriever_tool import BedrockKBRetrieverTool
|
||||
|
||||
__all__ = ["BedrockKBRetrieverTool"]
|
||||
Reference in New Issue
Block a user