Complete Migration

This commit is contained in:
2025-10-19 20:04:27 -04:00
parent 2281200985
commit 3a25be8301

View File

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