brestok's picture
update
4e7a19c
raw
history blame contribute delete
204 Bytes
from pydantic import BaseModel
class PilotRequest(BaseModel):
category: str
buyingCompany: str
supplier: str
context: str = ''
class PilotResponse(BaseModel):
x: float
y: float