mshuaibi commited on
Commit
82097c6
·
1 Parent(s): b090566
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -388,11 +388,11 @@ def add_new_eval(
388
  )
389
  private_df["Model"] = model
390
  private_df.columns = [col.replace("\n", " ") for col in private_df.columns]
391
- output_str = ""
392
  for idx, row in private_df.iterrows():
393
  for col in private_df.columns:
394
  output_str += f"{col}: {row[col]}\n"
395
- yield f"✅ Private evaluation complete. Please consider submitting publicly once you are comfortable with the results.\n{output_str}"
396
 
397
  # Save contact information
398
  contact_info = {
 
388
  )
389
  private_df["Model"] = model
390
  private_df.columns = [col.replace("\n", " ") for col in private_df.columns]
391
+ output_str = f"Eval Type: {eval_type}\n"
392
  for idx, row in private_df.iterrows():
393
  for col in private_df.columns:
394
  output_str += f"{col}: {row[col]}\n"
395
+ yield f"✅ Private evaluation complete.\n\n{output_str}\nPlease consider submitting publicly once you are comfortable with the results."
396
 
397
  # Save contact information
398
  contact_info = {