ahmed-eisa commited on
Commit
e26e7fa
·
1 Parent(s): ff64e1b
Files changed (1) hide show
  1. schemas.py +1 -1
schemas.py CHANGED
@@ -13,7 +13,7 @@ class ModelRequest(BaseModel):
13
 
14
  class ModelResponse(BaseModel):
15
  request_id: Annotated[str, Field(default_factory=lambda: uuid4().hex)]
16
- ip: Annotated[str|None, IPvAnyAddress]
17
  content: Annotated[str | None, Field(min_length=0, max_length=10000)]
18
  created_at: datetime = datetime.now()
19
 
 
13
 
14
  class ModelResponse(BaseModel):
15
  request_id: Annotated[str, Field(default_factory=lambda: uuid4().hex)]
16
+ ip: Annotated[str | None, IPvAnyAddress]
17
  content: Annotated[str | None, Field(min_length=0, max_length=10000)]
18
  created_at: datetime = datetime.now()
19