- 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
5 lines
185 B
Python
5 lines
185 B
Python
from .crew import TradingCrew, get_trading_crew
|
|
from .llm_connector import MiniMaxLLM, MiniMaxConnector
|
|
|
|
__all__ = ["TradingCrew", "get_trading_crew", "MiniMaxLLM", "MiniMaxConnector"]
|