cs-models 0.0.807__py3-none-any.whl → 0.0.808__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cs-models might be problematic. Click here for more details.
- cs_models/resources/SmartDefGridCellQuestion/models.py +3 -0
- cs_models/resources/SmartDefGridCellQuestion/schemas.py +2 -0
- {cs_models-0.0.807.dist-info → cs_models-0.0.808.dist-info}/METADATA +1 -1
- {cs_models-0.0.807.dist-info → cs_models-0.0.808.dist-info}/RECORD +6 -6
- {cs_models-0.0.807.dist-info → cs_models-0.0.808.dist-info}/WHEEL +0 -0
- {cs_models-0.0.807.dist-info → cs_models-0.0.808.dist-info}/top_level.txt +0 -0
|
@@ -35,6 +35,9 @@ class SmartDefGridCellQuestionModel(Base):
|
|
|
35
35
|
topic_key = Column(JSON, nullable=True)
|
|
36
36
|
retrieval_hints = Column(JSON, nullable=True)
|
|
37
37
|
|
|
38
|
+
# Answer
|
|
39
|
+
answer_text = Column(Text, nullable=True)
|
|
40
|
+
|
|
38
41
|
# Queue & lifecycle
|
|
39
42
|
status = Column(Enum(QuestionStatus), nullable=False, default=QuestionStatus.pending)
|
|
40
43
|
priority = Column(Integer, nullable=False, default=5) # lower = higher priority
|
|
@@ -20,6 +20,8 @@ class SmartDefGridCellQuestionResourceSchema(Schema):
|
|
|
20
20
|
topic_key = fields.Raw(allow_none=True) # e.g., {"row":[...], "col":[...]}
|
|
21
21
|
retrieval_hints = fields.Raw(allow_none=True)
|
|
22
22
|
|
|
23
|
+
answer_text = fields.String(allow_none=True)
|
|
24
|
+
|
|
23
25
|
status = fields.String(required=True, validate=validate.OneOf(QUESTION_STATUS))
|
|
24
26
|
priority = fields.Integer(required=True)
|
|
25
27
|
attempts = fields.Integer(required=True)
|
|
@@ -966,8 +966,8 @@ cs_models/resources/SmartDefGridCellAnswerCitation/__init__.py,sha256=47DEQpj8HB
|
|
|
966
966
|
cs_models/resources/SmartDefGridCellAnswerCitation/models.py,sha256=pCNakAl08pSFTbuhJypF43zDfoapZDsvFPH2PP7QQqo,916
|
|
967
967
|
cs_models/resources/SmartDefGridCellAnswerCitation/schemas.py,sha256=1dYybWcoSuhP0OLqwQ3igNeexMcV-Nj0IqtBaPVap-Q,568
|
|
968
968
|
cs_models/resources/SmartDefGridCellQuestion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
969
|
-
cs_models/resources/SmartDefGridCellQuestion/models.py,sha256=
|
|
970
|
-
cs_models/resources/SmartDefGridCellQuestion/schemas.py,sha256=
|
|
969
|
+
cs_models/resources/SmartDefGridCellQuestion/models.py,sha256=dQ8HFXuRJNeQJlDzAXVIsvLLm5AkWgU0oKtWpvzGM40,3033
|
|
970
|
+
cs_models/resources/SmartDefGridCellQuestion/schemas.py,sha256=ui0WrwQ55fCWqBZ3tcibfS_4gIiYY00ls_H0C9VIEaQ,1586
|
|
971
971
|
cs_models/resources/SmartDefGridCellValue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
972
972
|
cs_models/resources/SmartDefGridCellValue/models.py,sha256=s5Tnj7s633qbAM14Eh4OU1QHN-CeSUe7GZSGrzywOGA,2259
|
|
973
973
|
cs_models/resources/SmartDefGridCellValue/schemas.py,sha256=fqp1odR0nPheKjGeLScs9lPR6bDZzWVm2x78NNLuIRc,637
|
|
@@ -1318,7 +1318,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1318
1318
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1319
1319
|
cs_models/utils/utils.py,sha256=BzCDk3u1np7DoJQqCZIJN4f80JNHvJoWO4qEFgolN-8,4474
|
|
1320
1320
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1321
|
-
cs_models-0.0.
|
|
1322
|
-
cs_models-0.0.
|
|
1323
|
-
cs_models-0.0.
|
|
1324
|
-
cs_models-0.0.
|
|
1321
|
+
cs_models-0.0.808.dist-info/METADATA,sha256=JkQmTZvrWgCKwN46aRRzPwqz7O5JQ16uyx-Wp-RUtVg,751
|
|
1322
|
+
cs_models-0.0.808.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
1323
|
+
cs_models-0.0.808.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1324
|
+
cs_models-0.0.808.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|