From fcb3fc19c9aeb885ba348f87923f73d8be0a03d3 Mon Sep 17 00:00:00 2001 From: Kamil Benkirane <62942280+Kamilbenkirane@users.noreply.github.com> Date: Tue, 20 Jan 2026 18:40:12 +0100 Subject: [PATCH] Rename title field in MovieReview class --- notebooks/celeste-colab-quickstart.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/celeste-colab-quickstart.ipynb b/notebooks/celeste-colab-quickstart.ipynb index 0776ace4..3da4a0bb 100644 --- a/notebooks/celeste-colab-quickstart.ipynb +++ b/notebooks/celeste-colab-quickstart.ipynb @@ -114,7 +114,7 @@ { "cell_type": "code", "metadata": {}, - "source": "class MovieReview(BaseModel):\n title: str = Field(description=\"The movie title\")\n rating: float = Field(description=\"Rating from 0 to 10\")\n pros: list[str] = Field(description=\"List of positive aspects\")\n cons: list[str] = Field(description=\"List of negative aspects\")\n verdict: str = Field(description=\"One-sentence final verdict\")", + "source": "class MovieReview(BaseModel):\n review_title: str = Field(description=\"The review title\")\n rating: float = Field(description=\"Rating from 0 to 10\")\n pros: list[str] = Field(description=\"List of positive aspects\")\n cons: list[str] = Field(description=\"List of negative aspects\")\n verdict: str = Field(description=\"One-sentence final verdict\")", "outputs": [], "execution_count": null },