mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
added the main import statements
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from .tools import (
|
||||
AIMindTool,
|
||||
BraveSearchTool,
|
||||
BrowserbaseLoadTool,
|
||||
CodeDocsSearchTool,
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
from .ai_minds_tool.ai_minds_tool import AIMindTool
|
||||
from .brave_search_tool.brave_search_tool import BraveSearchTool
|
||||
from .browserbase_load_tool.browserbase_load_tool import BrowserbaseLoadTool
|
||||
from .code_docs_search_tool.code_docs_search_tool import CodeDocsSearchTool
|
||||
|
||||
@@ -26,7 +26,7 @@ class AIMindTool(BaseTool):
|
||||
datasources: Optional[Dict] = None
|
||||
mind_name: Optional[Text] = None
|
||||
|
||||
def __init__(self, api_key: Optional[str] = None, **kwargs):
|
||||
def __init__(self, api_key: Optional[Text] = None, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
try:
|
||||
from minds_sdk import Client # type: ignore
|
||||
|
||||
Reference in New Issue
Block a user