ACA050 commited on
Commit
c4c8f23
·
verified ·
1 Parent(s): 654bcd9

Create schemas.py

Browse files
Files changed (1) hide show
  1. backend/api/schemas.py +6 -0
backend/api/schemas.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from pydantic import BaseModel
2
+ from typing import List, Dict, Any
3
+
4
+
5
+ class PredictRequest(BaseModel):
6
+ instances: List[Dict[str, Any]]