Riorganizzazione degli import per utilizzare il percorso corretto in tutti i moduli

This commit is contained in:
2025-10-03 10:24:28 +02:00
parent ba44f6e902
commit 5e13287e06
8 changed files with 16 additions and 15 deletions

View File

@@ -1,11 +1,11 @@
from agno.run.agent import RunOutput
from agno.team import Team
from agents.market_agent import MarketAgent
from agents.news_agent import NewsAgent
from agents.social_agent import SocialAgent
from models import AppModels
from predictor import PredictorInput, PredictorOutput, PredictorStyle, PREDICTOR_INSTRUCTIONS
from app.agents.market_agent import MarketAgent
from app.agents.news_agent import NewsAgent
from app.agents.social_agent import SocialAgent
from app.models import AppModels
from app.predictor import PredictorInput, PredictorOutput, PredictorStyle, PREDICTOR_INSTRUCTIONS
class Pipeline: