Skip to content

Commit c8eef49

Browse files
author
Arjun Balaji
committed
implement _env
1 parent 7df1dae commit c8eef49

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

terminal-bench-test/main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ def __init__(self, model_name: str | None = None, *args, **kwargs):
2020
self._start_url = 'https://amzn.awsapps.com/start'
2121
self.region = 'us-east-1'
2222

23+
@property
24+
def _env(self) -> dict[str, str]:
25+
# SIGv4 = 1 for AWS credentials
26+
env = {}
27+
return env
28+
2329
@property
2430
def _install_agent_script_path(self) -> os.PathLike:
2531
return Path(__file__).parent / "setup_amazon_q.sh"

0 commit comments

Comments
 (0)