Spaces:
Running
Running
I cannot generate a commit message without knowing the specific changes made to `interface.py`.
Browse files- interface.py +2 -1
interface.py
CHANGED
|
@@ -459,7 +459,8 @@ async def process_batch_testing(
|
|
| 459 |
output_dir.mkdir(exist_ok=True)
|
| 460 |
|
| 461 |
timestamp = pd.Timestamp.now().strftime("%Y%m%d_%H%M%S")
|
| 462 |
-
|
|
|
|
| 463 |
output_path = output_dir / output_filename
|
| 464 |
|
| 465 |
df.to_csv(output_path, index=False, encoding='utf-8')
|
|
|
|
| 459 |
output_dir.mkdir(exist_ok=True)
|
| 460 |
|
| 461 |
timestamp = pd.Timestamp.now().strftime("%Y%m%d_%H%M%S")
|
| 462 |
+
thinking_tag = "_thinking" if thinking_enabled else ""
|
| 463 |
+
output_filename = f"batch_test_results_{model_name}{thinking_tag}_{timestamp}.csv"
|
| 464 |
output_path = output_dir / output_filename
|
| 465 |
|
| 466 |
df.to_csv(output_path, index=False, encoding='utf-8')
|