chore: 允许 ai-service Python 文件入库(.gitignore 例外)

This commit is contained in:
weijuesen
2026-08-12 16:22:45 +08:00
parent 99137a6fb4
commit b89ad5e865
9 changed files with 278 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from pydantic import BaseModel
class BBox(BaseModel):
x: float
y: float
w: float
h: float
class Detection(BaseModel):
bbox: BBox
class_name: str
confidence: float