File size: 204 Bytes
516495b
 
 
 
 
 
 
4e7a19c
516495b
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from pydantic import BaseModel


class PilotRequest(BaseModel):
    category: str
    buyingCompany: str
    supplier: str
    context: str = ''

class PilotResponse(BaseModel):
    x: float
    y: float