We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2562c3a commit a499ae6Copy full SHA for a499ae6
src/harmony/schemas/requests/text.py
@@ -67,7 +67,7 @@ class Question(BaseModel):
67
topics_auto: Optional[list] = Field(None, description="Automated list of topics identified by model")
68
topics_strengths: Optional[dict] = Field(None, description="Automated list of topics identified by model with strength of topic")
69
nearest_match_from_mhc_auto: Optional[dict] = Field(None, description="Automatically identified nearest MHC match")
70
- closest_catalogue_question_match: CatalogueQuestion = Field(
+ closest_catalogue_question_match: Optional[CatalogueQuestion] = Field(
71
None, description="The closest question match in the catalogue for the question"
72
)
73
model_config = ConfigDict(
0 commit comments