Rthur2003 commited on
Commit
80d6ccc
·
1 Parent(s): 8852255

feat: change decision_source type to string in AnalysisSummary schema

Browse files
Files changed (1) hide show
  1. 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: Literal[
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