From 18939d5b7e5f5804d8332fce58ef2126a1c13c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 25 Feb 2026 18:40:03 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Update=20fastapi/.agents/s?= =?UTF-8?q?kills/fastapi/SKILL.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com> --- fastapi/.agents/skills/fastapi/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/.agents/skills/fastapi/SKILL.md b/fastapi/.agents/skills/fastapi/SKILL.md index 5229c600a8..08e3c5e37c 100644 --- a/fastapi/.agents/skills/fastapi/SKILL.md +++ b/fastapi/.agents/skills/fastapi/SKILL.md @@ -545,7 +545,7 @@ When working with SQL databases, prefer using SQLModel as it is integrated with Do not use Pydantic `RootModel`, instead use regular type annotations with `Annotated` and Pydantic validation utilities. -For example for a list with validations you could do: +For example, for a list with validations you could do: ```python from typing import Annotated