Spaces:
Runtime error
Runtime error
Update schemas.py
Browse files- schemas.py +4 -1
schemas.py
CHANGED
@@ -11,4 +11,7 @@ class SentimentResultCreate(SentimentResultBase):
|
|
11 |
|
12 |
class SentimentResult(SentimentResultBase):
|
13 |
id: int
|
14 |
-
created_at: datetime
|
|
|
|
|
|
|
|
11 |
|
12 |
class SentimentResult(SentimentResultBase):
|
13 |
id: int
|
14 |
+
created_at: datetime
|
15 |
+
|
16 |
+
# Ensure SentimentResult inherits from BaseModel
|
17 |
+
SentimentResultBase.update_forward_refs()
|