Nhảy đến nội dung chính

Annotated

Dùng để thêm metadata cho type (hữu ích với Pydantic hoặc FastAPI):

from typing import Annotated
from pydantic import Field

age: Annotated[int, Field(gt=0, lt=120)]