Spaces:
Sleeping
Sleeping
File size: 163 Bytes
48b647e |
1 2 3 4 5 6 7 |
from typing import List
from pydantic import BaseModel, conlist
class Iris(BaseModel):
data: List[conlist(float, min_length=4, max_length=4)] # type: ignore |