Spaces:
Runtime error
Runtime error
correct grammar for criteria
Browse files- crew/til.py +4 -4
crew/til.py
CHANGED
|
@@ -92,16 +92,16 @@ class TilCrew:
|
|
| 92 |
class TilFeedbackResult(BaseModel):
|
| 93 |
til: str = Field(description="TIL content the user has provided on which we are performing the analysis.")
|
| 94 |
insightful_score: int = Field(
|
| 95 |
-
description="TIL
|
| 96 |
insightful_reason: str = Field(description="Reason for low insightful_score if it is not 10")
|
| 97 |
factuality_score: int = Field(
|
| 98 |
-
description="TIL
|
| 99 |
factuality_reason: str = Field(description="Reason for low factuality_score if it is not 10")
|
| 100 |
simplicity_score: int = Field(
|
| 101 |
-
description="TIL
|
| 102 |
simplicity_reason: str = Field(description="Reason for low simplicity_score if it is not 10")
|
| 103 |
grammatical_score: int = Field(
|
| 104 |
-
description="TIL
|
| 105 |
grammatical_reason: str = Field(description="Reason for low grammatical_score if it is not 10")
|
| 106 |
final_suggestion: str = Field(
|
| 107 |
description="Final suggested version of the TIL")
|
|
|
|
| 92 |
class TilFeedbackResult(BaseModel):
|
| 93 |
til: str = Field(description="TIL content the user has provided on which we are performing the analysis.")
|
| 94 |
insightful_score: int = Field(
|
| 95 |
+
description="TIL scores should be based solely on insightful criteria, with no other factors considered.")
|
| 96 |
insightful_reason: str = Field(description="Reason for low insightful_score if it is not 10")
|
| 97 |
factuality_score: int = Field(
|
| 98 |
+
description="TIL scores should be based solely on factuality criteria, with no other factors considered.")
|
| 99 |
factuality_reason: str = Field(description="Reason for low factuality_score if it is not 10")
|
| 100 |
simplicity_score: int = Field(
|
| 101 |
+
description="TIL scores should be based solely on simplicity criteria, with no other factors considered.")
|
| 102 |
simplicity_reason: str = Field(description="Reason for low simplicity_score if it is not 10")
|
| 103 |
grammatical_score: int = Field(
|
| 104 |
+
description="TIL scores should be based solely on grammatical criteria, with no other factors considered.")
|
| 105 |
grammatical_reason: str = Field(description="Reason for low grammatical_score if it is not 10")
|
| 106 |
final_suggestion: str = Field(
|
| 107 |
description="Final suggested version of the TIL")
|