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:
shokollm
2026-04-09 15:27:09 +00:00
parent ac5e9d8b81
commit ad6e57655d
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
from typing import List, Optional, Dict, Any
from crewai import Agent, Task, Crew
from .llm_connector import MiniMaxConnector, MiniMaxLLM
from ..core.config import get_settings
from ...core.config import get_settings
class StrategyValidator: