Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
VoicegainGithub authored and DrJJ committed Apr 4, 2024
1 parent 542ecbe commit 6b877ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions voicegain_speech/models/call_review_answer_alone.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class CallReviewAnswerAlone(object):
and the value is json key in definition.
"""
openapi_types = {
'ai_justification': 'list[SubCriterionSatisfied]',
'ai_justification': 'list[CriterionSatisfied]',
'answer_choice': 'str',
'answer_value': 'float',
'answered_by': 'str',
Expand Down Expand Up @@ -85,7 +85,7 @@ def ai_justification(self):
Present only if the answer was provided by AI. Lists all the sub-criteria that were satisfied to determine the answer. # noqa: E501
:return: The ai_justification of this CallReviewAnswerAlone. # noqa: E501
:rtype: list[SubCriterionSatisfied]
:rtype: list[CriterionSatisfied]
"""
return self._ai_justification

Expand All @@ -96,7 +96,7 @@ def ai_justification(self, ai_justification):
Present only if the answer was provided by AI. Lists all the sub-criteria that were satisfied to determine the answer. # noqa: E501
:param ai_justification: The ai_justification of this CallReviewAnswerAlone. # noqa: E501
:type: list[SubCriterionSatisfied]
:type: list[CriterionSatisfied]
"""

self._ai_justification = ai_justification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class CallReviewConfigQuestionBaseWithAnswer(object):
'max_value': 'float',
'question': 'str',
'cr_question_id': 'str',
'ai_justification': 'list[SubCriterionSatisfied]',
'ai_justification': 'list[CriterionSatisfied]',
'answer_choice': 'str',
'answer_value': 'float',
'answered_by': 'str',
Expand Down Expand Up @@ -239,7 +239,7 @@ def ai_justification(self):
Present only if the answer was provided by AI. Lists all the sub-criteria that were satisfied to determine the answer. # noqa: E501
:return: The ai_justification of this CallReviewConfigQuestionBaseWithAnswer. # noqa: E501
:rtype: list[SubCriterionSatisfied]
:rtype: list[CriterionSatisfied]
"""
return self._ai_justification

Expand All @@ -250,7 +250,7 @@ def ai_justification(self, ai_justification):
Present only if the answer was provided by AI. Lists all the sub-criteria that were satisfied to determine the answer. # noqa: E501
:param ai_justification: The ai_justification of this CallReviewConfigQuestionBaseWithAnswer. # noqa: E501
:type: list[SubCriterionSatisfied]
:type: list[CriterionSatisfied]
"""

self._ai_justification = ai_justification
Expand Down

0 comments on commit 6b877ae

Please sign in to comment.