Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow filtering samples by compound expressions including multiple scorers #911

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Log viewer: Add timestamps to transcript events.
- Log viewer: Metadata which contains images will now render the images.
- Log viewer: Show custom tool call views in messages display.
- Log viewer: Allow filtering samples by compound expressions including multiple scorers.
- Bugfix: Correctly read and forward image detail property.
- Bugfix: Correct resolution of global eval override of task or sample sandboxes.
- Bugfix: Don't do eval log listing on background threads (s3fs can deadlock when run from mutliple threads)
Expand Down
4 changes: 4 additions & 0 deletions src/inspect_ai/_view/www/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,10 @@ table.table.table-sm td {
overflow: unset;
}

.custom-dropdown-item:hover {
background-color: var(--bs-secondary-bg);
}

pre[class*="language-"].tool-output,
.tool-output {
background-color: #f8f8f8;
Expand Down
4 changes: 4 additions & 0 deletions src/inspect_ai/_view/www/dist/assets/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -14975,6 +14975,10 @@ table.table.table-sm td {
overflow: unset;
}

.custom-dropdown-item:hover {
background-color: var(--bs-secondary-bg);
}

pre[class*="language-"].tool-output,
.tool-output {
background-color: #f8f8f8;
Expand Down
Loading