File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,6 @@ async def a_execute_test_cases(
308
308
309
309
for metric in metrics :
310
310
metric_metadata = create_metric_metadata (metric )
311
- print (metric_metadata )
312
311
if isinstance (test_case , ConversationalTestCase ):
313
312
# index hardcoded as the last message for now
314
313
api_test_case .update (
Original file line number Diff line number Diff line change @@ -137,7 +137,6 @@ async def measure_metric_task(
137
137
138
138
try :
139
139
await metric .a_measure (tc , _show_indicator = False )
140
- print (metric .score , metric .reason )
141
140
finish_text = "Done"
142
141
except TypeError :
143
142
try :
Original file line number Diff line number Diff line change @@ -193,10 +193,8 @@ def capture_contextvars(single_obj):
193
193
194
194
195
195
def update_contextvars (single_obj , contextvars_dict ):
196
- print ("******" )
197
196
for attr , (context_var , value ) in contextvars_dict .items ():
198
197
context_var .set (value )
199
- print (context_var )
200
198
setattr (single_obj , attr , context_var )
201
199
202
200
You can’t perform that action at this time.
0 commit comments