fix: correct import paths in ai_agent module
- Fix relative import path in crew.py (from ..core to ...core) - Update __init__.py exports to match actual class names - Remove incorrect CrewAgent and LLMConnector exports
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from .crew import CrewAgent
|
||||
from .llm_connector import LLMConnector
|
||||
from .crew import TradingCrew, get_trading_crew
|
||||
from .llm_connector import MiniMaxLLM, MiniMaxConnector
|
||||
|
||||
__all__ = ["CrewAgent", "LLMConnector"]
|
||||
__all__ = ["TradingCrew", "get_trading_crew", "MiniMaxLLM", "MiniMaxConnector"]
|
||||
|
||||
Reference in New Issue
Block a user