feat: 更新 EmojiResponse 模型,添加 format 和 usage_count 字段

This commit is contained in:
DrSmoothl
2026-04-22 23:37:50 +08:00
parent c0be64f268
commit 465c5bd97a
2 changed files with 8 additions and 0 deletions

View File

@@ -8,9 +8,11 @@ class EmojiResponse(BaseModel):
id: int
full_path: str
format: str
emoji_hash: str
description: str
query_count: int
usage_count: int
is_registered: bool
is_banned: bool
emotion: Optional[str]