Skip to content

Commit 50aeeaa

Browse files
Merge branch 'main' into ads/eng-2187-docs-ensure-links-are-valid-for-arxiv-paper-dn-blog-and-hf
2 parents c44c42a + 717ccf7 commit 50aeeaa

5 files changed

Lines changed: 175 additions & 11 deletions

File tree

.github/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}"
8181

8282
- name: Renovate
83-
uses: renovatebot/github-action@8058cfe11252651a837a58e2e3370fbc0e72c658 # v42.0.4
83+
uses: renovatebot/github-action@12f8ed8e6a936a00dc66b628d224488ac406b5e8 # v42.0.5
8484
with:
8585
configurationFile: "${{ env.RENOVATE_ONBOARDING_CONFIG_FILE_NAME }}"
8686
token: "${{ steps.app-token.outputs.token }}"

.hooks/generate_pr_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def get_diff(base_ref: str, source_ref: str, *, exclude: list[str] | None = None
6666
def main(
6767
base_ref: str = "origin/main",
6868
source_ref: str = "HEAD",
69-
generator_id: str = "groq/meta-llama/llama-4-scout-17b-16e-instruct",
69+
generator_id: str = "o3-mini",
7070
max_diff_lines: int = 1000,
7171
exclude: list[str] | None = None,
7272
) -> None:

airtbench/main.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -334,15 +334,14 @@ async def check_for_flags(content: str) -> bool:
334334
logger.success(f"|- Got the flag for {challenge.id}!")
335335
dn.log_metric("found_flag", 1)
336336

337-
flag_score = dn.Score(
338-
name="flag_found",
339-
value=1.0,
337+
dn.log_metric(
338+
"flag_found",
339+
1.0,
340340
attributes={
341341
"challenge_id": challenge.id,
342342
"flag": match[:10] + "...",
343343
},
344344
)
345-
dn.log_score(flag_score)
346345
return True
347346
return False
348347

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies = [
77
"backoff>=2.2.1",
88
"cyclopts>=3.12.0",
99
"docker>=7.1.0",
10-
"dreadnode>=1.0.0rc1",
10+
"dreadnode==1.0.6",
1111
"ipykernel>=6.29.5",
1212
"mypy>=1.15.0",
1313
"pythonnet>=3.0.5",

0 commit comments

Comments
 (0)