```diff
--- test_files/123-original.txt	2025-03-07 19:06:23
+++ test_files/123-modified.txt	2025-03-07 19:06:23
@@ -1,10 +1,13 @@
+# isort: skip_file
+
 import argparse
 
-from agent import composio_toolset, crew
 from swekit.benchmark.run_evaluation import evaluate
 from swekit.config.store import IssueConfig
 
+from agent import composio_toolset, crew
 
+
 def bench(workspace_id: str, issue_config: IssueConfig) -> str:
     """Run benchmark on the agent."""
 
@@ -16,7 +19,7 @@
         inputs={
             "repo": issue_config.repo_name,
             "issue": issue_config.issue_desc,
-        }
+        },
     )
 
 
@@ -53,4 +56,5 @@
         dry_run=False,
         test_range=test_range,
         test_instance_ids=test_instance_ids_list,
+        image_name="composio/composio:latest",
     )
```
