Spaces:
Sleeping
Sleeping
feat: change decision_source type to string in AnalysisSummary schema
Browse files- app/schemas.py +1 -4
app/schemas.py
CHANGED
|
@@ -32,10 +32,7 @@ class AnalysisSummary(BaseModel):
|
|
| 32 |
|
| 33 |
is_ai_generated: bool
|
| 34 |
confidence: float = Field(..., ge=0.0, le=1.0)
|
| 35 |
-
decision_source:
|
| 36 |
-
"music_ai", "ses_analizi",
|
| 37 |
-
"preview", "auris_fusion", "auris_local",
|
| 38 |
-
]
|
| 39 |
model_version: str
|
| 40 |
indicators: List[str]
|
| 41 |
|
|
|
|
| 32 |
|
| 33 |
is_ai_generated: bool
|
| 34 |
confidence: float = Field(..., ge=0.0, le=1.0)
|
| 35 |
+
decision_source: str
|
|
|
|
|
|
|
|
|
|
| 36 |
model_version: str
|
| 37 |
indicators: List[str]
|
| 38 |
|