This commit is contained in:
omahs 2025-05-13 11:34:21 +02:00 committed by GitHub
parent ae8ed49280
commit 4bb6ec2ee5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ RUN git checkout 4eddc7db6449a5ade3e37285747c8b208cd54ce7
RUN micromamba create -n sci-agent python=3.10 pip setuptools wheel
RUN micromamba run -n sci-agent pip install -r requirements.txt
# Replace all occurence of conda with micromamba under the /workspace
# Replace all occurrences of conda with micromamba under the /workspace
RUN find ./ -type f -exec sed -i 's/conda/micromamba/g' {} \;
# pushd evaluation/scienceagentbench

View File

@ -61,7 +61,7 @@ make build
# Start the application
make run
```
Or to run backend and frontend seperately.
Or to run backend and frontend separately.
```sh
# Start the backend from the root directory

View File

@ -214,7 +214,7 @@ def parse_git_header(text: str | list[str]) -> header | None:
new_version = g.group(2)
continue
# git always has it's own special headers
# git always has its own special headers
o = git_header_old_line.match(line)
if o:
old_path = o.group(1)

View File

@ -467,7 +467,7 @@ def update_existing_pull_request(
comment_id = issue.thread_ids[count]
handler.reply_to_comment(issue.number, comment_id, reply_comment)
except (json.JSONDecodeError, TypeError):
msg = f'Error occured when replying to threads; success explanations {additional_message}'
msg = f'Error occurred when replying to threads; success explanations {additional_message}'
handler.send_comment_msg(issue.number, msg)
return pr_url