diff --git a/src/app/agents/pipeline.py b/src/app/agents/pipeline.py index fe4c870..cf8de3e 100644 --- a/src/app/agents/pipeline.py +++ b/src/app/agents/pipeline.py @@ -53,7 +53,7 @@ class PipelineInputs: # ====================== def choose_team_leader(self, index: int): """ - Sceglie il modello LLM da usare per il Team. + Sceglie il modello LLM da usare per il Team Leader. """ self.leader_model = self.configs.models.all_models[index] @@ -65,7 +65,7 @@ class PipelineInputs: def choose_strategy(self, index: int): """ - Sceglie la strategia da usare per il Predictor. + Sceglie la strategia da usare per il Team. """ self.strategy = self.configs.strategies[index] diff --git a/src/app/configs.py b/src/app/configs.py index ccab3fa..179ffdd 100644 --- a/src/app/configs.py +++ b/src/app/configs.py @@ -3,7 +3,6 @@ import threading import ollama import yaml import logging.config -import agno.utils.log # type: ignore from typing import Any, ClassVar from pydantic import BaseModel from agno.agent import Agent