Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/install-eval-clis/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ runs:
using: composite
steps:
- name: Install Claude Code
run: npm install -g @anthropic-ai/claude-code@2.1.160
run: npm install -g @anthropic-ai/claude-code@2.1.220
shell: pwsh

- name: Install GitHub Copilot CLI
run: npm install -g @github/copilot@1.0.57
run: npm install -g @github/copilot@1.0.75
shell: pwsh
1 change: 1 addition & 0 deletions .github/workflows/claude-evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
options:
- "claude-sonnet-4-6"
- "claude-opus-4-8"
- "claude-opus-5"
Comment thread
Groenbech96 marked this conversation as resolved.
- "claude-haiku-4-5"
Comment on lines 15 to 18

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Claude Code only keep the latest models

Suggested change
- "claude-sonnet-4-6"
- "claude-opus-4-8"
- "claude-opus-5"
- "claude-haiku-4-5"
- "claude-sonnet-5"
- "claude-opus-5"
- "claude-haiku-4-5"

category:
description: "Evaluation category to run"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
- "claude-opus-4.6"
- "claude-opus-4.7"
- "claude-opus-4.8"
- "claude-opus-5"
Comment thread
Groenbech96 marked this conversation as resolved.
- "gpt-5.5"
- "gpt-5.4"
- "gpt-5.3-codex"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/copilot-evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
- "claude-opus-4.6"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could do a clean up here, gpt-5.2 series are no longer avaiable. Probably no need to keep around the olders ones like claude 4.6

New ones:

  • "gpt-5.6-sol"
  • "gpt-5.6-terra"
  • "gpt-5.6-luna"
  • "mai-code-1-flash"
  • "gemini-3.6-flash"
  • "claude-sonnet-5"

- "claude-opus-4.7"
- "claude-opus-4.8"
- "claude-opus-5"
Comment thread
Groenbech96 marked this conversation as resolved.
- "gpt-5.5"
- "gpt-5.4"
- "gpt-5.3-codex"
Expand Down
2 changes: 2 additions & 0 deletions src/bcbench/cli_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"claude-opus-4.6",
"claude-opus-4.7",
"claude-opus-4.8",
"claude-opus-5",
"gpt-5.5",
"gpt-5.4",
"gpt-5.3-codex",
Expand All @@ -43,6 +44,7 @@
Literal[
"claude-sonnet-4-6",
"claude-opus-4-8",
"claude-opus-5",
"claude-haiku-4-5",
],
typer.Option(help="Claude Code model to use"),
Expand Down
Loading