update requirements
Former-commit-id: 82ebbbbb80b3f3f616274210970738d0f44b5a0a
This commit is contained in:
@@ -32,9 +32,9 @@ async def lifespan(app: FastAPI): # collects GPU memory
|
||||
|
||||
|
||||
def to_json(data: BaseModel) -> str:
|
||||
try:
|
||||
try: # pydantic v2
|
||||
return json.dumps(data.model_dump(exclude_unset=True), ensure_ascii=False)
|
||||
except:
|
||||
except: # pydantic v1
|
||||
return data.json(exclude_unset=True, ensure_ascii=False)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user