## The Bug: When pydantic's `max_items` attribute is given a value. ```py interests: list[str] = Field( ..., full_text_search=True, max_items=10, max_length=20, title="Interests", description="List of interests. Upto 10 items, 20 character max", ) ``` redis-om silently passes. ## What should Happen: ```py favorites: list[str] = Field( ..., full_text_search=True, title="Favorites", description="List of user IDs that this user has favorited", ) ``` OUTPUT: `aredis_om.model.model.RedisModelError: List and tuple fields cannot be indexed for full-text search. Problem field: favorites. See docs: TODO` Environment: python = `3.12` redis-om = `0.3.3` pydantic = `v1`