Spaces:
Runtime error
Runtime error
File size: 199 Bytes
49860d9 | 1 2 3 4 5 6 7 8 9 | from pydantic import BaseModel
from typing import Dict, List, Any
class FlowFeatures(BaseModel):
features: Dict[str, Any]
class BatchRequest(BaseModel):
items: List[Dict[str, Any]]
|