1. Correzione del modello base del Team: inizializzato con qwen3:latest

2. Modifica dell'interfaccia e inserimento di un ChatManager per gestire interazione, salvataggio e caricamento della chat.
This commit is contained in:
trojanhorse47
2025-10-01 16:07:41 +02:00
parent 1206972bb6
commit 6e1c11f6aa
5 changed files with 252 additions and 87 deletions

View File

@@ -4,7 +4,7 @@ from app.markets.base import ProductInfo
from app.models import AppModels
def unified_checks(model: AppModels, input):
llm = model.get_agent(PREDICTOR_INSTRUCTIONS, output=PredictorOutput)
llm = model.get_agent(PREDICTOR_INSTRUCTIONS, output=PredictorOutput) # type: ignore[arg-type]
result = llm.run(input)
content = result.content