From 8a9c5578c890b7b499d5c9425a01af11f5d1ad36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Wed, 25 Feb 2026 18:38:10 +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 d1fc3148cf..ec976711fa 100644 --- a/fastapi/.agents/skills/fastapi/SKILL.md +++ b/fastapi/.agents/skills/fastapi/SKILL.md @@ -203,7 +203,7 @@ The return type doesn't have to be a Pydantic model, it could be a different typ ### When to use `response_model` instead -If the return type is not the same as the type that you want to use to validate, filter, serialize, use the `response_model` parameter on the decorator instead. +If the return type is not the same as the type that you want to use to validate, filter, or serialize, use the `response_model` parameter on the decorator instead. ```python from typing import Any