From 3a25be83017ea6563cce2d43ee2747e9b7e2ab2b Mon Sep 17 00:00:00 2001 From: Farouk Adeleke Date: Sun, 19 Oct 2025 20:04:27 -0400 Subject: [PATCH] Complete Migration --- agent/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/models.py b/agent/models.py index fea59e8..81a2d10 100644 --- a/agent/models.py +++ b/agent/models.py @@ -30,7 +30,7 @@ class FinalResult(BaseModel): best_score: float = Field(description="The best score for the final tweet") iterations_run: int = Field(description="The number of iterations run") early_stopped: bool = Field(description="Whether the optimization early stopped") - scores_history: List[List[int]] = Field(description="The history of scores") + scores_history: List[List[float]] = Field(description="The history of scores") improvement_count: int = Field(description="The number of improvements found")