theRealNG commited on
Commit
1f8fc27
·
1 Parent(s): a9f3aed

correct grammar for criteria

Browse files
Files changed (1) hide show
  1. 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 score on insightful criteria and shouldn't take anything else into account.")
96
  insightful_reason: str = Field(description="Reason for low insightful_score if it is not 10")
97
  factuality_score: int = Field(
98
- description="TIL score on factuality criteria and shouldn't take anything else into account.")
99
  factuality_reason: str = Field(description="Reason for low factuality_score if it is not 10")
100
  simplicity_score: int = Field(
101
- description="TIL score on simplicity criteria and shouldn't take anything else into account.")
102
  simplicity_reason: str = Field(description="Reason for low simplicity_score if it is not 10")
103
  grammatical_score: int = Field(
104
- description="TIL score on grammatical criteria and shouldn't take anything else into account.")
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")