Copilot requested fixes

This commit is contained in:
2025-10-15 13:48:13 +02:00
parent 544e179305
commit 1218b44e75
2 changed files with 2 additions and 3 deletions

View File

@@ -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]

View File

@@ -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