File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -122,8 +122,9 @@ def main():
122122 load_dotenv ()
123123 openai .api_key = os .getenv ("OPENAI_API_KEY" )
124124
125- print (f"{ ANSI_BRIGHT_MAGENTA } [STARTING EVALUATION]{ ANSI_RESET } NOTE: `operate` output is silenced. " )
125+ print (f"{ ANSI_BRIGHT_MAGENTA } [STARTING EVALUATION]{ ANSI_RESET } " )
126126
127+ passed = 0 ; failed = 0
127128 for objective , guideline in TEST_CASES .items ():
128129 print (f"{ ANSI_BLUE } [EVALUATING]{ ANSI_RESET } '{ objective } '" )
129130
@@ -133,6 +134,9 @@ def main():
133134 else :
134135 print (f"{ ANSI_RED } [FAILED]{ ANSI_RESET } '{ objective } '" )
135136
137+ print (
138+ f"{ ANSI_BRIGHT_MAGENTA } [EVALUATION COMPLETE]{ ANSI_RESET } { passed } tests passed, { failed } tests failed"
139+ )
136140
137141if __name__ == "__main__" :
138142 main ()
You can’t perform that action at this time.
0 commit comments