inspect-ai 0.3.107__tar.gz → 0.3.109__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- inspect_ai-0.3.109/CHANGELOG.md +1354 -0
- inspect_ai-0.3.109/PKG-INFO +144 -0
- inspect_ai-0.3.109/docs/CHANGELOG.md +1354 -0
- inspect_ai-0.3.109/docs/_sandbox-dockerfile.md +9 -0
- inspect_ai-0.3.109/docs/agent-custom.qmd +427 -0
- inspect_ai-0.3.109/docs/reference/_sidebar.yml +644 -0
- inspect_ai-0.3.109/docs/reference/inspect_ai.scorer.qmd +54 -0
- inspect_ai-0.3.109/docs/tools-custom.qmd +303 -0
- inspect_ai-0.3.109/docs/tools-mcp.qmd +287 -0
- inspect_ai-0.3.109/examples/surfer.py +79 -0
- inspect_ai-0.3.109/pyproject.toml +193 -0
- inspect_ai-0.3.109/src/inspect_ai/_eval/task/log.py +361 -0
- inspect_ai-0.3.109/src/inspect_ai/_eval/task/run.py +1084 -0
- inspect_ai-0.3.109/src/inspect_ai/_util/dateutil.py +40 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/schema.py +71 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/CLAUDE.md +15 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/dist/assets/index.css +20841 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/dist/assets/index.js +92337 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/package.json +98 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/@types/log.d.ts +1670 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/App.css +1209 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/App.tsx +178 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/appearance/icons.ts +129 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/content/RenderedContent.tsx +298 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogItem.ts +18 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogListFooter.module.css +55 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogListFooter.tsx +67 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogPager.module.css +29 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogPager.tsx +134 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogsFilterInput.module.css +5 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogsFilterInput.tsx +31 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogsPanel.module.css +12 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/LogsPanel.tsx +178 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/LogListGrid.module.css +115 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/LogListGrid.tsx +304 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/CompletedDate.module.css +6 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/CompletedDate.tsx +64 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/EmptyCell.module.css +3 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/EmptyCell.tsx +7 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/FileName.module.css +20 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/FileName.tsx +52 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Icon.module.css +11 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Icon.tsx +35 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Model.module.css +6 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Model.tsx +34 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Score.module.css +6 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Score.tsx +61 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Status.module.css +15 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Status.tsx +95 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Task.module.css +20 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/Task.tsx +50 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-list/grid/columns/columns.ts +27 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/LogView.tsx +154 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/LogViewContainer.tsx +141 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/LogViewLayout.tsx +77 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx +140 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/PrimaryBar.module.css +55 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/PrimaryBar.tsx +112 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/ResultsPanel.tsx +197 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/ScoreGrid.tsx +121 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/SecondaryBar.tsx +231 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/TitleView.tsx +56 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/navbar/Navbar.module.css +57 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/navbar/Navbar.tsx +117 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/navbar/useBreadcrumbTruncation.ts +128 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/plan/DatasetDetailView.tsx +38 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/plan/DetailStep.tsx +35 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css +49 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/plan/ScorerDetailView.tsx +31 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/routing/AppRouter.tsx +82 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/routing/RouteDispatcher.tsx +28 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/routing/sampleNavigation.ts +256 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/routing/url.ts +341 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/samples/SampleDisplay.tsx +490 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/samples/descriptor/score/ScoreDescriptor.tsx +99 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/samples/transcript/SubtaskEventView.tsx +122 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/samples/transcript/TranscriptPanel.tsx +77 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/samples/transcript/outline/tree-visitors.ts +192 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/samples/transcript/transform/treeify.ts +540 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/types.ts +185 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/client/api/api-http.ts +221 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/client/api/api-shared.ts +15 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/client/api/client-api.ts +348 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/client/remote/remoteLogFile.ts +264 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/components/TextInput.module.css +45 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/components/TextInput.tsx +52 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/constants.ts +53 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/img/inspect-16.svg +10 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/img/inspect-back.svg +5 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/img/inspect-file.svg +26 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/img/inspect-forward.svg +7 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/img/inspect-home.svg +18 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/scoring/metrics.ts +75 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/scoring/scores.ts +19 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/scoring/types.ts +11 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/appSlice.ts +303 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/clientEvents.ts +73 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/clientEventsService.ts +105 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/hooks.ts +675 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/log.ts +19 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/logPolling.ts +202 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/logSlice.ts +253 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/logsSlice.ts +328 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/state/samplePolling.ts +340 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/tests/utils/path.test.ts +54 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/utils/evallog.ts +31 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/utils/path.ts +68 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/src/utils/uri.ts +81 -0
- inspect_ai-0.3.109/src/inspect_ai/_view/www/yarn.lock +5233 -0
- inspect_ai-0.3.109/src/inspect_ai/analysis/beta/_dataframe/util.py +258 -0
- inspect_ai-0.3.109/src/inspect_ai/log/_recorders/buffer/database.py +733 -0
- inspect_ai-0.3.109/src/inspect_ai/model/_model.py +1505 -0
- inspect_ai-0.3.109/src/inspect_ai/model/_providers/_anthropic_citations.py +155 -0
- inspect_ai-0.3.109/src/inspect_ai/model/_providers/providers.py +304 -0
- inspect_ai-0.3.109/src/inspect_ai/model/_providers/vertex.py +517 -0
- inspect_ai-0.3.109/src/inspect_ai/tool/_mcp/_mcp.py +304 -0
- inspect_ai-0.3.109/src/inspect_ai/tool/_mcp/sampling.py +141 -0
- inspect_ai-0.3.109/src/inspect_ai/tool/_tools/_bash_session.py +247 -0
- inspect_ai-0.3.109/src/inspect_ai/tool/_tools/_web_browser/_web_browser.py +454 -0
- inspect_ai-0.3.109/src/inspect_ai/util/_anyio.py +58 -0
- inspect_ai-0.3.109/src/inspect_ai.egg-info/PKG-INFO +144 -0
- inspect_ai-0.3.109/src/inspect_ai.egg-info/SOURCES.txt +1388 -0
- inspect_ai-0.3.109/src/inspect_ai.egg-info/requires.txt +94 -0
- inspect_ai-0.3.109/tests/analysis/test_import.py +396 -0
- inspect_ai-0.3.109/tests/model/providers/test_vertex.py +57 -0
- inspect_ai-0.3.109/tests/util/test_anyio.py +137 -0
- inspect_ai-0.3.107/CHANGELOG.md +0 -1333
- inspect_ai-0.3.107/PKG-INFO +0 -144
- inspect_ai-0.3.107/docs/CHANGELOG.md +0 -1333
- inspect_ai-0.3.107/docs/_sandbox-dockerfile.md +0 -8
- inspect_ai-0.3.107/docs/agent-custom.qmd +0 -419
- inspect_ai-0.3.107/docs/reference/_sidebar.yml +0 -642
- inspect_ai-0.3.107/docs/reference/inspect_ai.scorer.qmd +0 -52
- inspect_ai-0.3.107/docs/tools-custom.qmd +0 -296
- inspect_ai-0.3.107/docs/tools-mcp.qmd +0 -295
- inspect_ai-0.3.107/examples/surfer.py +0 -78
- inspect_ai-0.3.107/pyproject.toml +0 -193
- inspect_ai-0.3.107/src/inspect_ai/_eval/task/log.py +0 -361
- inspect_ai-0.3.107/src/inspect_ai/_eval/task/run.py +0 -1084
- inspect_ai-0.3.107/src/inspect_ai/_util/datetime.py +0 -10
- inspect_ai-0.3.107/src/inspect_ai/_view/schema.py +0 -60
- inspect_ai-0.3.107/src/inspect_ai/_view/www/CLAUDE.md +0 -15
- inspect_ai-0.3.107/src/inspect_ai/_view/www/dist/assets/index.css +0 -20569
- inspect_ai-0.3.107/src/inspect_ai/_view/www/dist/assets/index.js +0 -88029
- inspect_ai-0.3.107/src/inspect_ai/_view/www/package.json +0 -97
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/@types/log.d.ts +0 -1670
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/App.css +0 -1142
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/App.tsx +0 -171
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/appearance/icons.ts +0 -113
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/content/MetaDataView.module.css +0 -35
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/content/MetaDataView.tsx +0 -101
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/content/RenderedContent.tsx +0 -300
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/LogView.tsx +0 -157
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/LogViewContainer.tsx +0 -167
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/LogViewLayout.tsx +0 -102
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/Navbar.tsx +0 -59
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/PrimaryBar.module.css +0 -53
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/PrimaryBar.tsx +0 -140
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/ResultsPanel.tsx +0 -247
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/ScoreGrid.tsx +0 -121
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/SecondaryBar.tsx +0 -225
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx +0 -143
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/utils.ts +0 -34
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/plan/DatasetDetailView.tsx +0 -38
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/plan/DetailStep.tsx +0 -35
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css +0 -48
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/plan/ScorerDetailView.tsx +0 -31
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/routing/AppRouter.tsx +0 -58
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/routing/sampleNavigation.ts +0 -187
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/routing/url.ts +0 -168
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/samples/SampleDisplay.tsx +0 -504
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/samples/descriptor/score/ScoreDescriptor.tsx +0 -99
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/samples/transcript/SubtaskEventView.tsx +0 -122
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/samples/transcript/TranscriptPanel.tsx +0 -77
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/samples/transcript/outline/tree-visitors.ts +0 -187
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/samples/transcript/transform/treeify.ts +0 -524
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/EvalStatus.module.css +0 -15
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/EvalStatus.tsx +0 -72
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/LogDirectoryTitleView.module.css +0 -16
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/LogDirectoryTitleView.tsx +0 -70
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/Sidebar.module.css +0 -77
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/Sidebar.tsx +0 -119
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/SidebarLogEntry.module.css +0 -29
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/SidebarLogEntry.tsx +0 -96
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/SidebarScoreView.module.css +0 -23
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/SidebarScoreView.tsx +0 -44
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/SidebarScoresView.module.css +0 -35
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/sidebar/SidebarScoresView.tsx +0 -63
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/types.ts +0 -165
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/client/api/api-http.ts +0 -220
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/client/api/api-shared.ts +0 -47
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/client/api/client-api.ts +0 -348
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/client/remote/remoteLogFile.ts +0 -232
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/constants.ts +0 -35
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/appSlice.ts +0 -283
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/hooks.ts +0 -558
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/logPolling.ts +0 -200
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/logSlice.ts +0 -244
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/logsPolling.ts +0 -118
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/logsSlice.ts +0 -186
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/state/samplePolling.ts +0 -338
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/tests/utils/path.test.ts +0 -54
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/utils/path.ts +0 -40
- inspect_ai-0.3.107/src/inspect_ai/_view/www/src/utils/uri.ts +0 -32
- inspect_ai-0.3.107/src/inspect_ai/_view/www/yarn.lock +0 -5196
- inspect_ai-0.3.107/src/inspect_ai/analysis/beta/_dataframe/util.py +0 -162
- inspect_ai-0.3.107/src/inspect_ai/log/_recorders/buffer/database.py +0 -694
- inspect_ai-0.3.107/src/inspect_ai/model/_model.py +0 -1505
- inspect_ai-0.3.107/src/inspect_ai/model/_providers/_anthropic_citations.py +0 -158
- inspect_ai-0.3.107/src/inspect_ai/model/_providers/providers.py +0 -304
- inspect_ai-0.3.107/src/inspect_ai/model/_providers/vertex.py +0 -514
- inspect_ai-0.3.107/src/inspect_ai/tool/_mcp/_mcp.py +0 -299
- inspect_ai-0.3.107/src/inspect_ai/tool/_mcp/sampling.py +0 -134
- inspect_ai-0.3.107/src/inspect_ai/tool/_tools/_bash_session.py +0 -250
- inspect_ai-0.3.107/src/inspect_ai/tool/_tools/_web_browser/_web_browser.py +0 -459
- inspect_ai-0.3.107/src/inspect_ai/util/_anyio.py +0 -49
- inspect_ai-0.3.107/src/inspect_ai.egg-info/PKG-INFO +0 -144
- inspect_ai-0.3.107/src/inspect_ai.egg-info/SOURCES.txt +0 -1358
- inspect_ai-0.3.107/src/inspect_ai.egg-info/requires.txt +0 -94
- inspect_ai-0.3.107/tests/analysis/test_import.py +0 -396
- inspect_ai-0.3.107/tests/model/providers/test_vertex.py +0 -57
- inspect_ai-0.3.107/tests/util/test_anyio.py +0 -72
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.devcontainer/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.devcontainer/devcontainer.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.dockerignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.editorconfig +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/dependabot.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/pull_request_template.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/workflows/build.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/workflows/docker.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/workflows/docs.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/workflows/log_viewer.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/workflows/pypi.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.github/workflows/vscode.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.gitignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.pre-commit-config.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.pylintrc +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.vscode/extensions.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.vscode/launch.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/.vscode/settings.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/CITATION.cff +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/CLAUDE.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/LICENSE +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/MANIFEST.in +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/Makefile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/.gitignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/CNAME +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_agent_limits.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_container_limits.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_errors_and_retries.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_max_samples.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_message_limits.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_metadata_typing.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_model-providers.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_quarto.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_sample-preservation.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_sandbox-image.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_sandboxenv-interface.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_setting_max_samples.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_shuffling-choices.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_store_typing.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_token_limits.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_tools-annotations-required.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_tools-basics.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_tools-configuration.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_tools-standard.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_variables.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_vscode-viewing-logs.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/_working_limits.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/agent-bridge.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/agents.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/approval.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/caching.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/dataframe.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/datasets.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/errors-and-limits.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/eval-logs.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/eval-sets.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/evals/evals.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/evals/evals.ejs +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/evals/evals.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/evals/import.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/evals/index.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/evals/listing.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/extensions.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/human-agent.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/aisi-logo.svg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/eval-log.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-activity-bar.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-human-agent-container.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-human-agent.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-multiple-models.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-terminal-transcript.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-answers.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-filter.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-history.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-home.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-info.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-log-link.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-logging-console.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-logging.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-main.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-messages.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-metadata.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-scoring.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-sort.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-view-splash.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-vscode-config.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-vscode-install.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-vscode-logview.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-vscode-output-channel.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect-vscode-run-task.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/inspect.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/logs-drop-down.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/logs-open-button.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/logs.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/popularity.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/python-tool-view.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/rate-limit.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/running-theory.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/task-max-sandboxes.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/toolenv-no-cleanup.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/vnc-port-info.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/vnc-view-only.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/images/web-browser-tool-view.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/index.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/integrations/index.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/integrations/integrations.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/interactivity.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/llms.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/log-viewer.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/models.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/multi-agent.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/multimodal.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/options.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/parallelism.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/providers.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/react-agent.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reasoning.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/.gitignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/_metadata.yml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/commands.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/filter.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/interlink.lua +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/parse.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/post.lua +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/render.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/filter/sidebar.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/index.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.agent.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.analysis.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.approval.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.dataset.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.log.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.model.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.solver.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.tool.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_ai.util.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_cache.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_eval-retry.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_eval-set.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_eval.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_info.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_list.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_log.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_sandbox.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_score.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_trace.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/reference/inspect_view.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/sandboxing.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/scorers.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/scripts/post-render.sh +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/solvers.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/structured.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/tasks.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/theme.scss +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/tools-standard.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/tools.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/tracing.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/tutorial.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/typing.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/docs/vscode.qmd +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/approval/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/approval/approval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/approval/approval.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/biology_qa.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/autogen/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/autogen/agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/autogen/dataset.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/autogen/requirements.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/autogen/task.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/langchain/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/langchain/agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/langchain/dataset.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/langchain/requirements.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/bridge/langchain/task.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/browser/browser.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/browser/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/cache.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/computer/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/computer/computer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/computer/moonWeight.ods +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/evalset.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/hello_world.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/human/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/human/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/human/human.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/images/ballons.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/images/bike.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/images/images.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/images/images.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/computer/approval.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/computer/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/intervention.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/multi_tool/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/shell/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/intervention/shell/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/mcp_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/popularity.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/prefill.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/scorer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/security_guide.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/structured.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/theory_of_mind.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/examples/tool_use.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/requirements.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/setup.cfg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/__main__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/cache.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/common.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/eval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/info.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/list.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/log.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/main.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/sandbox.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/score.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/trace.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_cli/view.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/active.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/config.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/footer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/panel.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/progress.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/results.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/rich.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/core/textual.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/log/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/log/display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/plain/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/plain/display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/rich/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/rich/display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/app.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/app.tcss +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/theme.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/clock.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/console.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/footer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/port_mappings.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/samples.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/sandbox.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/task_detail.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/tasks.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/titlebar.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/toggle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/transcript.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_display/textual/widgets/vscode.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/context.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/eval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/evalset.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/list.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/loader.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/run.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/score.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/constants.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/epochs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/error.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/generate.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/images.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/resolved.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/results.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/sandbox.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/task.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/tasks.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_eval/task/util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/_async.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/ansi.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/answer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/appdirs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/citation.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/config.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/constants.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/content.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/decorator.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/deprecation.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/dev.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/dict.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/dotenv.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/entrypoints.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/environ.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/error.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/eval_task_group.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/exception.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/file.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/format.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/future.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/git.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/hash.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/hooks.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/html.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/http.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/httpx.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/images.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/interrupt.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/json.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/kvstore.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/list.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/local_server.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/logger.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/notebook.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/notgiven.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/package.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/path.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/pattern.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/platform.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/port_names.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/retry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/rich.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/samples.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/terminal.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/text.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/thread.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/throttle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/timer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/trace.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/transcript.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/url.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/version.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/vscode.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_util/working.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/notify.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/server.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/view.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/.gitignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/.prettierignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/.prettierrc.js +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/.tool-versions +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/.vscode/extensions.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/.vscode/settings.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/babel.config.js +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/dist/assets/favicon.svg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/dist/index.html +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/eslint.config.mjs +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/favicon.svg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/index.html +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/jest.config.mjs +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/jsconfig.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/log-schema.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/node_modules/flatted/python/flatted.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/node_modules/katex/src/fonts/generate_fonts.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/node_modules/katex/src/metrics/extract_tfms.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/node_modules/katex/src/metrics/extract_ttfs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/node_modules/katex/src/metrics/format_json.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/node_modules/katex/src/metrics/parse_tfm.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/postcss.config.cjs +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/@types/asciicinema-player.d.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/@types/jsondiffpatch.d.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/@types/markdown-it-katex.d.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/@types/prism.d.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/AppErrorBoundary.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/appearance/colors.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/appearance/fonts.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/appearance/styles.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/MetaDataGrid.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/MetadataGrid.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/RecordTree.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/RecordTree.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/RenderedContent.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/record_processors/store.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/record_processors/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/content/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/LogView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/error/TaskErrorPanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/error/TaskErrorPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/JsonTab.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/JsonTab.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/RunningNoSamples.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/RunningNoSamples.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/SamplesTab.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/grouping.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/tabs/types.ts +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/ModelRolesView.module.css +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/ModelRolesView.tsx +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/ResultsPanel.module.css +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/RunningStatusPanel.module.css +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/RunningStatusPanel.tsx +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/ScoreGrid.module.css +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/SecondaryBar.module.css +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/StatusPanel.module.css +0 -0
- {inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar → inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view}/StatusPanel.tsx +0 -0
- /inspect_ai-0.3.107/src/inspect_ai/_view/www/src/app/log-view/navbar/Navbar.module.css → /inspect_ai-0.3.109/src/inspect_ai/_view/www/src/app/log-view/title-view/TitleView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/log-view/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/DatasetDetailView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/DetailStep.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/ModelCard.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/ModelCard.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/PlanCard.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/PlanDetailView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/ScorerDetailView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/SolverDetailView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/plan/SolverDetailView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/routing/logNavigation.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/InlineSampleDisplay.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/InlineSampleDisplay.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/SampleDialog.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/SampleDialog.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/SampleDisplay.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/SampleSummaryView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/SampleSummaryView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/SamplesTools.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatMessage.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatMessage.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatMessageRenderer.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatMessageRow.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatMessageRow.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatViewVirtualList.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/ChatViewVirtualList.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/MessageCitations.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/MessageCitations.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/MessageContent.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/MessageContent.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/MessageContents.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/MessageContents.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/content-data/ContentDataView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/content-data/ContentDataView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/content-data/WebSearch.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/content-data/WebSearch.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/content-data/WebSearchResults.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/content-data/WebSearchResults.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/messages.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolCallView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolCallView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolInput.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolInput.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolOutput.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolOutput.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolTitle.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/ToolTitle.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/tools/tool.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/chat/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/samplesDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/BooleanScoreDescriptor.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/BooleanScoreDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/CategoricalScoreDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/NumericScoreDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/ObjectScoreDescriptor.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/ObjectScoreDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/OtherScoreDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/PassFailScoreDescriptor.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/score/PassFailScoreDescriptor.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/descriptor/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/error/FlatSampleErrorView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/error/FlatSampleErrorView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/error/SampleErrorView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/error/SampleErrorView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/error/error.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleFooter.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleFooter.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleHeader.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleHeader.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleList.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleList.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleRow.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleRow.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleSeparator.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/list/SampleSeparator.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/EpochFilter.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/EpochFilter.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/SelectScorer.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/SelectScorer.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/SortFilter.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/SortFilter.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/filters.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/sample-filter/SampleFilter.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/sample-filter/SampleFilter.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/sample-filter/completions.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/sample-filter/language.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sample-tools/sample-filter/tokenize.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sampleDataAdapter.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/sampleLimit.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/scores/SampleScores.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/scores/SampleScores.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/scores/SampleScoresGrid.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/scores/SampleScoresGrid.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/scores/SampleScoresView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/scores/SampleScoresView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ApprovalEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ErrorEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/InfoEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/InfoEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/InputEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/LoggerEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/LoggerEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ModelEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ModelEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SampleInitEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SampleInitEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SampleLimitEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SandboxEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SandboxEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ScoreEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ScoreEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SpanEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/StepEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/SubtaskEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ToolEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/ToolEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/TranscriptPanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/TranscriptVirtualList.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/TranscriptVirtualListComponent.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/TranscriptVirtualListComponent.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventNav.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventNav.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventNavs.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventNavs.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventPanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventProgressPanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventProgressPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventRow.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventRow.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventSection.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventSection.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventTimingPanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/EventTimingPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/event/utils.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/outline/OutlineRow.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/outline/OutlineRow.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/outline/TranscriptOutline.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/outline/TranscriptOutline.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/state/StateDiffView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/state/StateEventRenderers.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/state/StateEventRenders.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/state/StateEventView.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/state/StateEventView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/transform/fixups.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/transform/hooks.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/transform/utils.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/samples/transcript/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/ModelTokenTable.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/ModelUsagePanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/ModelUsagePanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/TokenTable.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/TokenTable.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/UsageCard.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/app/usage/UsageCard.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/api/api-browser.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/api/api-vscode.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/api/index.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/api/jsonrpc.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/api/types.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/remote/remoteZipFile.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/client/storage/index.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/AnsiDisplay.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/AnsiDisplay.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/AsciinemaPlayer.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/Card.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/Card.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/CopyButton.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/CopyButton.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/DownloadButton.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/DownloadButton.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/DownloadPanel.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/DownloadPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/EmptyPanel.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/EmptyPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ErrorPanel.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ErrorPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ExpandablePanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ExpandablePanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/FindBand.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/FindBand.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/HumanBaselineView.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/HumanBaselineView.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/JsonPanel.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/JsonPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LabeledValue.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LabeledValue.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LargeModal.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LargeModal.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LightboxCarousel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LightboxCarousel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LinkButton.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LinkButton.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LiveVirtualList.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/LiveVirtualList.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/MarkdownDiv.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/MarkdownDiv.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/MessageBand.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/MessageBand.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/Modal.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/Modal.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/MorePopOver.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/MorePopOver.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/NavPills.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/NavPills.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/NoContentsPanel.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/NoContentsPanel.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/PopOver.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ProgressBar.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ProgressBar.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/PulsingDots.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/PulsingDots.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/StickyScroll.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/TabSet.module.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/TabSet.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ToolButton.css +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/components/ToolButton.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/index.tsx +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/sampleSlice.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/sampleUtils.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/scoring.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/scrolling.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/store.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/store_filter.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/state/utils.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/tests/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/tests/__mocks__/fileMock.js +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/tests/__mocks__/styleMock.js +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/tests/setupTests.mjs +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/tests/utils/base64.test.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/tests/utils/format.test.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/attachments.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/base64.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/browser.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/debugging.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/dom.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/format.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/git.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/html.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/http.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/json-worker.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/json.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/logger.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/numeric.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/polling.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/print.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/python.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/queue.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/react.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/sync.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/type.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/src/utils/vscode.ts +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/tsconfig.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/_view/www/vite.config.js +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_as_solver.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_as_tool.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_bridge/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_bridge/bridge.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_bridge/patch.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_filter.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_handoff.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/clock.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/command.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/instructions.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/note.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/score.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/status.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/commands/submit.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/install.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/panel.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/service.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/state.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_human/view.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_react.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_run.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/agent/_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/columns.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/evals/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/evals/columns.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/evals/extract.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/evals/table.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/events/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/events/columns.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/events/extract.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/events/table.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/extract.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/messages/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/messages/columns.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/messages/extract.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/messages/table.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/progress.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/record.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/samples/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/samples/columns.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/samples/extract.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/samples/table.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/analysis/beta/_dataframe/validate.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_apply.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_approval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_approver.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_auto.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_call.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_human/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_human/approver.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_human/console.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_human/manager.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_human/panel.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_human/util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_policy.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/approval/_registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_dataset.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_examples/bias_detection.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_examples/biology_qa.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_examples/popularity.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_examples/security_guide.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_examples/theory_of_mind.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/csv.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/example.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/file.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/hf.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/json.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_sources/util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/dataset/_util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_bundle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_condense.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_convert.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_file.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_log.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_message.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/buffer/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/buffer/buffer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/buffer/filestore.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/buffer/types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/create.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/eval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/file.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/json.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/recorder.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_recorders/types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_retry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_samples.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_transcript.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_tree.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/log/_util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_cache.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_call_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_chat_message.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_conversation.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_generate_config.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_model_call.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_model_output.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_openai.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_openai_responses.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/_google_citations.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/_openai_computer_use.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/_openai_web_search.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/anthropic.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/azureai.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/bedrock.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/cloudflare.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/google.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/grok.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/groq.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/hf.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/llama_cpp_python.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/mistral.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/mockllm.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/none.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/ollama.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/openai.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/openai_compatible.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/openai_o1.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/openai_responses.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/openrouter.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/perplexity.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/sglang.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/together.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/util/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/util/chatapi.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/util/hf_handler.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/util/hooks.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/util/llama31.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/util/util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_providers/vllm.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_reasoning.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_render.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/model/_trim.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/py.typed +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_answer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_choice.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_classification.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_common.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_match.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_metric.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_metrics/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_metrics/accuracy.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_metrics/grouped.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_metrics/mean.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_metrics/std.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_multi.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_pattern.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_reducer/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_reducer/reducer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_reducer/registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_reducer/types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_score.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_scorer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/scorer/_target.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_basic_agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_bridge.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_chain.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_critique.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_fork.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_human_agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_multiple_choice.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_plan.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_prompt.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_run.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_solver.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_task_state.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_transcript.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_use_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/solver/_util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_json_rpc_helpers.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/_context.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/_sandbox.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/connection.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/server.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_mcp/tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_call.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_choice.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_def.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_description.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_info.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_params.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_support_helpers.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_transcript.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tool_with.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_computer/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_computer/_common.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_computer/_computer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_execute.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_text_editor.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_think.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_browser/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_browser/_back_compat.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/_base_http_provider.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/_exa.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/_google.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/_tavily.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/_web_search.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/_tools/_web_search/_web_search_provider.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/tool/beta.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_background.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_collect.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_concurrency.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_console.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_conversation.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_display.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_json.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_limit.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_limited_conversation.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_panel.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_resource.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/context.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/cleanup.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/compose.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/config.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/docker.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/internal.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/prereqs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/service.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/docker/util.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/environment.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/events.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/limits.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/local.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/self_check.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_sandbox/service.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_span.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_store.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_store_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_subprocess.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_subtask.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai/util/_throttle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai.egg-info/dependency_links.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai.egg-info/entry_points.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_ai.egg-info/top_level.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/.bumpversion.cfg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/.pylintrc +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/.vscode/launch.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/.vscode/settings.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/CHANGELOG.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/Dockerfile.kali +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/Dockerfile.ubuntu +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/MANIFEST.in +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/cspell.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/kali-archive-keyring.gpg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/make-release-commit +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/pyproject.toml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/shared_tool_container_design.svg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/__main__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_cli/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_cli/_post_install.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_cli/main.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_cli/server.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_text_editor/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_text_editor/_run.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_text_editor/json_rpc_methods.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_text_editor/text_editor.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_text_editor/tool_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_version/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_in_process_tools/_version/json_rpc_methods.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_bash_session/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_bash_session/_controller.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_bash_session/_process.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_bash_session/_session.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_bash_session/json_rpc_methods.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_bash_session/tool_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_mcp/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_mcp/json_rpc_methods.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_mcp/mcp_server_session.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_mcp/tool_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/README.md +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/accessibility_tree.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/accessibility_tree_node.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/cdp/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/cdp/a11y.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/cdp/dom.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/cdp/dom_snapshot.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/cdp/page.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/constants.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/controller.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/images/usage_diagram.svg +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/json_rpc_methods.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/mock_environment.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/playwright_browser.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/playwright_crawler.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/playwright_page_crawler.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/rectangle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/scale_factor.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/test_accessibility_tree_node.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/test_playwright_crawler.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/test_rectangle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/test_web_client.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_remote_tools/_web_browser/tool_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/async_decoded_stream_reader.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/common_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/constants.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/debugging.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/json_rpc_helpers.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/load_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/pseudo_terminal.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/semver.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/session_controller.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/test_async_decoded_stream_reader.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/timeout_event.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/src/inspect_tool_support/src/inspect_tool_support/_util/validation.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/_human/test_state.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/compose.human.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/human.Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/test_agent_description.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/test_agent_docs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/test_agent_execute.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/test_agent_handoff.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/test_agent_human.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/agent/test_agent_react.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_df.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_df_parallel.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_expand.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_logs/2025-05-12T20-27-36-04-00_browser.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_logs/2025-05-12T20-28-13-04-00_no-samples.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_logs/2025-05-12T20-28-13-04-00_popularity.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_logs/2025-05-12T20-28-26-04-00_security-guide.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/analysis/test_validate.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/approval/approve.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/approval/escalate.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/approval/modify.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/approval/reject.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/approval/terminate.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/approval/test_approval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/cli/test_log.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/conftest.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/dataset.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/images/ballons.png +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/images.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples-mcq.csv +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples-mcq.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples-mcq.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples-md.csv +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples-md.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples-md.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples.csv +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset/samples.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/dataset/test_dataset.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_formats.eval +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_formats.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_images.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_images_tc.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_invalid.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_length_stop_reason.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_streaming.eval +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_tool_call_error.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_valid.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_version_3.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log/log_with_nan.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_eval_log.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_event_tree.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_list_logs/2024-11-05T13-31-45-05-00_input-task_8zXjbRzCWrL9GXiXo2vus9.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_list_logs/2024-11-05T13-32-37-05-00_input-task_hxs4q9azL3ySGkjJirypKZ.eval +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_list_logs/custom.eval +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_list_logs/ignore.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_list_logs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_attachments.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_eventdb.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_eventdb_sync.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_filename.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_formats.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_level.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_message_id.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_streaming.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_summaries.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/log/test_log_tags.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/gatsby.txt +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_anthropic.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_anthropic_web_search.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_azureai.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_cloudflare.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_google.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_grok.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_groq.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_hf.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_llama_cpp_python.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_mistral.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_openai.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_openai_compatible.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_openai_o1.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_openai_responses.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_openai_web_search.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_perplexity.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/providers/test_vllm.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_api_key.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_cache.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_collapse_assistant_message.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_collapse_user_message.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_disable.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_generate_loop.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_get_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_is_rate_limit.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_logprobs.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_mock_model_llm.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_model_length.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_model_output.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_model_roles.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_no_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_num_choices.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_parse_tool_call.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_claude.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_content.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_google.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_grok.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_mistral.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_openai.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_reasoning_parse.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_stop_reason.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_structured_output.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_tool_result_images_as_user_message.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/model/test_trim_messages.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/logs/2025-02-11T15-17-00-05-00_popularity_dPiJifoWeEQBrfWsAopzWr.eval +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/logs/2025-02-11T15-18-04-05-00_popularity_mj7khqpMM4GBCfVQozKgzB.eval +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_answer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_choice.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_classification.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_match.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_metric.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_model_graded.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_multiscorer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_pattern.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_reducers.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_scorer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_task_score.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/scorer/test_value_to_float.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_basic_agent.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_bridge.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_chain.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_fork.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_multiple_choice.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_prompt.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_score.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_setup.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_solver.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_solver_decorator.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_solver_spec.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_store.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_store_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_subtask.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/solver/test_transcript.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_config/model.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_config/solver.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_config/task.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_config.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_set/2024-08-29T15-11-17+00-00_popularity_5EAmX6wjMFqea6WY7XHzZp.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_set/2024-08-29T15-11-18+00-00_popularity_5EAmX6wjMFqea6WY7XHzZp.json +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_eval_set.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_examples.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_extensions.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_fail_on_error.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/file_runner.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/limits.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/tasks.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/tool_call_utils.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_helpers/utils.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_list_task.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_log_dir/example_task/example_task.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_log_dir/test_log_dir.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_metadata.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/.gitignore +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/_registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/approvers/renamer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/modelapi/custom.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/py.typed +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/sandboxenv/podman.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/score/scorer.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/inspect_package/solvers/cot.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_package/pyproject.toml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_retry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_retry_on_error.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_sample_id.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_sample_limits.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_attr.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/__init__.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/attribs.ipynb +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/multiple.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/multiple_dir/_decoy/testit.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/multiple_dir/_decoy2.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/multiple_dir/bar.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/multiple_dir/foo.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/recurse/.folder3/epsilon.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/recurse/folder1/_decoy.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/recurse/folder1/theta.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/recurse/folder2/.folder3/epsilon.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/recurse/folder2/another.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_list/recurse/folder2/first.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_model.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/test_task_with.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/docker-compose-context/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/docker-compose-context-alpine/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/docker-mcp-server/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_bash_tool.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_call_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_inspect_tool_support.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_inspect_tool_support.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_max_exec_output.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_max_tool_output.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_mcp_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_python_tool.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_sandbox_compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_sandbox_compose_alpine.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_sandbox_docker_and_local.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_sandbox_dockerfile.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_sandbox_tool_eval.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_think_tool.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_def.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_error.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_images.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_parse.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_source.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_truncate.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_types.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_view.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tool_with.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_use_tools.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_web_browser.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_web_search.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_web_search_google.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/tools/test_web_search_tavily.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/Dockerfile.debug +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/compose.dynamic-image.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/compose.sandbox-service.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/debug.Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/docker_compose_multiple_services/docker-compose.yaml +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/sandbox-service.Dockerfile +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/sandbox_setup.sh +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/sandbox_setup_error.sh +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/sandbox_setup_symlink.sh +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_docker_compose_multiple_services.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_docker_dynamic_image.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_docker_filenames.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_docker_healthcheck.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_multi_sandbox_context_management.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_sandbox_service.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/sandbox/test_sandbox_setup.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_background.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_display_counter.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_file.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_format_template.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_images/images.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_images.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_json.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_kvstore.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_limit.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_limit_message.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_limit_time.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_limit_token.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_limit_working.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_media/audio.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_media/sample.mp3 +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_media/sample.wav +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_media/video.jsonl +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_media/video.mp4 +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_media.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_package.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_registry.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_str_to_float.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_subprocess.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/util/test_truncate.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/tests/view/test_bundle.py +0 -0
- {inspect_ai-0.3.107 → inspect_ai-0.3.109}/uv.lock +0 -0
@@ -0,0 +1,1354 @@
|
|
1
|
+
## 0.3.109 (27 June 2025)
|
2
|
+
|
3
|
+
- Analysis: More forgiving column reading (use Pandas default reader rather than PyArrow).
|
4
|
+
- Fix store_as examples, document inspect_ai.scorer.score
|
5
|
+
- Delay cleanup of sample buffer database to account for potential sharing of data dir.
|
6
|
+
- Vertex: Ignore types to workaround update that removes type information from some of their sub-packages (tests still pass).
|
7
|
+
- MCP: Conform to breaking changes in latest mcp package (1.10.0).
|
8
|
+
- Docs: Correct docs for `web_browser()` and `bash_session()` to indicate that you must pass an `instance` explicitly to get distinct processes.
|
9
|
+
- Docs: Correct shared documentation snippet that describes Dockerfile customization for Inspect Tool Support.
|
10
|
+
- Inspect View: Properly wrap log configuration values in evaluation header.
|
11
|
+
- Inspect View: Support for displaying and navigating directories of evaluation logs.
|
12
|
+
- Inspect View: Improved handling of agent handoffs in transcript outline view.
|
13
|
+
- Inspect View: Use numerical rather the correct/incorrect UI for scores with 0/1 values.
|
14
|
+
- Bugfix: Prevent concurrent accesses of eval event database from raising lock errors.
|
15
|
+
- Bugfix: Fix infinite recursion edge case in _flatten_exception.
|
16
|
+
|
17
|
+
|
18
|
+
## 0.3.108 (25 June 2025)
|
19
|
+
|
20
|
+
- Bugfix: Don't raise error on Anthropic cited_text not being a `str`.
|
21
|
+
|
22
|
+
## 0.3.107 (24 June 2025)
|
23
|
+
|
24
|
+
- Bugfix: Shield critical shutdown code from cancel scope.
|
25
|
+
|
26
|
+
## v0.3.106 (21 June 2025)
|
27
|
+
|
28
|
+
- OpenAI: Use prefix matching when detecting compatible models for `web_search()`.
|
29
|
+
- Groq: Capture `executed_tools` field as model output metadata.
|
30
|
+
- ReAct agent: Always send `str` returned from `on_continue` to the model (formerly this was only done if there were no tool calls).
|
31
|
+
- Web Search: Added provider for Perplexity's internal web search tool.
|
32
|
+
- Eval: Wrap eval execution in TaskGroup.
|
33
|
+
- Bugfix: Remove correlated reasoning content items when removing submit tool calls from ChatMessageAssistant instances in multi-agent scenarios.
|
34
|
+
|
35
|
+
## v0.3.105 (17 June 2025)
|
36
|
+
|
37
|
+
- [background()](https://inspect.aisi.org.uk/agent-custom.html#background) function for executing work in the background of the current sample.
|
38
|
+
- [sandbox_service()](https://inspect.aisi.org.uk/agent-custom.html#sandbox-service) function for making available methods to a sandbox for calling back into the main Inspect process.
|
39
|
+
- [sample_limits()](https://inspect.aisi.org.uk/errors-and-limits.html#query-usage) function for determining the current status of sample limits.
|
40
|
+
- React agent: Only do substitution on parts of the prompt that may contain a {submit} reference.
|
41
|
+
- Agent handoff: Ensure that handoff tool call responses immediately follow the call.
|
42
|
+
- Agent handoff: Only print handoff agent prefix if there is assistant message content.
|
43
|
+
- Subprocess: Ensure that streams are drained when a cancellation occurs (prevent hanging on calls with large output payloads).
|
44
|
+
- Eval log: Capture only limits that terminated the sample as `sample.limit` (as opposed to ones bound to context managers or agents).
|
45
|
+
- Inspect View: Display metadata for Chat Messages.
|
46
|
+
- Inspect View: Increase transcript outline font size.
|
47
|
+
- Inspect View: Add support for filtering by sample id, sample metadata.
|
48
|
+
- Bugfix: Eval set now correctly handles retries for tasks with defaulted args (regressed in v0.3.104).
|
49
|
+
- Bugfix: Use correct bindings for Claude v4 native `text_editor` tool; don't use native tool definition for Haiku 3.5 or Opus 3.0.
|
50
|
+
- Bugfix: Restore preservation of `ContentReasoning` blocks for Gemini (regressed in v0.3.104).
|
51
|
+
- Bugfix: Dataset shuffling now works correctly with `seed` of 0.
|
52
|
+
|
53
|
+
## v0.3.104 (12 June 2025)
|
54
|
+
|
55
|
+
- Web Search: Added provider for Anthropic's internal web search tool.
|
56
|
+
- Web Search: Added provider for [Exa](https://exa.ai/exa-api) Search API.
|
57
|
+
- Web Search: Added provider for Google's [Grounding with Google Search](https://ai.google.dev/gemini-api/docs/grounding) .
|
58
|
+
- Mistral: Support for capturing reasoning blocks for magistral models.
|
59
|
+
- Add [Perplexity](https://inspect.aisi.org.uk/providers.html#perplexity) model provider.
|
60
|
+
- ChatMessage: Add `metadata` field for arbitrary additional metadata.
|
61
|
+
- Content: Added `ContentData` for model specific content blocks.
|
62
|
+
- Citations: Added `Citation` suite of types and included citations in `ContentText` (supported for OpenAI and Anthropic models).
|
63
|
+
- Eval log: `task_args` now includes defaulted args (formerly it only included explicitly passed args).
|
64
|
+
- Eval set: `retry_connections` now defaults to 1.0 (resulting in no reduction in connections across passes).
|
65
|
+
OpenAI: Work around OpenAI Responses API issue by filtering out leading consecutive reasoning blocks.
|
66
|
+
- OpenAI compatible provider: Substitute `-` with `_` when looking up provider environment variables.
|
67
|
+
- MCP: Update to types in latest release (1.9.4, which is now required).
|
68
|
+
- Added development container (`.devcontainer`) configuration.
|
69
|
+
- `trim_messages()` now removes any trailing assistant message after compaction.
|
70
|
+
- Task display: Ensure that full path to log file is always displayed (wrap as required).
|
71
|
+
- Task display: Wrap scorers and scores in the task detail display.
|
72
|
+
- Inspect View: Add support for displaying citations for web searches in the transcript.
|
73
|
+
- Inspect View: Correctly update browser URL when navigation between samples.
|
74
|
+
- Bugfix: Properly honor `responses_api=False` when pass as an OpenAI model config arg.
|
75
|
+
- Bugfix: Limits passed to handoffs can be used multiple times (if agent is handed off to multiple times).
|
76
|
+
- Bugfix: Replace invalid surrogate characters when serializing strings to JSON.
|
77
|
+
- Bugfix: Prevent error writing Nan values to the `logs.json` summary file during bundling.
|
78
|
+
|
79
|
+
## v0.3.103 (06 June 2025)
|
80
|
+
|
81
|
+
- Eval set: Do not read full eval logs into memory at task completion.
|
82
|
+
|
83
|
+
## v0.3.102 (05 June 2025)
|
84
|
+
|
85
|
+
- OpenAI: Use responses API for codex models.
|
86
|
+
- Bugfix: Temporarily revert change to eval set header reading to investigate regression.
|
87
|
+
|
88
|
+
## v0.3.101 (05 June 2025)
|
89
|
+
|
90
|
+
- Eval set: Default `max_tasks` to the greater of 4 and the number of models being evaluated.
|
91
|
+
- Eval set: Do not read full eval logs into memory at task completion.
|
92
|
+
- pass_at_k: Treat threshold as the the minimum inclusive value for passing (rather than checking equality)
|
93
|
+
- Web search: Include links specified by providers in the results.
|
94
|
+
- Inspect View: Display sample id & epoch in sample dialog title bar.
|
95
|
+
- Inspect View: Don't open sample dialog when simply navigating the sample list.
|
96
|
+
- Inspect View: Fix error that could occur when determine transcript outline collapse state.
|
97
|
+
- Inspect View: Show the correct sample when opening a sample from a sorted list.
|
98
|
+
- Bugfix: Ensure that dataset shuffle_choices=True always uses a distinct random seed.
|
99
|
+
- Bugfix: Don't attempt to use OpenAI's web search preview against models that are known to not support it.
|
100
|
+
|
101
|
+
## v0.3.100 (01 June 2025)
|
102
|
+
|
103
|
+
- [time_limit()](https://inspect.aisi.org.uk/errors-and-limits.html#time-limit) and [working_limit()](https://inspect.aisi.org.uk/errors-and-limits.html#working-limit) context managers for scoped application of time limits.
|
104
|
+
- Abiliy to query current usage for scoped limits (e.g. time or tokens).
|
105
|
+
- Added native OpenAI web search to [web_search()](https://inspect.aisi.org.uk/tools-standard.html#sec-web-search) tool.
|
106
|
+
- Limit `docker compose` concurrency to 2 * os.cpu_count() by default (override with `INSPECT_DOCKER_CLI_CONCURRENCY`).
|
107
|
+
- ReAct agent: Only send custom `on_continue` message to the model if the model made no tool calls.
|
108
|
+
- Tool calling: Support for `Enum` types in tool arguments.
|
109
|
+
- AzureAI: Automatically fold user and tool messages for Mistral models.
|
110
|
+
- Task display: Simplify task display for `plain` mode (no outline, don't expand tables to console width).
|
111
|
+
- Task display: Truncate task config to prevent overflow (collapse dicts, limit individual values to 50 chars, limit overall output to 500 chars).
|
112
|
+
- Task display: Always show the sample init event in the task transcript display.
|
113
|
+
- Task display: Fix mouse support on ghostty (and possibly other terminals).
|
114
|
+
- Inspect View: Outline view for transcript which enables high level navigation to solvers, agents, scorers, etc.
|
115
|
+
- Inspect View: Fix an issue that prevented the display of the viewer in VSCode when the viewer tab was moved to the background.
|
116
|
+
- Inspect View: Don't error when metadata contains null values.
|
117
|
+
|
118
|
+
## v0.3.99 (22 May 2025)
|
119
|
+
|
120
|
+
- Exported `view()` function for running Inspect View from Python.
|
121
|
+
- Always return tasks in the same order they were passed to `eval()` or `eval_set()`.
|
122
|
+
- Google: Updated required version of `google-genai` to 1.16.1 (which includes support for reasoning summaries and is now compatible with the trio async backend).
|
123
|
+
- Anthropic: More flexible detection of "overloaded_error" for retires.
|
124
|
+
- Inspect View: Improve text zooming and wrapping when rendering sample errors.
|
125
|
+
- Inspect View: Preserve log mtime-ordering in the bundle output directory
|
126
|
+
|
127
|
+
## v0.3.98 (18 May 2025)
|
128
|
+
|
129
|
+
- Google: Disable reasoning when `reasoning_tokens` is set to 0.
|
130
|
+
- Temporarily pin to textual < 3.0.0 to work around event loop breakage.
|
131
|
+
- CLI display: improve performance of sample rendering by only rendering the 10 most recent events.
|
132
|
+
- Inspect View: Improve sample score column layout, markdown render explanation.
|
133
|
+
|
134
|
+
## v0.3.97 (16 May 2025)
|
135
|
+
|
136
|
+
- React agent: Use of `submit()` tool is now [optional](https://inspect.aisi.org.uk/agent.html#submit-tool).
|
137
|
+
- Agents: `is_agent()` typeguard function for checking whether an object is an `Agent`.
|
138
|
+
- Anthropic: Show warning when generation config incompatible with extended thinking is used (affects `temperature`, `top_p`, and `top_k`).
|
139
|
+
- AzureAI: Don't include `tools` or `tool_choice` in requests when emulating tool calling (avoiding a 400 error).
|
140
|
+
- AzureAI: Accept `<tool_calls>` plural from Llama models (as it sometimes uses this instead of `<tool_call>`).
|
141
|
+
- AzureAI: Correctly handle tool calls with no arguments.
|
142
|
+
- Eval retry: Improve error message when attempting to retry tasks in packages that have not been registered.
|
143
|
+
- Warn when a passed `--sample-id` is not found in the target dataset (raise error if there are no matches at all).
|
144
|
+
- Dataframes: [parallel](https://inspect.aisi.org.uk/dataframe.html#parallel-reading) option to read samples in parallel using multiprocessing.
|
145
|
+
- Dataframes: Include underlying `EvalLog` and `Exception` in `ColumnError`.
|
146
|
+
- Dataframes: Use native pyarrow column storage with pd.NA for missing values.
|
147
|
+
- Inspect View: Improve the performance and memory efficiency of the viewer when viewing large samples with long, complex transcripts.
|
148
|
+
- Inspect View: Improve the performance of the viewer when viewing large, complex sample or task metadata.
|
149
|
+
- Inspect View: Live display of subtask, tool and other child events when viewing a running evaluation.
|
150
|
+
- Inspect View: Transcript rendering improvements including less complex overall layout, more collapsible entities, and improved rendering of sandbox events, tool calls, and other events.
|
151
|
+
- Inspect View: Message rendering improvement including coloring user messages, reducing layout complexity, and other minor improvements.
|
152
|
+
- Inspect View: Render metadata for samples and tasks as an interactive tree.
|
153
|
+
- Inspect View: When deployed via `inspect view bundle`, support linking to individual transcript events or messages.
|
154
|
+
- Inspect View: Reduce the maximum size of the header (before it is collapsed) when evals have large numbers of metrics.
|
155
|
+
- Bugfix: More robust handling of non-529 "overloaded_error" for Anthropic.
|
156
|
+
- Bugfix: More robust handling of no result returned from tool call.
|
157
|
+
|
158
|
+
## v0.3.96 (13 May 2025)
|
159
|
+
|
160
|
+
- Dataframes: `events_df()` function, improved message reading, log filtering, don't re-sort passed logs
|
161
|
+
- Model Context Protocol: Upgrade sandbox client to typing changes made in v1.8.0 of `mcp` package.
|
162
|
+
- vLLM/SGLang: Fix dynamic port binding for local server on Mac OS X.
|
163
|
+
- React Agent: Improve continue prompt to remind the model to include the answer in their call to `submit()`.
|
164
|
+
- Inspect View: Properly sort samples by score even when there are samples with errors.
|
165
|
+
- Inspect View: Allow filtering of samples by score when evals are running.
|
166
|
+
|
167
|
+
## v0.3.95 (10 May 2025)
|
168
|
+
|
169
|
+
- [Dataframe](https://inspect.aisi.org.uk/dataframe.html) functions for reading dataframes from log files.
|
170
|
+
- Web Search: Added provider for [Tavily](https://inspect.aisi.org.uk/tools-standard.html#tavily-provider) Research API.
|
171
|
+
- Multiple Choice: `max_tokens` option to control tokens used for `generate()`.
|
172
|
+
- Don't enforce sample `working_limit` after solvers have completed executing (matching behavior of other sample limits).
|
173
|
+
- Only pass `user` parameter on to sandboxes if is not `None` (eases compatibility with older sandbox providers).
|
174
|
+
- Anthropic: Retry when `type` in the error message body is "overloaded_error".
|
175
|
+
- Agent Bridge: Compatibility with `request()` method in v1.78.0 of `openai` package (now the minimum required version).
|
176
|
+
- Model Context Protocol: Update to typing changes made in v1.8.0 of `mcp` package (now the minimum required version).
|
177
|
+
- TaskState: `input_text` and `user_prompt` properties now read the last rather than first user message.
|
178
|
+
- Inspect View: Properly display 'more' options when content is collapsed.
|
179
|
+
- Inspect View: Fix issue that prevented filtering of sample list when viewing a running evaluation.
|
180
|
+
- Inspect View: Fix selection of specific metrics within scorers when a scorer produces more than one metric.
|
181
|
+
- Ignore OSError that occurs while rotating trace files.
|
182
|
+
- Restore logging `metadata` from `TaskState` rather than from `Sample`.
|
183
|
+
- Bugfix: Restore ability of operator to terminate the current sample in tool call approval.
|
184
|
+
- Bugfix: Ensure that "init" span is exited in the same async context when sandbox connection errors occur.
|
185
|
+
- Bugfix: Protect against no `thought` argument being passed to `think()` tool.
|
186
|
+
- Bugfix: Correct handling of `text_editor()` tool for Claude Sonnet 3.5.
|
187
|
+
|
188
|
+
## v0.3.94 (06 May 2025)
|
189
|
+
|
190
|
+
- [span()](https://inspect.aisi.org.uk/agent-custom.html#grouping-with-spans) function for grouping transcript events.
|
191
|
+
- [collect()](https://inspect.aisi.org.uk/agent-custom.html#grouping-with-spans) function for enclosing parallel tasks in spans.
|
192
|
+
- [Event tree](https://inspect.aisi.org.uk/reference/inspect_ai.log.html#event-tree) functions for organising transcript events into a tree of spans.
|
193
|
+
- `inspect log convert` now always fully re-writes log files even of the same format (so that e.g. sample summaries always exist in the converted logs).
|
194
|
+
- React agent: `answer_only` and `answer_delimiter` to control how submitted answers are reflected in the assistant message content.
|
195
|
+
- Python tool: Execute using a bash login shell for consistency of Python versions across `bash()` and `python()` tools.
|
196
|
+
- Task display: Realtime display of events that occur within tool calls and subtasks.
|
197
|
+
- Multiple choice: Support for more than 26 choices.
|
198
|
+
- Bugfix: Ensure that each MCP server gets its own cached tool list.
|
199
|
+
|
200
|
+
## v0.3.93 (01 May 2025)
|
201
|
+
|
202
|
+
- [Scoped Limits](https://inspect.aisi.org.uk/errors-and-limits.html#scoped-limits) for enforcing token and message limits using a context manager.
|
203
|
+
- [Agent Limits](https://inspect.aisi.org.uk/errors-and-limits.html#agent-limits) for enforcing token and message limits for agent execution.
|
204
|
+
- Enhanced `bash_session()` tool to provide richer interface to model and to support interactive sessions (e.g. logging in to a remote server).
|
205
|
+
- [read_eval_log_sample_summaries()](https://inspect.aisi.org.uk/eval-logs.html#summaries) function for reading sample summaries (including scoring) from eval logs.
|
206
|
+
- Updated [vLLM](https://inspect.aisi.org.uk/providers.html#vllm) provider to use local server rather than in process `vllm` package (improved concurrency and resource utilization).
|
207
|
+
- New [SGLang](https://inspect.aisi.org.uk/providers.html#sglang) provider (using similar local server architecture as vLLM provider).
|
208
|
+
- Anthropic: Added `streaming` model argument to control whether streaming API is used (by default, streams when using extended thinking).
|
209
|
+
- `--sample-id` option can now include task prefixes (e.g. `--sample-id=popularity:10,security:5)`).
|
210
|
+
- Improved write performance for realtime event logging.
|
211
|
+
- `--no-log-realtime` option for disabling realtime event logging (live viewing of logs is disabled when this is specified).
|
212
|
+
- Packaging: Exclude `_resources` directories from package (reduces pressure on path lengths for Windows).
|
213
|
+
- Inspect View: Split info tab into task, models, and info for improved layout.
|
214
|
+
- Bugfix: Avoid validation errors when loading old log files which contain "output_limit" tool errors.
|
215
|
+
|
216
|
+
## v0.3.92 (26 April 2025)
|
217
|
+
|
218
|
+
- OpenAI: In responses API, don't pass back assistant output that wasn't part of the output included in the server response (e.g. output generated from a call to a `submit()` tool).
|
219
|
+
- Bugfix: Correctly pass tool arguments back to model for OpenAI responses API.
|
220
|
+
|
221
|
+
## v0.3.91 (26 April 2025)
|
222
|
+
|
223
|
+
- Support for using tools from [Model Context Protocol](https://inspect.aisi.org.uk/tools-mcp.html) providers.
|
224
|
+
- New [retry_on_error](https://inspect.aisi.org.uk/errors-and-limits.html#sample-retries) option to enable sample level retry of errors (retries occur immediately rather than waiting until the next full eval retry).
|
225
|
+
- OpenAI: [reasoning_summary](https://inspect.aisi.org.uk/reasoning.html#reasoning-history) generation option for reasoning models.
|
226
|
+
- OpenAI: `responses_store` model argument to control whether the `store` option is enabled (it is enabled by default for reasoning models to support reasoning playback).
|
227
|
+
- OpenAI: Support for [flex processing](https://inspect.aisi.org.uk/providers.html#flex-processing), which provides lower inference costs in exchange for slower response times and occasional resource unavailability (added in v1.75.0, which is now required).
|
228
|
+
- OpenAI: Responses API is now used by default for all reasoning models.
|
229
|
+
- OpenAI: Automatically alias reserved internal tool names (e.g. `python`) for responses API.
|
230
|
+
- Anthropic: Warn only once if unable to call count_tokens() for a model.
|
231
|
+
- Google: Update to 1.12.1 of `google-genai` (which is now required).
|
232
|
+
- Google: Support for `reasoning_tokens` option for Gemini 2.5 models.
|
233
|
+
- Grok: Support for `reasoning_effort` option and capturing reasoning content.
|
234
|
+
- OpenRouter: Forward `reasoning_effort` and `reasoning_tokens` to `reasoning` field.
|
235
|
+
- Model API: `ToolSource` for dynamic tools inputs (can be used in calls to `model.generate()` and `execute_tools()`)
|
236
|
+
- ReAct Agent: Ability to fully repleace the default `submit()` tool.
|
237
|
+
- Human Agent: Added `user` parameter for running the human agent cli as a given user.
|
238
|
+
- Scoring: Support for multimodal inputs to `model_graded_qa()` and `model_graded_fact()`.
|
239
|
+
- Scoring: Handle parsing unicode fractions when evaluating numeric input for `match()` scorer.
|
240
|
+
- Scoring: Add `sample_metadata_as()` method to `SampleScore`.
|
241
|
+
- Sandbox API: Added `user` parameter to `connection()` method for getting connection details for a given user.
|
242
|
+
- Docker: Register samples for cleanup immediately (so they are still cleaned up even if interrupted during startup).
|
243
|
+
- Docker: Support sample metadata interpolation for image names in compose files.
|
244
|
+
- Tool calling: Support for additional types (`datetime`, `date`, `time`, and `Set`)
|
245
|
+
- Log API: Functions for reading/writing eval logs can now take a `Path`.
|
246
|
+
- Registry: Evaluate string annotations when creating registry objects.
|
247
|
+
- Error handling: Added `--traceback-locals` CLI option to print values of local variables in tracebacks.
|
248
|
+
- Error handling: Fully unwrap inner errors from exception groups for reporting.
|
249
|
+
- Inspect View: Support for viewing logs in Google Cloud Storage (gc://).
|
250
|
+
- Inspect View: Improved display of reasoning blocks.
|
251
|
+
- Inspect View: Improved display and layout of transcript and events.
|
252
|
+
- Inspect View: Improved Tool input and output display.
|
253
|
+
- Inspect View: Improved display of sample input, target, answer, and scoring information (improve column width behavior).
|
254
|
+
- Inspect View: Add support for linking to logs, specific log tabs, individual samples, and sample tabs within samples.
|
255
|
+
- Inspect View: Collapse sample init view by default.
|
256
|
+
- Inspect: Properly store and restore NaN values when viewing logs in VSCode.
|
257
|
+
- Documentation: Update tutorial to use HuggingFaceH4/MATH-500 as math dataset.
|
258
|
+
- Documentation: Add scorer.py example that uses the expression_equivalence custom scorer from the tutorial.
|
259
|
+
- Bugfix: Correct parsing of `CUDA_VISIBLE_DEVICES` environment variable for vLLM provider
|
260
|
+
- Bugfix: Don't require saved response message id for openai assistant messages.
|
261
|
+
- Bugfix: Don't show empty `<think>` tag in conversation view if there is no reasoning content.
|
262
|
+
- Bugfix: Properly handle multiple reasoning blocks and empty reasoning summaries in OpenAI responses API.
|
263
|
+
- Bugfix: Tolerate assistant messages with no internal representation in Open AI responses API.
|
264
|
+
- Bugifx: Correct reporting of seconds until next retry for model generate calls.
|
265
|
+
|
266
|
+
## v0.3.90 (21 April 2025)
|
267
|
+
|
268
|
+
- Inspect View: Collapse user messages after 15 lines by default.
|
269
|
+
- Inspect View: Improved spacing between transcript events.
|
270
|
+
- Bugfix: Prevent duplicate sample init events in transcript.
|
271
|
+
- Bugfix: Properly collapse initialization events in the transcript.
|
272
|
+
- Bugfix: Properly pre-wrap source code in the transcript.
|
273
|
+
|
274
|
+
## v0.3.89 (17 April 2025)
|
275
|
+
|
276
|
+
- [Model Roles](https://inspect.aisi.org.uk/models.html#model-roles) for creating aliases to models used in a task (e.g. "grader", "red_team", "blue_team", etc.)
|
277
|
+
- New [openai-api](https://inspect.aisi.org.uk/providers.html#openai-api) model provider for interfacing with arbitrary services that have Open AI API compatible endpoints.
|
278
|
+
- ReAct Agent: [truncation](https://inspect.aisi.org.uk/agents.html#truncation) option to trim conversation messages when the model context window is exceeded.
|
279
|
+
- ReAct Agent: Improve default `on_continue` message, including using a dynamic name for the submit tool.
|
280
|
+
- Agent Bridge: Add `metadata` field to bridge input for backward compatibility with solver-based bridge.
|
281
|
+
- Added `default` argument to `get_model()` to explicitly specify a fallback model if the specified model isn't found.
|
282
|
+
- Approval: Approvers now take `history` argument (rather than `TaskState`) to better handle agent conversation state.
|
283
|
+
- Anthropic: Update string matching to correctly handle BadRequestErrors related to prompt + max_tokens being too long.
|
284
|
+
- Google: Return "(no content)" when a generate call results in no completion choices.
|
285
|
+
- CloudFlare: Use OpenAI compatible REST endpoint for interface to models.
|
286
|
+
- Azure AI: Use `2025-03-01-preview` as default API version if none explicitly specified.
|
287
|
+
- Model API: `trim_messages()` function for pruning messages to fit within model context windows.
|
288
|
+
- Model API: Improved detection of context window overflow for Grok, Groq, and CloudFlare.
|
289
|
+
- Task Display: Show both provider and model name when concurrency context is not shared across all models for a given provider.
|
290
|
+
- Registry: Exported `registry_create()` function for dynamic creation of registry objects (e.g. `@task`, `@solver`, etc.).
|
291
|
+
- Remove `chdir` option from `@task` (tasks can no longer change their working directory during execution).
|
292
|
+
- `INSPECT_EVAL_LOG_FILE_PATTERN` environment variable for setting the eval log file pattern.
|
293
|
+
- Bugfix: Eval retry now works correctly for models with a service prefix (e.g. `openai/azure/model-name`).
|
294
|
+
- Bugfix: Correctly resolve approvers in the same source file as tasks.
|
295
|
+
- Bugfix: Ensure agent decorator resolves string annotations from `__future__` as needed.
|
296
|
+
- Bugfix: Correctly handle string `dict` keys that are numeric in store diffs.
|
297
|
+
|
298
|
+
## v0.3.88 (11 April 2025)
|
299
|
+
|
300
|
+
- Tools: Restore formerly required (but now deprecated) `type` field to `ToolCall`.
|
301
|
+
- Approval: Raise operator limit exceeded error for tool approval termination action.
|
302
|
+
- Anthropic: Don't include side count of `reasoning_tokens` in `total_tokens` (they are already included).
|
303
|
+
- Anthropic: Update string matching to correctly handle BadRequestErrors related to prompts being too long.
|
304
|
+
|
305
|
+
## v0.3.87 (10 April 2025)
|
306
|
+
|
307
|
+
- Eval: Fix an error when attempting to display realtime metrics for an evaluation.
|
308
|
+
- Log Viewer: Fix an error when displaying a running log with a null metric value.
|
309
|
+
|
310
|
+
## v0.3.86 (09 April 2025)
|
311
|
+
|
312
|
+
- Open AI: Treat `UnprocessableEntityError` as bad request so we can include the request payload in the error message.
|
313
|
+
- Eval Retry: Correctly restore model-specific generation config on retry.
|
314
|
+
- Inspect View: Resolve sample attachments before including in realtime event stream.
|
315
|
+
- Bugfix: Properly handle special characters in IDs during event database cleanup.
|
316
|
+
|
317
|
+
## v0.3.85 (08 April 2025)
|
318
|
+
|
319
|
+
- Remove support for `goodfire` model provider (dependency conflicts).
|
320
|
+
- React Agent: Enable specification of `description` without `name`.
|
321
|
+
|
322
|
+
## v0.3.84 (07 April 2025)
|
323
|
+
|
324
|
+
- Bugfix: Suppress link click behavior in vscode links.
|
325
|
+
|
326
|
+
## v0.3.83 (07 April 2025)
|
327
|
+
|
328
|
+
- Inspect View: [Live updates](https://inspect.aisi.org.uk/log-viewer.html#live-view) to running evaluation logs.
|
329
|
+
- [Agent](https://inspect.aisi.org.uk/agents.html) protocol and [inspect_ai.agent](https://inspect.aisi.org.uk/reference/inspect_ai.agent.html) module with new system for creating, composing, and executing agents.
|
330
|
+
- Scoring: New [grouped()](https://inspect.aisi.org.uk/scoring.html#metric-grouping) metric wrapper function, which applies a given metric to subgroups of samples defined by a key in sample metadata.
|
331
|
+
- Basic Agent: New `submit_append` option to append the submit tool output to the completion rather than replacing the completion (note that the new `react()` agent appends by default).
|
332
|
+
- Model API: New [execute_tools()](https://inspect.aisi.org.uk/reference/inspect_ai.model.html#execute_tools) function (replaces deprecated `call_tools()` function) which handles agent handoffs that occur during tool calling.
|
333
|
+
- Model API: `generate_loop()` method for calling generate with a tool use loop.
|
334
|
+
- Model API: Provide optional sync context manager for `Model` (works only with providers that don't require an async close).
|
335
|
+
- Anthropic: Add support for `tool_choice="none"` (added in v0.49.0, which is now required).
|
336
|
+
- Together AI: Updated `logprobs` to pass `1` rather than `True` (protocol change).
|
337
|
+
- Tools: `bash_session()` and `web_browser()` now create a distinct sandbox process each time they are instantiated.
|
338
|
+
- Computer Tool: Support for use of the native Open AI computer tool (available in the model `openai/computer-use-preview`)
|
339
|
+
- Task API: `task_with()` and `tool_with()` no longer copy the input task or tool (rather, they modify it in place and return it).
|
340
|
+
- Eval Set: Resolve tasks before each pass (ensure that each pass runs against an entirely new task instance).
|
341
|
+
- Eval Retry: Ability to retry any task in the registry, even if it has a custom `name` (save `registry_name` separately).
|
342
|
+
- Human Agent: Start task with clock paused and then automatically start it on container logins.
|
343
|
+
- Typed Store: `instance` option for `store_as()` for using multiple instances of a `StoreModel` within a sample.
|
344
|
+
- Typed Store: Raise error if attempting to embed a `StoreModel` within another `StoreModel`.
|
345
|
+
- Sandbox: New `sandbox_default()` context manager for temporarily changing the default sandbox.
|
346
|
+
- Docker: `write_file()` function now gracefully handles larger input file sizes (was failing on files > 2MB).
|
347
|
+
- Docker: Prevent low timeout values (e.g. 1 second) from disabling timeout entirely when they are retried.
|
348
|
+
- Display: Print warnings after task summaries for improved visibility.
|
349
|
+
- Inspect View: Fallback to content range request if initial HEAD request fails.
|
350
|
+
- Inspect View: Improve error message when view bundles are server from incompatible servers.
|
351
|
+
- Inspect View: Render messages in `user` and `assistant` solver events.
|
352
|
+
- Inspect View: Improved support for display of nested arrays.
|
353
|
+
- Inspect View: Improved rendering of complex scores and metrics.
|
354
|
+
- Inspect View: Properly handle filtering of dictionary scores.
|
355
|
+
- Inspect View: Render math in model input and output using katex.
|
356
|
+
- Inspect View: Improve sample score rendering (single scoring tab with scores rendered in a table).
|
357
|
+
- Inspect View: Improve sample count display in sample list footer.
|
358
|
+
- Inspect View: Properly refresh running evals when restoring from being backgrounded.
|
359
|
+
- Bugfix: Support for calling the `score()` function within Jupyter notebooks.
|
360
|
+
- Bugfix: Handle process lookup errors that can occur during timeout race conditions.
|
361
|
+
- Bugfix: Correctly capture and return logs from `eval()` when a cancellation occurs.
|
362
|
+
- Bugfix: Correctly handle custom `api_version` model argument for OpenAI on Azure.
|
363
|
+
- Bugfix: Correct handling for `None` passed to tool call by model for optional parameters.
|
364
|
+
- Bugfix: Cleanup automatically created `.compose.yml` when not in working directory.
|
365
|
+
- Bugfix: Prevent exception when navigating to sample that no longer exists in running samples display.
|
366
|
+
|
367
|
+
## v0.3.82 (02 April 2025)
|
368
|
+
|
369
|
+
- Bugfix: Correct handling of backward compatibility for inspect-web-browser-tool image.
|
370
|
+
- Bugfix: Eval now properly exits when `max_tasks` is greater than total tasks
|
371
|
+
|
372
|
+
## v0.3.81 (30 March 2025)
|
373
|
+
|
374
|
+
- Requirements: Temporarily upper-bound `rich` to < 14.0.0 to workaround issue.
|
375
|
+
|
376
|
+
## v0.3.80 (30 March 2025)
|
377
|
+
|
378
|
+
- Google: Compatibility with httpx client in `google-genai` >= 1.8.0 (which is now required).
|
379
|
+
- Mistral: Compatibility with tool call schema for `mistralai` >= v1.6.0 (which is now required).
|
380
|
+
- Inspect View: Correctly parse NaN values (use JSON5 for all JSON parsing)
|
381
|
+
|
382
|
+
## v0.3.79 (26 March 2025)
|
383
|
+
|
384
|
+
- Google: Compatibility with v1.7 of google-genai package (create client per-generate request)
|
385
|
+
- Bugfix: Properly record scorer and metrics when there are multiple tasks run in an eval.
|
386
|
+
|
387
|
+
## v0.3.78 (25 March 2025)
|
388
|
+
|
389
|
+
- OpenAI: Ensure that assistant messages always have the `msg_` prefix in responses API.
|
390
|
+
|
391
|
+
## v0.3.77 (25 March 2025)
|
392
|
+
|
393
|
+
- New [think()](https://inspect.aisi.org.uk/tools-standard.html#sec-think) tool that provides models with the ability to include an additional thinking step.
|
394
|
+
- OpenAI: Support for the new [Responses API](https://inspect.ai-safety-institute.org.uk/providers.html#responses-api) and [o1-pro](https://platform.openai.com/docs/models/o1-pro) models.
|
395
|
+
- OpenAI: Remove base64-encoded audio content from API call JSON in ModelEvent.
|
396
|
+
- AzureAI: Support for use of native [OpenAI](https://inspect.ai-safety-institute.org.uk/providers.html#openai-on-azure) and [Mistral](https://inspect.ai-safety-institute.org.uk/providers.html#mistral-on-azure-ai) clients using service qualifiers (e.g. `openai/azure/gpt-4o-mini` or `mistral/azure/Mistral-Large-2411`).
|
397
|
+
- OpenRouter: Handle "error" field in response object and retry for empty responses.
|
398
|
+
- Added `--metadata` option to eval for associating metadata with eval runs.
|
399
|
+
- Task display: Show reasoning tokens for models that report them.
|
400
|
+
- Anthropic: Include reasoning tokens in computation of total tokens
|
401
|
+
- Inspect View: Properly wrap tool input for non-code inputs like `think`.
|
402
|
+
|
403
|
+
## v0.3.76 (23 March 2025)
|
404
|
+
|
405
|
+
- [bash_session()](https://inspect.ai-safety-institute.org.uk/tools-standard.html#sec-bash-session) tool for creating a stateful bash shell that retains its state across calls from the model.
|
406
|
+
- [text_editor()](https://inspect.ai-safety-institute.org.uk/tools-standard.html#sec-text-editor) tool which enables viewing, creating and editing text files.
|
407
|
+
- Structured Output: Properly handle Pydantic BaseModel that contains other BaseModel definitions in its schema.
|
408
|
+
- OpenAI: Support for .wav files in audio inputs for gpt-4o-audio-preview.
|
409
|
+
- OpenAI: Strip 'azure' prefix from model_name so that model type checks all work correctly.
|
410
|
+
- OpenAI: Don't send `reasoning_effort` parameter to o1-preview (as it is not supported).
|
411
|
+
- Inspect View: Fix error sorting numeric or categorical score results.
|
412
|
+
- Inspect View: Properly wrap model API call text in the transcript.
|
413
|
+
- Bugfix: Only initialise display in eval_set if it wasn't initialised from the CLI
|
414
|
+
- Bugfix: Set the global log level based on the specified Inspect log level.
|
415
|
+
- Bugfix: Resolve issue when deserialising a SubtaskEvent from a log file which does not have a completed time.
|
416
|
+
- Bugfix: Fix unnecessary warnings about task arguments.
|
417
|
+
- Bugfix: When a task does not take a kwargs argument, only warn if the provided argument is not valid.
|
418
|
+
|
419
|
+
## v0.3.75 (18 March 2025)
|
420
|
+
|
421
|
+
- Model API: Specifying a default model (e.g. `--model`) is no longer required (as some evals have no model or use `get_model()` for model access).
|
422
|
+
- Tasks can now directly specify a `model`, and model is no longer a required axis for parallel tasks.
|
423
|
+
- Eval Set: Improved parallelisation in scheduler (all pending tasks are now run together rather than in model groups).
|
424
|
+
- Don't generate `id` for `ChatMessage` when deserialising (`id` is now `str | None` and is only populated when messages are directly created).
|
425
|
+
- Log: Support for zip64 extensions required to read some log files that are larger than 4GB.
|
426
|
+
- Anthropic: Provide `reasoning_tokens` for standard thinking blocks (redacted thinking not counted).
|
427
|
+
- Google: Improve checking of `APIError` status codes for retry.
|
428
|
+
- CLI: Added `--env` option for defining environment variables for the duration of the `inspect` process.
|
429
|
+
- Inspect View: Fix issue generating diffs for nested arrays.
|
430
|
+
- Inspect View: Fix layout issue with sample error display in sample detail summary.
|
431
|
+
- Inspect View: Better support large eval files (in excess of 4GB).
|
432
|
+
- Inspect View: Correctly display 'None' when passed in tool calls.
|
433
|
+
- Inspect View: Fix 'Access Denied' error when using `inspect view` and viewing the log in a browser.
|
434
|
+
- Bugfix: Properly handle nested Pydantic models when reading typed store (`store_as()`) from log.
|
435
|
+
- Bugfix: Enable passing `solver` list to `eval()` (decorate `chain` function with `@solver`).
|
436
|
+
- Bugfix: Support deserializing custom sandbox configuration objects when said sandbox plugin is not installed.
|
437
|
+
- Bugfix: Fix error in sample filtering autocomplete (could cause autocomplete to fail and show an error in js console).
|
438
|
+
|
439
|
+
## v0.3.74 (15 March 2025)
|
440
|
+
|
441
|
+
- Bugfix: Exclude chat message `id` from cache key (fixes regression in model output caching).
|
442
|
+
|
443
|
+
## v0.3.73 (14 March 2025)
|
444
|
+
|
445
|
+
- Constrain model output to a particular JSON schema using [Structured Output](https://inspect.aisi.org.uk/structured.html) (supported for OpenAI, Google, and Mistral).
|
446
|
+
- New "HTTP Retries" display (replacing the "HTTP Rate Limits" display) which counts all retries and does so much more consistently and accurately across providers.
|
447
|
+
- The `ModelAPI` class now has a `should_retry()` method that replaces the deprecated `is_rate_limit()` method.
|
448
|
+
- The "Generate..." progress message in the Running Samples view now shows the number of retries for the active call to `generate()`.
|
449
|
+
- New `inspect trace http` command which will show all HTTP requests for a run.
|
450
|
+
- More consistent use of `max_retries` and `timeout` configuration options. These options now exclusively control Inspect's outer retry handler; model providers use their default behaviour for the inner request, which is typically 2-4 retries and a service-appropriate timeout.
|
451
|
+
- Improved async implementation using AnyIO (can now optionally run Trio rather than asyncio as the [async backend](https://inspect.aisi.org.uk/parallelism.html#async-backends)).
|
452
|
+
- Agent Bridge: Correct handling for `tool_choice` option.
|
453
|
+
- Model API: `ChatMessage` now includes an `id` field (defaults to auto-generated uuid).
|
454
|
+
- OpenAI: More flexible parsing of content parts (some providers omit the "type" field); support for "reasoning" content parts.
|
455
|
+
- Anthropic: Retry api connection errors and remote protocol errors that occur during streaming.
|
456
|
+
- Mistral: Update to new Mistral API (v1.5.1 of `mistralai` is now required).
|
457
|
+
- Logging: Inspect no longer sets the global log level nor does it allow its own messages to propagate to the global handler (eliminating the possibility of duplicate display). This should improve compatibility with applications that have their own custom logging configured.
|
458
|
+
- Tasks: For filesystem based tasks, no longer switch to the task file's directory during execution (directory switching still occurs during task loading). Specify `@task(chdir=True)` to preserve the previous behavior.
|
459
|
+
- Bugfix: Fix issue with deserializing custom sandbox configuration objects.
|
460
|
+
- Bugfix: Handle `parallel_tool_calls` correctly for OpenAI models served through Azure.
|
461
|
+
|
462
|
+
## v0.3.72 (03 March 2025)
|
463
|
+
|
464
|
+
- Computer: Updated tool definition to match improvements in Claude Sonnet 3.7.
|
465
|
+
|
466
|
+
## v0.3.71 (01 March 2025)
|
467
|
+
|
468
|
+
- Anthropic: Support for [extended thinking](https://inspect.aisi.org.uk/reasoning.html#claude-3.7-sonnet) features of Claude Sonnet 3.7 (minimum version of `anthropic` package bumped to 0.47.1).
|
469
|
+
- Reasoning: `ContentReasoning` type for representing model reasoning blocks.
|
470
|
+
- Reasoning: `reasoning_tokens` for setting maximum reasoning tokens (currently only supported by Claude Sonnet 3.7)
|
471
|
+
- Reasoning: `reasoning_history` can now be specified as "none", "all", "last", or "auto" (which yields a provider specific recommended default).
|
472
|
+
- Web Browser: [Various improvements](https://github.com/UKGovernmentBEIS/inspect_ai/pull/1314) to performance and robustness along with several bug fixes.
|
473
|
+
- OpenAI: Provide long connection (reasoning friendly) socket defaults in http client
|
474
|
+
- OpenAI: Capture `reasoning_tokens` when reported.
|
475
|
+
- OpenAI: Retry on rate limit requests with "Request too large".
|
476
|
+
- OpenAI: Tolerate `None` for assistant content (can happen when there is a refusal).
|
477
|
+
- Google: Retry requests on more HTTP status codes (selected 400 errors and all 500 errors).
|
478
|
+
- Event Log: Add `working_start` attribute to events and `completed` and `working_time` to model, tool, and subtask events.
|
479
|
+
- Human Agent: Add `task quit` command for giving up on tasks.
|
480
|
+
- Human Agent: Don't emit sandbox events for human agent
|
481
|
+
- Inspect View: Improve rendering of JSON within logging events.
|
482
|
+
- Inspect View: Improve virtualized rendering of Sample List, Sample Transcript, and Sample Messages.
|
483
|
+
- Task Display: Let plugins display counters ('rich' and 'full' display modes only).
|
484
|
+
- Inspect View: Fix layout issues with human agent terminal session playback.
|
485
|
+
- Inspect View: Improve tool input / output appearance when rendered in VSCode.
|
486
|
+
- Inspect View: Display reasoning tokens in model usage for the samples and for the complete eval.
|
487
|
+
- Inspect View: Improve model api request / response output when rendered in VSCode.
|
488
|
+
- Inspect View: Improve rendering of some tool calls in the transcript.
|
489
|
+
- Bugfix: Fix audio and video inputs for new Google GenAI client.
|
490
|
+
- Bugfix: Ensure that token limits are not enforced during model graded scoring.
|
491
|
+
- Bugfix: Catch standard `TimeoutError` for running shell commands in the computer tool container.
|
492
|
+
- Bugfix: Correct combination of consecutive string based user messages for Anthropic provider.
|
493
|
+
|
494
|
+
## v0.3.70 (25 February 2025)
|
495
|
+
|
496
|
+
- [working_limit](https://inspect.aisi.org.uk/errors_and_limits.html#working-limit) option for specifying a maximum working time (e.g. model generation, tool calls, etc.) for samples.
|
497
|
+
- Added `SandboxEvent` to transcript for recording sandbox execution and I/O.
|
498
|
+
- Sandboxes: `as_type()` function for checked downcasting of `SandboxEnvironment`
|
499
|
+
- Remove root logging handlers upon Inspect logger initialisation (as they result in lots of log spam if left installed).
|
500
|
+
- Only explicitly set `state.completed=True` when entering scoring (`basic_agent()` no longer sets `completed` so can be used in longer compositions of solvers).
|
501
|
+
- Add `uuid` property to `TaskState` and `EvalSample` (globally unique identifier for sample run).
|
502
|
+
- Add `cleanup` to tasks for executing a function at the end of each sample run.
|
503
|
+
- Agent `bridge()` is now compatible with the use of a custom `OPENAI_BASE_URL`.
|
504
|
+
- Mistral: Bump required version of `mistralai` package to 1.5 (required for `working_limit`).
|
505
|
+
- Truncate tracebacks included in evaluation log to a maximum of 1MB.
|
506
|
+
- Compatibility with textual version 2.0 (remove upper bound).
|
507
|
+
- Align with HF datasets `fsspec` version constraints to avoid pip errors when installing alongside `datasets`.
|
508
|
+
- Bugfix: Fix issue with tools that had an ordinary `dict` as a parameter.
|
509
|
+
- Bugfix: Print the correct container `sample_id` for `--no-sandbox-cleanup`.
|
510
|
+
|
511
|
+
## v0.3.69 (20 February 2025)
|
512
|
+
|
513
|
+
- Google provider updated to use the [Google Gen AI SDK](https://googleapis.github.io/python-genai/), which is now the recommended API for Gemini 2.0 models.
|
514
|
+
- Task display: Use cooperative cancellation for cancel buttons in task display.
|
515
|
+
- Task display: Print task progress every 5 seconds for 'plain' display mode.
|
516
|
+
- Task display: Handle click on running samples tab when there is no transcript.
|
517
|
+
- Docker: Print stderr from `compose up` when no services startup successfully.
|
518
|
+
- Docker: Print sample id and epoch for each container when using `--no-sandbox-cleanup`
|
519
|
+
- Mistral: Create and destroy client within generate.
|
520
|
+
- Inspect View: Fix display of score dictionaries containing boolean values
|
521
|
+
- Bugfix: Catch standard `TimeoutError` for subprocess timeouts (ensure kill/cleanup of timed out process).
|
522
|
+
|
523
|
+
## v0.3.68 (19 February 2025)
|
524
|
+
|
525
|
+
- Task display: Improve spacing/layout of final task display.
|
526
|
+
- Textual: speicfy broader range of compatible versions (v0.86.2 to v1.0.0)
|
527
|
+
|
528
|
+
## v0.3.67 (18 February 2025)
|
529
|
+
|
530
|
+
- Memoize calls to `get_model()` so that model instances with the same parameters are cached and re-used (pass `memoize=False` to disable).
|
531
|
+
- Async context manager for `Model` class for optional scoped usage of model clients.
|
532
|
+
- New `assistant_message()` solver.
|
533
|
+
- Prompt templates: Ignore template placeholders that don't map to passed parameters in `prompt_template()`, and system/user/assistant solvers.
|
534
|
+
- Google: Handle system messages with content lists and input with system but no user messages.
|
535
|
+
- Google: Ensure that a completion choice is provided even when none are returned by the service.
|
536
|
+
- Inspect View: Improve the display of subtasks with no inputs or events.
|
537
|
+
- Inspect View: Fix transcript display of phantom subtask or other phantom events.
|
538
|
+
- Inspect View: Fix formatting issues in sample error display
|
539
|
+
- Bugfix: Raise error for empty dataset (rather than providing a dummy sample).
|
540
|
+
- Bugfix: Specify markup=False for textual static controls (stricter parser in textual 2.0 leading to exceptions).
|
541
|
+
- Bugfix: Temporarily pin to textual==1.0.0 while they chase all of their regressions in 2.0
|
542
|
+
|
543
|
+
## v0.3.66 (17 February 2025)
|
544
|
+
|
545
|
+
- Docker: Correct compose file generation for Dockerfiles w/ custom stem or extension.
|
546
|
+
- Escape brackets when rendering task config (another textual 2.0 fix)
|
547
|
+
|
548
|
+
## v0.3.65 (16 February 2025)
|
549
|
+
|
550
|
+
- Compatibility with textual 2.0 (which had several breaking changes).
|
551
|
+
- Inspect View: Improve scorer display formatting.
|
552
|
+
- Bugfix: Inspect view now correctly renders arrays with embedded `null` values.
|
553
|
+
- Bugfix: Inspect view now correctly handles scorers with no metrics.
|
554
|
+
|
555
|
+
## v0.3.64 (14 February 2025)
|
556
|
+
|
557
|
+
- [Reference documentation](https://inspect.aisi.org.uk/reference/) for Python API and CLI commands.
|
558
|
+
- Add support for [clustered standard errors](https://inspect.aisi.org.uk/scorers.html#clustered-standard-errors) via a new `cluster` parameter for the `stderr()` metric.
|
559
|
+
- Improvements to [scoring workflow](https://inspect.aisi.org.uk/scorers.html#sec-scorer-workflow) (`inspect score` command and `score()` function).
|
560
|
+
- Metrics now take `list[SampleScore]` rather than `list[Score]` (previous signature is deprecated but still works with a warning).
|
561
|
+
- Use a sample adjustment for the `var()` metric.
|
562
|
+
- Google: Speculative fix for completion candidates not being returned as a list.
|
563
|
+
- Python and Bash tools: Add `sandbox` argument for running in non-default sandboxes.
|
564
|
+
- Transcript: Log `ScoreEvent` (with `intermediate=True`) when the `score()` function is called.
|
565
|
+
- Transcript: Add `source` field to `InfoEvent` and use it for events logged by the human agent.
|
566
|
+
- Docker: Support Dockerfiles with `.Dockerfile` extension.
|
567
|
+
- Docker: Raise error when there is an explicitly configured `container_name` (incompatible with epochs > 1).
|
568
|
+
- Docker: Dynamically set `compose up` timeout when there are `healthcheck` entries for services.
|
569
|
+
- Log: Validate that `log_dir` is writeable at startup.
|
570
|
+
- Log: Write eval config defaults into log file (rather than `None`).
|
571
|
+
- Bugfix: Always honor level-level-transcript setting for transcript logging.
|
572
|
+
- Bugfix: Fix some dynamic layout issues for sample sandbox view.
|
573
|
+
|
574
|
+
## v0.3.63 (07 February 2025)
|
575
|
+
|
576
|
+
- Add [OpenRouter](https://inspect.aisi.org.uk/providers.html#openrouter) model provider.
|
577
|
+
- Inspect View: Convert codebase from JS/Preact to Typescript/React
|
578
|
+
- Add `shuffle_choices` to dataset and dataset loading functions. Deprecate `shuffle` parameter to the `multiple_choice` solver.
|
579
|
+
- Add `stop_words` param to the `f1` scorer. `stop_words` will be removed from the target and answer during normalization.
|
580
|
+
- Tools: Handle return of empty list from tool calls.
|
581
|
+
- Computer: Moved out of beta (i.e. from `inspect_ai.tool.beta` into `inspect_ai.tool`).
|
582
|
+
- Sandboxes: Docker now uses `tee` for write_file operations.
|
583
|
+
- Inspect View: Handle Zip64 zip files (for log files greater than 4GB)
|
584
|
+
- Bugfix: Change `type` parameter of `answer()` to `pattern` to address registry serialisation error.
|
585
|
+
- Bugfix: Restore printing of request payloads for 400 errors from Anthropic.
|
586
|
+
- Bugfix: Log transcript event for solver provided scores (improves log viewer display of solver scoring)
|
587
|
+
|
588
|
+
## v0.3.62 (03 February 2025)
|
589
|
+
|
590
|
+
- Various improvements for [reasoning models](https://github.com/UKGovernmentBEIS/inspect_ai/pull/1229) including extracting reasoning content from assistant messages.
|
591
|
+
- OpenAI: Handle `reasoning_effort`, `max_tokens`, `temperature`, and `parallel_tool_calls` correctly for o3 models.
|
592
|
+
- OpenAI: Map some additional 400 status codes to `content_filter` stop reason.
|
593
|
+
- Anthropic: Handle 413 status code (Payload Too Large) and map to `model_length` StopReason.
|
594
|
+
- Tasks: Log sample with error prior to raising task-ending exception.
|
595
|
+
- Python: Enhance prompt to emphasise that it is a script rather than a notebook.
|
596
|
+
- Computer: Various improvements to image including desktop, python, and VS Code configuration.
|
597
|
+
- Bugfix: Don't download full log from S3 for header_only reads.
|
598
|
+
|
599
|
+
## v0.3.61 (31 January 2025)
|
600
|
+
|
601
|
+
- Computer: Enable viewing computer tool's remote mouse cursor via VNC.
|
602
|
+
- Computer: Disable lock screen on from computer tool reference image.
|
603
|
+
- Limits: Amend `SampleLimitExceededError` with current `state` so that messages, etc. are preserved when limits are hit.
|
604
|
+
- Tools: Properly handle image dispatching when multiple tool calls are made by assistant.
|
605
|
+
- Anthropic: Raise error on 400 status not identified as model_length or content_filter.
|
606
|
+
- Basic Agent: `incorrect_message` can now optionally be an async function.
|
607
|
+
- Bugfix: Remove `suffix` from `eval-set` CLI args.
|
608
|
+
- Bugfix: Only catch `Exception` from sandboxenv_init (allow cancelled to propagate)
|
609
|
+
|
610
|
+
## v0.3.60 (29 January 2025)
|
611
|
+
|
612
|
+
- [Agent Bridge](https://inspect.aisi.org.uk/agent-bridge.html) for integrating external agent frameworks with Inspect.
|
613
|
+
- [Goodfire](https://inspect.aisi.org.uk/models.html#goodfire) model provider.
|
614
|
+
- Add `@wraps` to functions wrapped by Inspect decorators to preserve type information.
|
615
|
+
- Hugging Face: Add support for stop sequences for HF models.
|
616
|
+
- Docker: More robust parsing of version strings (handle development versions).
|
617
|
+
- Vertex: Support for Anthropic models hosted on Vertex.
|
618
|
+
- OpenAI: Read `refusal` field from assistant message when provided.
|
619
|
+
- OpenAI: Use qualifiers rather than model args for OpenAI on other providers (`openai/azure`)
|
620
|
+
- Anthropic: Don't insert '(no content)' into canonical messages list (do only on replay)
|
621
|
+
- Anthropic: Use qualifiers rather than model args for Anthropic on other providers (`anthropic/bedrock`, `anthropic/vertex`).
|
622
|
+
- Anthropic: Support for `extra_body` model arg (for adding additional JSON properties to the request)
|
623
|
+
- Basic Agent: Append `tools` to `state` so that tools added in `init` are preserved.
|
624
|
+
- Scoring: Always provide half-again the sample time limit for scoring.
|
625
|
+
- Bugfix: Fix issue w/ approvals for samples with id==0.
|
626
|
+
- Bugfix: Use "plain" display when running eval_async() outside of eval().
|
627
|
+
- Bugfix: Fix issue with multiple scorers of the same type in a task.
|
628
|
+
|
629
|
+
## v0.3.59 (24 January 2025)
|
630
|
+
|
631
|
+
- Beta version of [computer()](https://inspect.aisi.org.uk/tools-standard.html#sec-computer) tool which models with a computer desktop environment.
|
632
|
+
- `user_message()` solver for appending parameterised user messages.
|
633
|
+
- `prompt_template()`, `system_message()` and `user_message()` solver now also include the sample `store` in substitution parameters.
|
634
|
+
- Limits: Enforce token and message limit at lower level (not longer required to check `state.completed` for limit enforcement).
|
635
|
+
- Limits: Enforce [custom limits](https://inspect.aisi.org.uk/errors-and-limits.html#custom-limit) for samples by raising `SampleLimitExceededError`.
|
636
|
+
- Tasks: Optional ability for solvers to [yield scores](https://inspect.aisi.org.uk/solvers.html#sec-scoring-in-solvers) for a task.
|
637
|
+
- Model API: Log model calls that result in bad request errors.
|
638
|
+
- Tools: `model_input` option that determines how tool call result content is played back to the model.
|
639
|
+
- Tools: Don't attempt to marshall arguments of dynamic `ToolDef` with `**kwargs: Any` (just pass them through).
|
640
|
+
- Log warning when a non-fatal sample error occurs (i.e. errors permitted by the `fail_on_error` option)
|
641
|
+
- Inspect View: allow filtering samples by compound expressions including multiple scorers. (thanks @andrei-apollo)
|
642
|
+
- Inspect View: improve rendering performance and stability for the viewer when viewing very large eval logs or samples with a large number of steps.
|
643
|
+
- Task display: Improved `plain` mode with periodic updates on progress, metrics, etc.
|
644
|
+
- Google: Update to v0.8.4 of google-generativeai (py.typed support and removal of logprobs generation options)
|
645
|
+
- Google: Support for string enums (e.g. `Literal["a", "b", "c"])`) in tool function declarations.
|
646
|
+
|
647
|
+
## v0.3.58 (16 January 2025)
|
648
|
+
|
649
|
+
- Support for [audio and video](https://inspect.aisi.org.uk/multimodal.html) inputs for Open AI and Google Gemini models.
|
650
|
+
- Task display: Added Timeout Tool button for manually timing out a tool call.
|
651
|
+
- Task display: Automatically switch to "plain" mode when running in a background thread
|
652
|
+
- Sandboxes: Setup and initialisation errors are now handled at the sample level.
|
653
|
+
- Sandboxes: Increase setup script timeout to 5 minutes (from 30 seconds) and do not retry setup scripts (in case they aren't idempotent).
|
654
|
+
- Sandboxes: Add `timeout_retry` option (defaulting to `True`) to `exec()` function.
|
655
|
+
- Sandboxes: Add `type` and optional `container` properties to `SandboxConnection`.
|
656
|
+
- Docker: Services which exit with status 0 during setup no longer cause an error.
|
657
|
+
- `task_with()` function for creating task variants.
|
658
|
+
- Added `--filter` argument to trace CLI commands for filtering on trace log message content.
|
659
|
+
- Print model conversations to terminal with `--display=conversation` (was formerly `--trace`, which is now deprecated).
|
660
|
+
- HuggingFace: Support models that don't provide a chat template (e.g. gpt2)
|
661
|
+
- Eval Set: Ensure that logs with status 'started' are retried.
|
662
|
+
- Rename the built in `bootstrap_std` metric to `bootstrap_stderr` (deprecate `bootstrap_std`)
|
663
|
+
- Bugfix: Fix duplication of summaries when eval log file is rewritten.
|
664
|
+
|
665
|
+
## v0.3.57 (09 January 2025)
|
666
|
+
|
667
|
+
- [Tracing API](https://inspect.aisi.org.uk/tracing.html#tracing-api) for custom trace logging.
|
668
|
+
- Inspect View: never truncate tool result images and display at default width of 800px.
|
669
|
+
- Inspect View: display tool error messages in transcript when tool errors occur.
|
670
|
+
- Inspect View: display any completed samples even if the task fails because of an error
|
671
|
+
- Inspect View: don't display the 'input' column heading if there isn't an input
|
672
|
+
- Open AI: Handle additional bad request status codes (mapping them to appropriate `StopReason`)
|
673
|
+
- Open AI: Use new `max_completion_tokens` option for o1 full.
|
674
|
+
- Web Browser: raise error when both `error` and `web_at` fields are present in response.
|
675
|
+
- Sandboxes: Apply dataset filters (limit and sample id) prior to sandbox initialisation.
|
676
|
+
- Docker: Prevent issue with container/project names that have a trailing underscore.
|
677
|
+
- Store: initialise `Store` from existing dictionary.
|
678
|
+
- Log: provide `metadata_as` and `store_as` typed accessors for sample metadata and store.
|
679
|
+
- Tool parameters with a default of `None` are now supported.
|
680
|
+
- More fine graned HTML escaping for sample transcripts displalyed in terminal.
|
681
|
+
- Bugfix: prevent errors when a state or storage value uses a tilde or slash in the key name.
|
682
|
+
- Bugfix: Include input in sample summary when the sample input contains a simple string.
|
683
|
+
|
684
|
+
## v0.3.56 (01 January 2025)
|
685
|
+
|
686
|
+
- [Human Agent](https://inspect.aisi.org.uk/human-agent.html) solver for human baselining of computing tasks.
|
687
|
+
- [Typed interfaces](https://inspect.aisi.org.uk/typing.html) to `Sample` store and metadata using Pydantic models.
|
688
|
+
- [Approval policies](https://inspect.aisi.org.uk/approval.html#task-approvers) can now be defined at the `Task` level (`eval` level approval policies take precedence).
|
689
|
+
- Tools can now return `ContentText` and `ContentImage`.
|
690
|
+
- Move tool result images into subsequent user messages for models that don't support tools returning images.
|
691
|
+
- `SandboxConnection` that contains login information from sandboxes.
|
692
|
+
- `display_type()` function for detecting the current display type (e.g. "full", "rich", etc.)
|
693
|
+
- Trace: improved handling of `eval()` running in multiple processes at once (trace file per-process)
|
694
|
+
- Docker: don't apply timeouts to `docker build` and `docker pull` commands.
|
695
|
+
- Bugfix: fix issue w/ `store.get()` not auto-inserting `default` value.
|
696
|
+
|
697
|
+
## v0.3.55 (29 December 2024)
|
698
|
+
|
699
|
+
- Bedrock: redact authentication model args from eval logs.
|
700
|
+
- OpenAI: warn when `temperature` is used with o1 models (as it is not supported).
|
701
|
+
- Bugfix: spread args for cache trace logging.
|
702
|
+
|
703
|
+
## v0.3.54 (26 December 2024)
|
704
|
+
|
705
|
+
- [Tracing](https://inspect.aisi.org.uk/tracing.html) for diagnosing runs with unterminated action (e.g. model calls, docker commands, etc.).
|
706
|
+
- Provide default timeout/retry for docker compose commands to mitigate unreliability in some configurations.
|
707
|
+
- Switch to sync S3 writes to overcome unreliability observed when using async interface.
|
708
|
+
- Task display: Added `--no-score-display` option to disable realtime scoring metrics.
|
709
|
+
- Bugfix: Fix failure to fully clone samples that have message lists as input.
|
710
|
+
- llama-cpp-python: Support for `logprobs`.
|
711
|
+
|
712
|
+
## v0.3.53 (20 December 2024)
|
713
|
+
|
714
|
+
- OpenAI: Support for o1 including native tool calling and `reasoning_effort` generation option.
|
715
|
+
- Task API: Introduce `setup` step that always runs even if `solver` is replaced.
|
716
|
+
- Bedrock: Support for tool calling on Nova models.
|
717
|
+
- Bedrock: Support for custom `model_args` passed through to `session.Client`.
|
718
|
+
- Bedrock: Support for `jpeg` images.
|
719
|
+
- Bedrock: Correct max_tokens for llama3-8b, llama3-70b models on Bedrock.
|
720
|
+
- Inspect View: Various improvements to appearance of tool calls in transcript.
|
721
|
+
- Task display: Ensure that widths of progress elements are kept consistent across tasks.
|
722
|
+
- Sandboxes: New `max_sandboxes` option for (per-provider) maximum number of running sandboxes.
|
723
|
+
- Sandboxes: Remove use of aiofiles to mitigate potential for threading deadlocks.
|
724
|
+
- Concurrency: Do not use `max_tasks` as a lower bound for `max_samples`.
|
725
|
+
- Log recorder: Always re-open log buffer for `eval` format logs.
|
726
|
+
- Bugfix: Proper handling of text find for eval raw JSON display
|
727
|
+
- Bugfix: Correct handling for `--sample-id` integer comparisons.
|
728
|
+
- Bugfix: Proper removal of model_args with falsey values (explicit check for `None`)
|
729
|
+
- Bugfix: Properly handle custom metrics that return dictionaries or lists
|
730
|
+
- Bugfix: Proper sample count display when retrying an evaluation
|
731
|
+
- Bugfix: Fix inability to define and run tasks in a notebook.
|
732
|
+
|
733
|
+
## v0.3.52 (13 December 2024)
|
734
|
+
|
735
|
+
- Eval: `--sample-id` option for evaluating specific sample id(s).
|
736
|
+
- Bedrock: Detect and report HTTP rate limit errors.
|
737
|
+
- Azure AI: Add `emulate_tools` model arg to force tool emulation (emulation is enabled by default for Llama models).
|
738
|
+
- Basic Agent: Add `max_tool_output` parameter to override default max tool output from generate config.
|
739
|
+
- Inspect View: Correct display of sample ID for single sample tasks.
|
740
|
+
- Trace: Show custom tool views in `--trace` mode.
|
741
|
+
- Bugfix: Support for dynamic metric names in realtime scoring display.
|
742
|
+
|
743
|
+
## v0.3.51 (13 December 2024)
|
744
|
+
|
745
|
+
- Bugfix: Task display fails to load when no scorers are defined for a task.
|
746
|
+
|
747
|
+
## v0.3.50 (12 December 2024)
|
748
|
+
|
749
|
+
- Tools: Improved typing/schema support (unions, optional params, enums).
|
750
|
+
- Tools: Added `append` argument to `use_tools()` for adding (rather than replacing) the currently available tools.
|
751
|
+
- Docker sandbox: Streamed reads of stderr/stdout (enabling us to enforce output limits for read_file and exec at the source).
|
752
|
+
- Sandbox API: Enable passing `BaseModel` types for sandbox `config` (formerly only a file path could be passed).
|
753
|
+
- Task display: Show all task scores in realtime (expand task progress to see scores).
|
754
|
+
- Task display: Show completed samples and align progress more closely to completed samples (as opposed to steps).
|
755
|
+
- Task display: Show sample messages/tokens used (plus limits if specified).
|
756
|
+
- Task display: Resolve issue where task display would lose mouse input after VS Code reload.
|
757
|
+
- Datasets: Validate that all IDs in datasets are unique (as several downstream problems occur w/ duplicate IDs).
|
758
|
+
- Inspect View: Fix issue with incorrectly displayed custom tool views.
|
759
|
+
- Human approval: Use fullscreen display (makes approval UI async and enables rapid processing of approvals via the `Enter` key).
|
760
|
+
- Added `input_panel()` API for adding custom panels to the fullscreen task display.
|
761
|
+
- Log recorder: Methods are now async which will improve performance for fsspec filesystems with async implementations (e.g. S3)
|
762
|
+
- Log recorder: Improve `.eval` log reading performance for remote filesystem (eagerly fetch log to local buffer).
|
763
|
+
- Add `token_usage` property to `TaskState` which has current total tokens used across all calls to `generate()` (same value that is used for enforcing token limits).
|
764
|
+
- Add `time` field to `ModelOutput` that records total time spent within call to ModelAPI `generate()`.
|
765
|
+
- Web browser: Remove base64 images from web page contents (prevent filling up model context with large images).
|
766
|
+
- Match scorer: If the target of a match isn’t numeric, ignore the numeric flag and instead use text matching (improved handling for percentages).
|
767
|
+
- Hugging Face: Support for native HF tool calling for Llama, Mistral, Qwen, and others if they conform to various standard schemas.
|
768
|
+
- Hugging Face: `tokenizer_call_args` dict to specify custom args during tokenization, such as `max_length` and `truncation`.
|
769
|
+
- Azure AI: Fix schema validation error that occurred when model API returns `None` for `content`.
|
770
|
+
- Display: Throttle updating of sample list based on number of samples.
|
771
|
+
- Display: Add explicit 'ctrl+c' keybinding (as textual now disables this by default).
|
772
|
+
- Bugfix: Correct rate limit error display when running in fullscreen mode.
|
773
|
+
- Bugfix: `hf_dataset` now explicitly requires the `split` argument (previously, it would crash when not specified).
|
774
|
+
- Bugfix: Prevent cascading textual error when an error occurs during task initialisation.
|
775
|
+
- Bugfix: Correctly restore sample summaries from log file after amend.
|
776
|
+
- Bugfix: Report errors that occur during task finalisation.
|
777
|
+
|
778
|
+
## v0.3.49 (03 December 2024)
|
779
|
+
|
780
|
+
- Logging: Only call CreateBucket on Amazon S3 when the bucket does not already exist.
|
781
|
+
- Improve cancellation feedback and prevent multiple cancellations when using fullscreen display.
|
782
|
+
- Inspect View: Prevent circular reference error when rendering complex tool input.
|
783
|
+
- Inspect View: Resolve display issue with sorting by sample then epoch.
|
784
|
+
|
785
|
+
## v0.3.48 (01 December 2024)
|
786
|
+
|
787
|
+
- [Realtime display](https://github.com/UKGovernmentBEIS/inspect_ai/pull/865) of sample transcripts (including ability to cancel running samples).
|
788
|
+
- Scoring: When using a dictionary to map metrics to score value dictionaries, you may now use globs as keys. See our [scorer documentation](https://inspect.aisi.org.uk/scorers.html#sec-multiple-scorers) for more information.
|
789
|
+
- `EvalLog` now includes a [location](https://github.com/UKGovernmentBEIS/inspect_ai/pull/872) property indicating where it was read from.
|
790
|
+
- Use [tool views](https://inspect.aisi.org.uk/approval.html#tool-views) when rendering tool calls in Inspect View.
|
791
|
+
- Consistent behavior for `max_samples` across sandbox and non-sandbox evals (both now apply `max_samples` per task, formerly evals with sandboxes applied `max_samples` globally).
|
792
|
+
- Log files now properly deal with scores that produce Nan. (fixes [#834](https://github.com/UKGovernmentBEIS/inspect_ai/issues/834))
|
793
|
+
- Bash tool: add `--login` option so that e.g. .bashrc is read before executing the command.
|
794
|
+
- Google: Support for tools/functions that have no parameters.
|
795
|
+
- Google/Vertex: Support for `logprobs` and other new 1.5 (002 series) options.
|
796
|
+
- AzureAI: Change default max_tokens for Llama models to 2048 (4096 currently yields an error w/ Llama 3.1).
|
797
|
+
- Mistral: Various compatibility changes for their client and tool calling implementation.
|
798
|
+
- Handle exponents in numeric normalisation for match, include, and answer scorers.
|
799
|
+
- hf_dataset: Added `cached` argument to control whether to use a previously cached version of the dataset if available (defaults to `True`).
|
800
|
+
- hf_dataset: Added `revision` option to load a specific branch or commit SHA (when using `revision` datasets are always revalidated on Hugging Face, i.e. `cached` is ignored).
|
801
|
+
- Log viewer: Display sample ids rather than indexes.
|
802
|
+
- Log viewer: Add timestamps to transcript events.
|
803
|
+
- Log viewer: Metadata which contains images will now render the images.
|
804
|
+
- Log viewer: Show custom tool call views in messages display.
|
805
|
+
- Bugfix: Correctly read and forward image detail property.
|
806
|
+
- Bugfix: Correct resolution of global eval override of task or sample sandboxes.
|
807
|
+
- Bugfix: Don't do eval log listing on background threads (s3fs can deadlock when run from multiple threads).
|
808
|
+
|
809
|
+
## v0.3.47 (18 November 2024)
|
810
|
+
|
811
|
+
- Basic agent: Ensure that the scorer is only run once when max_attempts = 1.
|
812
|
+
- Basic agent: Support custom function for incorrect_message reply to model.
|
813
|
+
- Tool calling: Execute multiple tool calls serially (some models assume that multiple calls are executed this way rather than in parallel).
|
814
|
+
- Google: Combine consecutive tool messages into single content part; ensure no empty text content parts.
|
815
|
+
- AzureAI: Create and close client with each call to generate (fixes issue w/ using azureai on multiple passes of eval).
|
816
|
+
- Bedrock: Migrate to the [Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/conversation-inference-supported-models-features.html), which supports many more features including tool calling and multimodal models.
|
817
|
+
- Scoring: When using a dictionary to map metrics to score value dictionaries, you may now use globs as keys. See our [scorer documentation](https://inspect.aisi.org.uk/scorers.html#sec-multiple-scorers) for more information.
|
818
|
+
- Sample limit events will now appear in the transcript if a limit (e.g. message, token, or time limit) halt a sample. The sample list and sample detail also display the limit, if applicable.
|
819
|
+
|
820
|
+
## v0.3.46 (12 November 2024)
|
821
|
+
|
822
|
+
- [eval](https://inspect.aisi.org.uk/eval-logs.html#sec-log-format) is now the default log format (use `--log-format=json` to use old format).
|
823
|
+
- Base 64 images are now logged by default for all log formats (disable with `--no-log-images`).
|
824
|
+
- The log viewer now properly displays sample errors in the sample list for `eval` format log files.
|
825
|
+
- Improve path handling when using `inspect log convert` to convert a single log file.
|
826
|
+
- Web browser tool: Subtasks now each have independent web browser sessions.
|
827
|
+
- Anthropic: Ensure that assistant messages created in generate never have empty content lists.
|
828
|
+
- Increase sandbox `exec()` output limit from 1 MiB to 10 MiB.
|
829
|
+
|
830
|
+
## v0.3.45 (11 November 2024)
|
831
|
+
|
832
|
+
- [time_limit](https://inspect.aisi.org.uk/errors_and_limits.html#sample-limits) option for specifying a maximum execution time for samples.
|
833
|
+
- [read_eval_log_samples()](https://inspect.aisi.org.uk/eval-logs.html#streaming) function for streaming reads of `.eval` log files.
|
834
|
+
- Mistral: Support for multi-modal models (requires v1.2 of mistralai package).
|
835
|
+
- Groq: Support for multi-modal models (requires v0.11.0 of groq package).
|
836
|
+
- AzureAI: Use Model Inference API (preview) for implementation of model client.
|
837
|
+
- Bedrock: Fix parsing of Bedrock Mistral Large 2407 responses
|
838
|
+
- Apply standard sample error handling (fail-on-error, etc.) when running scorers.
|
839
|
+
- Fix issue with correctly logging task_args for eval-set tasks which are interrupted.
|
840
|
+
- Move `INSPECT_DISABLE_MODEL_API` into `generate()` (as opposed to `get_model()`)
|
841
|
+
- Always treat `.eval` files as logs (don't apply file name pattern restrictions as we do with `.json`).
|
842
|
+
- Log model calls when model providers return bad request errors
|
843
|
+
- Better lay out large numbers of configuration and parameters when displaying log files.
|
844
|
+
- The log viewer now properly displays sample scores for running tasks.
|
845
|
+
- Add `metadata` field to `ModelOutput` and provide various fields for the Groq provider.
|
846
|
+
|
847
|
+
## v0.3.44 (04 November 2024)
|
848
|
+
|
849
|
+
- Revert change to single epoch reducer behavior (regressed some scoring scenarios).
|
850
|
+
|
851
|
+
## v0.3.43 (04 November 2024)
|
852
|
+
|
853
|
+
- New binary [log format](https://inspect.aisi.org.uk/eval-logs.html#sec-log-format) which yields substantial size and speed improvements (JSON format log files are still fully supported and utilities for converting between the formats are provided).
|
854
|
+
- [Grok](https://docs.x.ai/) model provider.
|
855
|
+
- [llama-cpp-python](https://llama-cpp-python.readthedocs.io/en/latest/) local model provider.
|
856
|
+
- Extensions: correctly load extensions in packages where package name differs from dist name.
|
857
|
+
- Added `--model-config`, `--task-config`, and `--solver-config` CLI arguments for specifying model, task, and solver args using a JSON or YAML config file.
|
858
|
+
- View: properly render complex score objects in transcript.
|
859
|
+
- Write custom tool call views into transcript for use by Inspect View.
|
860
|
+
- Use `casefold()` for case-insensitive compare in `includes()`, `match()`, `exact()`, and `f1()` scorers.
|
861
|
+
- OpenAI: eliminate use of `strict` tool calling (sporadically supported across models and we already internally validate).
|
862
|
+
- Mistral: fix bug where base_url was not respected when passing both an api_key and base_url.
|
863
|
+
- Don't include package scope for task name part of log files.
|
864
|
+
- Improve performance of write_file for Docker sandboxes.
|
865
|
+
- Use user_data_dir rather than user_runtime_dir for view notifications.
|
866
|
+
- Implement `read_eval_log_sample()` for JSON log files.
|
867
|
+
- Log the list of dataset sample IDs.
|
868
|
+
- Limit `SandboxEnvironment.exec()` output streams to 1 MiB. Limit `SandboxEnvironment.read_file()` to 100 MiB.
|
869
|
+
- Add `INSPECT_DISABLE_MODEL_API` environment variable for disabling all Model APIs save for mockllm.
|
870
|
+
- Add optional `tool_call_id` param to `ModelOutput.for_tool_call()`.
|
871
|
+
- Support all JSON and CSV dataset arguments in `file_dataset()` function.
|
872
|
+
|
873
|
+
## v0.3.42 (23 October 2024)
|
874
|
+
|
875
|
+
- [ToolDef](https://inspect.aisi.org.uk/tools-custom.html#sec-dynamic-tools) class for dynamically creating tool definitions.
|
876
|
+
- Added `--tags` option to eval for tagging evaluation runs.
|
877
|
+
- Added APIs for accessing sample event transcripts and for creating and resolving attachments for larger content items.
|
878
|
+
- Cleanup Docker Containers immediately for samples with errors.
|
879
|
+
- Support Dockerfile as config path for Docker sandboxes (previously only supported compose files).
|
880
|
+
- Anthropic: remove stock tool use chain of thought prompt (many Anthropic models now do this internally, in other cases its better for this to be explicit rather than implicit).
|
881
|
+
- Anthropic: ensure that we never send empty text content to the API.
|
882
|
+
- Google: compatibility with google-generativeai v0.8.3
|
883
|
+
- Llama: remove extraneous <|start_header_id|>assistant<|end_header_id|> if it appears in an assistant message.
|
884
|
+
- OpenAI: Remove tool call id in user message reporting tool calls to o1- models.
|
885
|
+
- Use Dockerhub aisiuk/inspect-web-browser-tool image for web browser tool.
|
886
|
+
- Use ParamSpec to capture types of decorated solvers, tools, scorers, and metrics.
|
887
|
+
- Support INSPECT_EVAL_MODEL_ARGS environment variable for calls to `eval()`.
|
888
|
+
- Requirements: add lower bounds to various dependencies based on usage, compatibility, and stability.
|
889
|
+
- Added `include_history` option to model graded scorers to optionally include the full chat history in the presented question.
|
890
|
+
- Added `delimiter` option to `csv_dataset()` (defaults to ",")
|
891
|
+
- Improve answer detection in multiple choice scorer.
|
892
|
+
- Open log files in binary mode when reading headers (fixes ijson deprecation warning).
|
893
|
+
- Capture `list` and `dict` of registry objects when logging `plan`.
|
894
|
+
- Add `model_usage` field to `EvalSample` to record token usage by model for each sample.
|
895
|
+
- Correct directory handling for tasks that are imported as local (non-package) modules.
|
896
|
+
- Basic agent: terminate agent loop when the context window is exceeded.
|
897
|
+
- Call tools sequentially when they have opted out of parallel calling.
|
898
|
+
- Inspect view bundle: support for bundling directories with nested subdirectories.
|
899
|
+
- Bugfix: strip protocol prefix when resolving eval event content
|
900
|
+
- Bugfix: switch to run directory when running multiple tasks with the same run directory.
|
901
|
+
- Bugfix: ensure that log directories don't end in forward/back slash.
|
902
|
+
|
903
|
+
## v0.3.41 (11 October 2024)
|
904
|
+
|
905
|
+
- [Approval mode](https://inspect.aisi.org.uk/approval.html) for extensible approvals of tool calls (human and auto-approvers built in, arbitrary other approval schemes via extensions).
|
906
|
+
- [Trace mode](https://inspect.aisi.org.uk/interactivity.html#sec-trace-mode) for printing model interactions to the terminal.
|
907
|
+
- Add `as_dict()` utility method to `Score`
|
908
|
+
- [Sample limits](https://inspect.aisi.org.uk/errors_and_limits.html#sample-limits) (`token_limit` and `message_limit`) for capping the number of tokens or messages used per sample ( `message_limit` replaces deprecated `max_messages`).
|
909
|
+
- Add `metadata` field to `Task` and record in log `EvalSpec`.
|
910
|
+
- Include datetime and level in file logger.
|
911
|
+
- Correct llama3 and o1 tool calling when empty arguments passed.
|
912
|
+
- Allow resolution of any sandbox name when there is only a single environment.
|
913
|
+
- Introduce `--log-level-transcript` option for separate control of log entries recorded in the eval log file
|
914
|
+
- Improve mime type detection for image content encoding (fixes issues w/ webp images).
|
915
|
+
- Fix memory leak in Inspect View worker-based JSON parsing.
|
916
|
+
- Add `fail_on_error` option for `eval_retry()` and `inspect eval-retry`.
|
917
|
+
- Defer resolving helper models in `self_critique()` and `model_graded_qa()`.
|
918
|
+
- Fix Docker relative path resolution on Windows (use PurePosixPath not Path)
|
919
|
+
- Restore support for `--port` and `--host` on Inspect View.
|
920
|
+
|
921
|
+
## v0.3.40 (6 October 2024)
|
922
|
+
|
923
|
+
- Add `interactive` option to `web_browser()` for disabling interactive tools (clicking, typing, and submitting forms).
|
924
|
+
- Provide token usage and raw model API calls for OpenAI o1-preview.
|
925
|
+
- Add support for reading CSV files of dialect 'excel-tab'.
|
926
|
+
- Improve prompting for Python tool to emphasise the need to print output.
|
927
|
+
- For `basic_agent()`, defer to task `max_messages` if none is specified for the agent (default to 50 is the task does not specify `max_messages`).
|
928
|
+
- Add optional `content` parameter to `ModelOutput.for_tool_call()`.
|
929
|
+
- Display total samples in Inspect View
|
930
|
+
- Prune `sample_reductions` when returning eval logs with `header_only=True`.
|
931
|
+
- Improved error message for undecorated solvers.
|
932
|
+
- For simple matching scorers, only include explanation if it differs from answer.
|
933
|
+
|
934
|
+
## v0.3.39 (3 October 2024)
|
935
|
+
|
936
|
+
- The sample transcript will now display the target for scoring in the Score Event (for newly run evaluations).
|
937
|
+
- Provide setter for `max_messages` on `TaskState`.
|
938
|
+
- Provide `max_messages` option for `basic_agent()` (defaulting to 50) and use it rather than any task `max_messages` defined.
|
939
|
+
- Improved implementation of disabling parallel tool calling (also fixes a transcript issue introduced by the original implementation).
|
940
|
+
- Improve quality of error messages when a model API key environment variable is missing.
|
941
|
+
- Improve prompting around letting the model know it should not attempt parallel web browser calls.
|
942
|
+
|
943
|
+
## v0.3.38 (3 October 2024)
|
944
|
+
|
945
|
+
- Rename `web_browser_tools()` to `web_browser()`, and don't export individual web browsing tools.
|
946
|
+
- Add `parallel` option to `@tool` decorator and specify `parallel=False` for web browsing tools.
|
947
|
+
- Improve prompting for web browser tools using more explicit examples.
|
948
|
+
- Improve prompting for `</tool_call>` end sequence for Llama models.
|
949
|
+
- Fix issue with failure to execute sample setup scripts.
|
950
|
+
|
951
|
+
## v0.3.37 (2 October 2024)
|
952
|
+
|
953
|
+
- Move evals into [inspect_evals](https://github.com/UKGovernmentBEIS/inspect_evals) package.
|
954
|
+
|
955
|
+
## v0.3.36 (2 October 2024)
|
956
|
+
|
957
|
+
- [Web Browser](https://inspect.aisi.org.uk/tools-standard.html#sec-web-browser) tool which provides a headless Chromium browser that supports navigation, history, and mouse/keyboard interactions.
|
958
|
+
- `auto_id` option for dataset readers to assign an auto-incrementing ID to records.
|
959
|
+
- Task args: don't attempt to serialise registry objects that don't have captured parameters.
|
960
|
+
|
961
|
+
## v0.3.35 (1 October 2024)
|
962
|
+
|
963
|
+
- Catch o1-preview "invalid_prompt" exception and convert to normal content_filter refusal.
|
964
|
+
- Terminate timed out subprocesses.
|
965
|
+
- Support 'anthropoic/bedrock/' service prefix for Anthropic models hosted on AWS Bedrock.
|
966
|
+
- Change score reducer behavior to always reduce score metadata to the value of the `metadata` field in the first epoch
|
967
|
+
- Improve task termination message (provide eval-retry prompt for tasks published in packages)
|
968
|
+
- Preserve type for functions decorated with `@task`.
|
969
|
+
- Various improvements to layout and display for Inspect View transcript.
|
970
|
+
|
971
|
+
## v0.3.34 (30 September 2024)
|
972
|
+
|
973
|
+
- Support for `max_tokens` on OpenAI o1 models (map to `max_completion_tokens`).
|
974
|
+
- Fix regression of log and debug options on `inspect view`
|
975
|
+
- Improved focus management for Inspect View
|
976
|
+
- Raise error if `epochs` is less than 1
|
977
|
+
- Improve code parsing for HumanEval (compatibility with Llama model output)
|
978
|
+
|
979
|
+
## v0.3.33 (30 September 2024)
|
980
|
+
|
981
|
+
- StopReason: Added "model_length" for exceeding token window and renamed "length" to "max_tokens".
|
982
|
+
- Capture solver input params for subtasks created by `fork()`.
|
983
|
+
- Option to disable ANSI terminal output with `--no-ansi` or `INSPECT_NO_ANSI`
|
984
|
+
- Add chain of thought option to `multiple_choice()` and export `MultipleChoiceTemplate` enumeration
|
985
|
+
- Allow Docker sandboxes configured with `x-default` to be referred to by their declared service name.
|
986
|
+
- Improved error messages for Docker sandbox initialisation.
|
987
|
+
- Improve legibility of Docker sandbox log entries (join rather than displaying as array)
|
988
|
+
- Display user message immediately proceeding assistant message in model call transcripts.
|
989
|
+
- Display images created by tool calls in the Viewer.
|
990
|
+
- Fix duplicated tool call output display in Viewer for Gemini and Llama models.
|
991
|
+
- Require a `max_messages` for use of `basic_agent()` (as without it, the agent could end up in an infinite loop).
|
992
|
+
- Load extension entrypoints per-package (prevent unnecessary imports from packages not being referenced).
|
993
|
+
- Track sample task state in solver decorator rather than solver transcript.
|
994
|
+
- Display solver input parameters for forked subtasks.
|
995
|
+
- Improvements to docker compose down cleanup: timeout, survive missing compose files.
|
996
|
+
- Always produce epoch sample reductions even when there is only a single epoch.
|
997
|
+
- Scores produced after being reduced retain `answer`, `explanation`, and `metadata` only if equal across all epochs.
|
998
|
+
|
999
|
+
## v0.3.32 (25 September 2024)
|
1000
|
+
|
1001
|
+
- Fix issue w/ subtasks not getting a fresh store() (regression from introduction of `fork()` in v0.3.30)
|
1002
|
+
- Fix issue w/ subtasks that return None invalidating the log file.
|
1003
|
+
- Make subtasks collapsible in Inspect View.
|
1004
|
+
- Improved error reporting for missing `web_search()` provider environment variables.
|
1005
|
+
|
1006
|
+
## v0.3.31 (24 September 2024)
|
1007
|
+
|
1008
|
+
- Deprecated `Plan` in favor of `Solver` (with `chain()` function to compose multiple solvers).
|
1009
|
+
- Added `max_tool_output` generation option (defaults to 16KB).
|
1010
|
+
- Improve performance of `header_only` log reading (switch from json-stream to ijson).
|
1011
|
+
- Add support for 0 retries to `eval-set` (run a single `eval` then stop).
|
1012
|
+
- Tool calling fixes for update to Mistral v1.1. client.
|
1013
|
+
- Always show `epochs` in task status (formerly wasn't included for multiple task display)
|
1014
|
+
- Render transcript `info()` strings as markdown
|
1015
|
+
- Eliminate log spam from spurious grpc fork message.
|
1016
|
+
- Fix issue with hf_dataset shuffle=True not actually shuffling.
|
1017
|
+
- Improved error handling when loading invalid setuptools entrypoints.
|
1018
|
+
- Don't catch TypeError when calling tools (we now handle this in other ways)
|
1019
|
+
|
1020
|
+
## v0.3.30 (18 September 2024)
|
1021
|
+
|
1022
|
+
- Added `fork()` function to fork a `TaskState` and evaluate it against multiple solvers in parallel.
|
1023
|
+
- Ensure that Scores produced after being reduced still retain `answer`, `explanation`, and `metadata`.
|
1024
|
+
- Fix error when running `inspect info log-types`
|
1025
|
+
- Improve scorer names imported from modules by not including the the module names.
|
1026
|
+
- Don't mark messages read from cache with source="cache" (as this breaks the cache key)
|
1027
|
+
- Add `cache` argument to `basic_agent()` for specifying cache policy for the agent.
|
1028
|
+
- Add `cache` field to `ModelEvent` to track cache reads and writes.
|
1029
|
+
- Compatibility with Mistral v1.1 client (now required for Mistral).
|
1030
|
+
- Catch and propagate Anthropic content filter exceptions as normal "content_filter" responses.
|
1031
|
+
- Fix issue with failure to report metrics if all samples had a score value of 0.
|
1032
|
+
- Improve concurrency of Bedrock models by using aioboto3.
|
1033
|
+
- Added [SWE Bench](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/swe_bench), [GAIA](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/gaia), and [GDM CTF](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/gdm_capabilities/in_house_ctf) evals.
|
1034
|
+
|
1035
|
+
## v0.3.29 (16 September 2024)
|
1036
|
+
|
1037
|
+
- Added `--plan` and `-P` arguments to `eval` and `eval-set` commands for replacing the task default plan with another one.
|
1038
|
+
- Improved support for eval retries when calling `eval()` or `eval_set()` with a `plan` argument.
|
1039
|
+
- Don't log base64 images by default (re-enable logging with `--log-images`).
|
1040
|
+
- Provide unique tool id when parsing tool calls for models that don't support native tool usage.
|
1041
|
+
- Fix bug that prevented `epoch_reducer` from being used in eval-retry.
|
1042
|
+
- Fix bug that prevented eval() level `epoch` from overriding task level `epoch`.
|
1043
|
+
|
1044
|
+
## v0.3.28 (14 September 2024)
|
1045
|
+
|
1046
|
+
- [basic_agent()](https://inspect.aisi.org.uk/agents.html#sec-basic-agent) that provides a ReAct tool loop with support for retries and encouraging the model to continue if its gives up or gets stuck.
|
1047
|
+
- [score()](https://inspect.aisi.org.uk/solvers.html#sec-scoring-in-solvers) function for accessing scoring logic from within solvers.
|
1048
|
+
- Ability to [publish](https://inspect.aisi.org.uk/log-viewer.html#sec-publishing) a static standalone Inspect View website for a log directory.
|
1049
|
+
- `system_message()` now supports custom parameters and interpolation of `metadata` values from `Sample`.
|
1050
|
+
- `generate()` solver now accepts arbitrary generation config params.
|
1051
|
+
- `use_tools()` now accepts a variadic list of `Tool` in addition to literal `list[Tool]`.
|
1052
|
+
- `bash()` and `python()` tools now have a `user` parameter for choosing an alternate user to run code as.
|
1053
|
+
- `bash()` and `python()` tools now always return stderr and stdout no matter the exit status.
|
1054
|
+
- Support for OpenAI o1-preview and o1-mini models.
|
1055
|
+
- Input event for recording screen input in sample transcripts.
|
1056
|
+
- Record to sample function for CSV and JSON dataset readers can now return multiple samples.
|
1057
|
+
- Added `debug_errors` option to `eval()` to raise task errors (rather than logging them) so they can be debugged.
|
1058
|
+
- Properly support metrics that return a dict or list of values
|
1059
|
+
- Improved display of prerequisite errors when running `eval()` from a script or notebook.
|
1060
|
+
- Fix `eval_set()` issue with cleaning up failed logs on S3.
|
1061
|
+
- Cleanup Docker containers that fail during sample init.
|
1062
|
+
- Add support for computing metrics for both individual keys within a dictionary but also for the dictionary as a whole
|
1063
|
+
- Fix for Vertex tool calling (don't pass 'additionalProperties').
|
1064
|
+
- Added [SQuAD](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/squad), [AGIEval](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/agieval), [IFEval](https://github.com/UKGovernmentBEIS/inspect_ai/blob/main/src/inspect_evals/ifeval/), [PubMedQA](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/pubmedqa), and [MBPP](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/mbpp) benchmarks.
|
1065
|
+
|
1066
|
+
## v0.3.27 (6 September 2024)
|
1067
|
+
|
1068
|
+
- Fix missing timestamp issue with running `eval_set()` with an S3-backed log directory.
|
1069
|
+
- Correct rounding behavior for `f1()` and `exact()` scorers.
|
1070
|
+
- Correct normalized text comparison for `exact()` scorer.
|
1071
|
+
- Improved appearance and navigation for sample transcript view.
|
1072
|
+
- Added [MathVista](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/mathvista) benchmark.
|
1073
|
+
|
1074
|
+
## v0.3.26 (6 September 2024)
|
1075
|
+
|
1076
|
+
- [Eval Sets](https://inspect.aisi.org.uk/eval-sets.html) for running groups of tasks with automatic retries.
|
1077
|
+
- [Per-sample](https://inspect.aisi.org.uk/sandboxing.html#sec-per-sample-sandbox) Sandbox environments can now be specified (e.g. allowing for a distinct Dockerfile or Docker compose file for each sample).
|
1078
|
+
- [input_screen()](https://inspect.aisi.org.uk/interactivity.html) context manager to temporarily clear task display for user input.
|
1079
|
+
- Introduce two new scorers, `f1()` (precision and recall in text matching) and `exact()` (whether normalized text matches exactly).
|
1080
|
+
- Task `metrics` now override built in scorer metrics (previously they were merged). This enables improved re-use of existing scorers where they only change required is a different set of metrics.
|
1081
|
+
- `write_log_dir_manifest()` to write a log header manifest for a log directory.
|
1082
|
+
- Relocate `store()` and `@subtask` from solver to utils module; relocate `transcript()` from solver to log module.
|
1083
|
+
- Add optional user parameter to SandboxEnvironment.exec for specifying the user. Currently only DockerSandboxEnvironment is supported.
|
1084
|
+
- Fix issue with resolving Docker configuration files when not running from the task directory.
|
1085
|
+
- Only populate Docker compose config metadata values when they are used in the file.
|
1086
|
+
- Treat Sandbox exec `cwd` that are relative paths as relative to sample working directory.
|
1087
|
+
- Filter base64 encoded images out of model API call logs.
|
1088
|
+
- Raise error when a Solver does not return a TaskState.
|
1089
|
+
- Only run tests that use model APIs when the `--runapi` flag is passed to `pytest` (prevents unintended token usage)
|
1090
|
+
- Remove `chdir` option from `@tasks` (tasks now always chdir during execution).
|
1091
|
+
- Do not process `.env` files in task directories (all required vars should be specified in the global `.env`).
|
1092
|
+
- Only enable `strict` mode for OpenAI tool calls when all function parameters are required.
|
1093
|
+
- Added [MMMU](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/mmmu), [CommonsenseQA](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/commonsense_qa), [MMLU-Pro](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/mmlu_pro), and [XSTest](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/xstest) benchmarks.
|
1094
|
+
|
1095
|
+
## v0.3.25 (25 August 2024)
|
1096
|
+
|
1097
|
+
- `Store` for manipulating arbitrary sample state from within solvers and tools.
|
1098
|
+
- `Transcripts` for detailed sample level tracking of model and tool calls, state changes, logging, etc.
|
1099
|
+
- `Subtasks` for delegating work to helper models, sub-agents, etc.
|
1100
|
+
- Integration with Anthropic [prompt caching](https://inspect.aisi.org.uk/caching.html#sec-provider-caching).
|
1101
|
+
- [fail_on_error](https://inspect.aisi.org.uk/errors-and-limits.html#failure-threshold) option to tolerate some threshold of sample failures without failing the evaluation.
|
1102
|
+
- Specify `init` value in default Docker compose file so that exit signals are handled correctly (substantially improves container shutdown performance).
|
1103
|
+
- Add `function` field to `ChatMessageTool` to indicate the name of the function called.
|
1104
|
+
- Added [RACE](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/race-h/) benchmark.
|
1105
|
+
|
1106
|
+
## v0.3.24 (18 August 2024)
|
1107
|
+
|
1108
|
+
- Support for tool calling for Llama 3.1 models on Bedrock.
|
1109
|
+
- Report JSON schema validation errors to model in tool response.
|
1110
|
+
- Support for `strict` mode in OpenAI tool calls (update to v1.40.0 of `openai` package required).
|
1111
|
+
|
1112
|
+
## v0.3.23 (16 August 2024)
|
1113
|
+
|
1114
|
+
- Support for tool calling for Llama 3.1 models on Azure AI and CloudFlare.
|
1115
|
+
- Increase default `max_tokens` from 1024 to 2048.
|
1116
|
+
- Record individual sample reductions along with results for multi-epoch evals.
|
1117
|
+
- Change default to not log base64 encoded versions of images, as this often resulted in extremely large log files (use `--log-images` to opt back in).
|
1118
|
+
- Update to new Mistral API (v1.0.1 of `mistralai` is now required).
|
1119
|
+
- Support for Llama 3.1 models on Amazon Bedrock
|
1120
|
+
- Eliminate Bedrock dependency on anthropic package (unless using an Anthropic model).
|
1121
|
+
- Improved resolution of AWS region for Bedrock (respecting already defined AWS_REGION and AWS_DEFAULT_REGION)
|
1122
|
+
- Fix bug in match scorer whereby numeric values with periods aren't correctly recognized.
|
1123
|
+
- Added [HumanEval](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/humaneval), [WinoGrande](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/winogrande) and [Drop](https://github.com/UKGovernmentBEIS/inspect_evals/tree/main/src/inspect_evals/drop) benchmarks.
|
1124
|
+
|
1125
|
+
## v0.3.22 (07 August 2024)
|
1126
|
+
|
1127
|
+
- Fix issue affecting results of `pass_at_{k}` score reducer.
|
1128
|
+
|
1129
|
+
## v0.3.21 (07 August 2024)
|
1130
|
+
|
1131
|
+
- Add `pass_at_{k}` score reducer to compute the probability of at least 1 correct sample given `k` epochs.
|
1132
|
+
- Improved metrics `value_to_float` string conversion (handle numbers, "true", "false", etc.)
|
1133
|
+
- Log viewer: Ctrl/Cmd+F to find text when running in VS Code.
|
1134
|
+
- Set Claude default `max_tokens` to 4096
|
1135
|
+
- Combine user and assistant messages for Vertex models.
|
1136
|
+
- Warn when using the `name` parameter with task created from `@task` decorated function.
|
1137
|
+
- Make sample `metadata` available in prompt, grading, and self-critique templates.
|
1138
|
+
- Retry on several additional OpenAI errors (APIConnectionError | APITimeoutError | InternalServerError)
|
1139
|
+
- Fix a regression which would cause the 'answer' to be improperly recorded when scoring a sample.
|
1140
|
+
|
1141
|
+
## v0.3.20 (03 August 2024)
|
1142
|
+
|
1143
|
+
- `Epochs` data type for specifying epochs and reducers together (deprecated `epochs_reducer` argument).
|
1144
|
+
- Enable customisation of model generation cache dir via `INSPECT_CACHE_DIR` environment variable.
|
1145
|
+
- Use doc comment description rather than `prompt` attribute of `@tool` for descriptions.
|
1146
|
+
- Include examples section from doc comments in tool descriptions.
|
1147
|
+
- Add `tool_with()` function for adapting tools to have varying names and parameter descriptions.
|
1148
|
+
- Improve recording of `@task` arguments so that dynamically created tasks can be retried.
|
1149
|
+
- Only print `eval-retry` message to terminal for filesystem based tasks.
|
1150
|
+
- Enhance Python logger messages to capture more context from the log record.
|
1151
|
+
- Fix an issue that could result in duplicate display of scorers in log view when using multiple epoch reducers.
|
1152
|
+
|
1153
|
+
## v0.3.19 (02 August 2024)
|
1154
|
+
|
1155
|
+
- [vLLM](https://inspect.aisi.org.uk/models.html#sec-vllm) model provider.
|
1156
|
+
- [Groq](https://groq.com/) model provider.
|
1157
|
+
- [Google Vertex](https://inspect.aisi.org.uk/models.html#google-vertex) model provider.
|
1158
|
+
- [Reduce scores](https://inspect.aisi.org.uk/scorers.html##sec-reducing-epoch) in multi-epoch tasks before computing metrics (defaults to averaging sample values).
|
1159
|
+
- Replace the use of the `bootstrap_std` metric with `stderr` for built in scorers (see [rationale](https://inspect.aisi.org.uk/scorers.html#stderr-note) for details).
|
1160
|
+
- Option to write Python logger entries to an [external file](https://inspect.aisi.org.uk/log-viewer.html#sec-external-file).
|
1161
|
+
- Rename `ToolEnvironment` to `SandboxEnvironment` and `tool_environment()` to `sandbox()` (moving the renamed types from `inspect_ai.tool` to `inspect_ai.util`). Existing symbols will continue to work but will print deprecation errors.
|
1162
|
+
- Moved the `bash()`, `python()`, and `web_search()` functions from `inspect_ai.solver` to `inspect_ai.tool`. Existing symbols will continue to work but will print deprecation errors.
|
1163
|
+
- Enable parallel execution of tasks that share a working directory.
|
1164
|
+
- Add `chdir` option to `@task` to opt-out of changing the working directory during task execution.
|
1165
|
+
- Enable overriding of default safety settings for Google models.
|
1166
|
+
- Use Python type annotations as the first source of type info for tool functions (fallback to docstrings only if necessary)
|
1167
|
+
- Support for richer types (list, TypeDict, dataclass, Pydantic, etc.) in tool calling.
|
1168
|
+
- Change `ToolInfo` parameters to be directly expressed in JSON Schema (making it much easier to pass them to model provider libraries).
|
1169
|
+
- Validate tool call inputs using JSON Schema and report errors to the model.
|
1170
|
+
- Gracefully handle tool calls that include only a single value (rather than a named dict of parameters).
|
1171
|
+
- Support `tool_choice="any"` for OpenAI models (requires >= 1.24.0 of openai package).
|
1172
|
+
- Make multiple tool calls in parallel. Parallel tool calls occur by default for OpenAI, Anthropic, Mistral, and Groq. You can disable this behavior for OpenAI and Groq with `--parallel-tool-calls false`.
|
1173
|
+
- Invoke rate limit retry for OpenAI APITimeoutError (which they have recently begun returning a lot of more of as a result of httpx.ConnectTimeout, which is only 5 seconds by default.).
|
1174
|
+
- Add `cwd` argument to `SandboxEnvironment.exec()`
|
1175
|
+
- Use `tee` rather than `docker cp` for Docker sandbox environment implementation of `write_file()`.
|
1176
|
+
- Handle duplicate tool call ids in Inspect View.
|
1177
|
+
- Handle sorting sample ids of different types in Inspect View.
|
1178
|
+
- Correctly resolve default model based on CLI --model argument.
|
1179
|
+
- Fix issue with propagating API keys to Azure OpenAI provider.
|
1180
|
+
- Add `azure` model arg for OpenAI provider to force binding (or not binding) to the Azure OpenAI back-end.
|
1181
|
+
- Support for Llama 3 models with the Azure AI provider.
|
1182
|
+
- Add `setup` field to `Sample` for providing a per-sample setup script.
|
1183
|
+
- Score multiple choice questions without parsed answers as incorrect (rather than being an error). Llama 3 and 3.1 models especially often fail to yield an answer.
|
1184
|
+
- Read JSON encoded `metadata` field from samples.
|
1185
|
+
- Show task/display progress immediately (rather than waiting for connections to fill).
|
1186
|
+
- Reduce foreground task contention for Inspect View history loading.
|
1187
|
+
- Ability to host standalone version of Inspect View to view single log files.
|
1188
|
+
- Throw `TimeoutError` if a call to `subprocess()` or `sandbox().exec()` times out (formerly a textual error was returned along with a non-zero exit code).
|
1189
|
+
- Validate name passed to `example_dataset()` (and print available example dataset names).
|
1190
|
+
- Resolve relative image paths within Dataset samples against the directory containing the dataset.
|
1191
|
+
- Preserve `tool_error` text for Anthropic tool call responses.
|
1192
|
+
- Fix issue with rate limit reporting being per task not per eval.
|
1193
|
+
- Set maximum rate limit backoff time to 30 minutes
|
1194
|
+
- Retry with exponential backoff for web_search Google provider.
|
1195
|
+
|
1196
|
+
## v0.3.18 (14 July 2024)
|
1197
|
+
|
1198
|
+
- [Multiple Scorers](https://inspect.aisi.org.uk/scorers.html#sec-multiple-scorers) are now supported for evaluation tasks.
|
1199
|
+
- [Multiple Models](https://inspect.aisi.org.uk/parallelism.html#sec-multiple-models) can now be evaluated in parallel by passing a list of models to `eval()`.
|
1200
|
+
- Add `api_key` to `get_model()` for explicitly specifying an API key for a model.
|
1201
|
+
- Improved handling of very large (> 100MB) log files in Inspect View.
|
1202
|
+
- Use `network_mode: none` for disabling networking by default in Docker tool environments.
|
1203
|
+
- Shorten the default shutdown grace period for Docker container cleanup to 1 second.
|
1204
|
+
- Allow sandbox environment providers to specify a default `max_samples` (set to 25 for the Docker provider).
|
1205
|
+
- Prevent concurrent calls to `eval_async()` (unsafe because of need to change directories for tasks). Parallel task evaluation will instead be implemented as a top-level feature of `eval()` and `eval_async()`.
|
1206
|
+
- Match scorers now return answers consistently even when there is no match.
|
1207
|
+
- Relocate tool related types into a new top-level `inspect_ai.tool` module (previous imports still work fow now, but result in a runtime deprecation warning).
|
1208
|
+
- Decouple tools entirely from solvers and task state (previously they had ways to interact with metadata, removing this coupling will enable tool use in lower level interactions with models). Accordingly, the `call_tools()` function now operates directly on messages rather than task state.
|
1209
|
+
- Support token usage for Google models (Inspect now requires `google-generativeai` v0.5.3).
|
1210
|
+
|
1211
|
+
## v0.3.17 (25 June 2024)
|
1212
|
+
|
1213
|
+
- Optional increased control over the tool use loop via the `call_tools()` function and new `tool_calls` parameter for `generate()`.
|
1214
|
+
- New `per_epoch` option for `CachePolicy` to allow caching to ignore epochs.
|
1215
|
+
- Correctly handle `choices` and `files` when converting `Sample` images to base64.
|
1216
|
+
|
1217
|
+
## v0.3.16 (24 June 2024)
|
1218
|
+
|
1219
|
+
- Various fixes for the use of Docker tool environments on Windows.
|
1220
|
+
- Ability to disable cleanup of tool environments via `--no-toolenv-cleanup`.
|
1221
|
+
- New `inspect toolenv cleanup` command for manually cleaning up tool environments.
|
1222
|
+
- `ToolError` exception type for explicitly raising tool errors to the model. Formerly, any exception would be surfaced as a tool error to the model. Now, the `ToolError` exception is required for reporting to the model (otherwise other exception types go through the call stack and result in an eval error).
|
1223
|
+
- Resolve `INSPECT_LOG_DIR` in `.env` file relative to `.env` file parent directory.
|
1224
|
+
- Use `-` for delimiting `--limit` ranges rather than `,`.
|
1225
|
+
- Use HF model device for generate (compatibility with multi-GPU).
|
1226
|
+
|
1227
|
+
## v0.3.15 (15 June 2024)
|
1228
|
+
|
1229
|
+
- [Sandbox Environments](https://inspect.aisi.org.uk/sandboxing.html) for executing tool code in a sandbox.
|
1230
|
+
- [Caching](https://inspect.aisi.org.uk/caching.html) to reduce the number of model API calls made.
|
1231
|
+
- The `multiple_choice()` solver now has support for questions with multiple correct answers.
|
1232
|
+
- More fine grained handling of Claude `BadRequestError` (400) errors (which were formerly all treated as content moderation errors).
|
1233
|
+
- Filter out empty TextBlockParam when playing messages back to Claude.
|
1234
|
+
- Automatically combine Claude user messages that include tool content.
|
1235
|
+
- Revert to "auto" rather than "none" after forced tool call.
|
1236
|
+
- Provide `TaskState.tools` getter/setter (where the setter automatically syncs the system messages to the specified set of tools).
|
1237
|
+
- The `use_tools()` function now uses the `TaskState.tools` setter, so replaces the current set of tools entirely rather than appending to it.
|
1238
|
+
- Set `state.completed = False` when `max_messages` is reached.
|
1239
|
+
- Allow tools to be declared with no parameters.
|
1240
|
+
- Allow for null `bytes` field in `Logprobs` and `TopLogprobs`.
|
1241
|
+
- Support all Llama series models on Bedrock.
|
1242
|
+
- Added `truthfulqa` benchmark.
|
1243
|
+
- Added `intercode-ctf` example.
|
1244
|
+
|
1245
|
+
## v0.3.14 (04 June 2024)
|
1246
|
+
|
1247
|
+
- Stream samples to the evaluation log as they are completed (subject to the new `--log-buffer` option). Always write completed samples in the case of an error or cancelled task.
|
1248
|
+
- New `"cancelled"` status in eval log for tasks interrupted with SIGINT (e.g. Ctrl-C). Logs are now written for cancellations (previously they were not).
|
1249
|
+
- Default `--max-samples` (maximum concurrent samples) to `--max-connections`, which will result in samples being more frequently completed and written to the log file.
|
1250
|
+
- For `eval_retry()`, copy previously completed samples in the log file being retried so that work is not unnecessarily repeated.
|
1251
|
+
- New `inspect eval-retry` command to retry a log file from a task that ended in error or cancellation.
|
1252
|
+
- New `retryable_eval_logs()` function and `--retryable` option for `inspect list logs` to query for tasks not yet completed within a log directory.
|
1253
|
+
- Add `shuffled` property to datasets to determine if they were shuffled.
|
1254
|
+
- Remove unused `extensions` argument from `list_eval_logs()`.
|
1255
|
+
|
1256
|
+
## v0.3.13 (31 May 2024)
|
1257
|
+
|
1258
|
+
- Bugfix: Inspect view was not reliably updating when new evaluation logs were written.
|
1259
|
+
|
1260
|
+
## v0.3.12 (31 May 2024)
|
1261
|
+
|
1262
|
+
- Bugfix: `results` was not defined when no scorer was provided resulting in an error being thrown. Fixed by setting `results = EvalResults()` when no scorer is provided.
|
1263
|
+
- Bugfix: The viewer was not properly handling samples without scores.
|
1264
|
+
|
1265
|
+
## v0.3.11 (30 May 2024)
|
1266
|
+
|
1267
|
+
- Update to non-beta version of Anthropic tool use (remove legacy xml tools implementation).
|
1268
|
+
|
1269
|
+
## v0.3.10 (29 May 2024)
|
1270
|
+
|
1271
|
+
- **BREAKING:** The `pattern` scorer has been modified to match against any (or all) regex match groups. This replaces the previous behaviour when there was more than one group, which would only match the second group.
|
1272
|
+
- Improved performance for Inspect View on very large datasets (virtualized sample list).
|
1273
|
+
- ToolChoice `any` option to indicate the model should use at least one tool (supported by Anthropic and Mistral, mapped to `auto` for OpenAI).
|
1274
|
+
- Tool calls can now return a simple scalar or `list[ContentText | ContentImage]`.
|
1275
|
+
- Support for updated Anthropic tools beta (tool_choice and image tool results).
|
1276
|
+
- Report tool_error back to model if it provides invalid JSON for tool calls arguments (formerly this halted the entire eval with an error).
|
1277
|
+
- New `max_samples` option to control how many samples are run in parallel (still defaults to running all samples in parallel).
|
1278
|
+
- Add `boolq.py` benchmark.
|
1279
|
+
- Add `piqa.py` benchmark.
|
1280
|
+
- View: Improved markdown rendering (properly escape reference links).
|
1281
|
+
- Improved typing for example_dataset function.
|
1282
|
+
- Setuptools entry point for loading custom model extensions.
|
1283
|
+
- Break optional `tuple` return out of `ToolResult` type.
|
1284
|
+
- Bugfix: always read original sample message(s) for `TaskState.input_text`.
|
1285
|
+
- Bugfix: remove write counter from log (could have resulted in incomplete/invalid logs propagating to the viewer).
|
1286
|
+
- Bugfix: handle task names that include spaces in log viewer.
|
1287
|
+
|
1288
|
+
## v0.3.9 (14 May 2024)
|
1289
|
+
|
1290
|
+
- Add `ollama` local model provider.
|
1291
|
+
- Add `multi_scorer()` and `majority_vote()` functions for combining multiple scorers into a single score.
|
1292
|
+
- Add support for multiple model graders in `model_graded_qa()`.
|
1293
|
+
- Raise `TypeError` for solvers and scorers not declared as `async`.
|
1294
|
+
- Fallback to standard parse if `NaN` or `Inf` is encountered while reading log file header.
|
1295
|
+
- Remove deprecated support for matching partial model names (e.g. "gpt" or "claude").
|
1296
|
+
|
1297
|
+
## v0.3.8 (07 May 2024)
|
1298
|
+
|
1299
|
+
- Exclude null config values from listings in log viewer.
|
1300
|
+
|
1301
|
+
## v0.3.7 (07 May 2024)
|
1302
|
+
|
1303
|
+
- Add support for logprobs to HF provider, and create uniform API for other providers that support logprobs (Together and OpenAI).
|
1304
|
+
- Provide an option to merge assistant messages and use it for Anthropoic models (as they don't allow consecutive assistant messages).
|
1305
|
+
- Supporting infrastructure in Inspect CLI for VS Code extension (additional list and info commands).
|
1306
|
+
|
1307
|
+
## v0.3.6 (06 May 2024)
|
1308
|
+
|
1309
|
+
- Show first log file immediately (don't wait for fetching metadata for other logs)
|
1310
|
+
- Add `--version` CLI arg and `inspect info version` command for interrogating version and runtime source path.
|
1311
|
+
- Fix: exclude `null` config values in output from `inspect info log-file`
|
1312
|
+
|
1313
|
+
## v0.3.5 (04 May 2024)
|
1314
|
+
|
1315
|
+
- Fix issue with logs from S3 buckets in inspect view.
|
1316
|
+
- Add `sort()` method to `Dataset` (defaults to sorting by sample input length).
|
1317
|
+
- Improve tokenization for HF provider (left padding, attention mask, and allow for custom chat template)
|
1318
|
+
- Improve batching for HF provider (generate as soon as queue fills, thread safety for future.set_result).
|
1319
|
+
- Various improvements to documentation.
|
1320
|
+
|
1321
|
+
## v0.3.4 (01 May 2024)
|
1322
|
+
|
1323
|
+
- `write_eval_log()` now ignores unserializable objects in metadata fields.
|
1324
|
+
- `read_eval_log()` now takes a `str` or `FileInfo` (for compatibility w/ list returned from `list_eval_logs()`).
|
1325
|
+
- Registry name looks are now case sensitive (fixes issue w/ loading tasks w/ mixed case names).
|
1326
|
+
- Resiliency to Python syntax errors that occur when enumerating tasks in a directory.
|
1327
|
+
- Do not throw error if unable to parse or load `.ipynb` file due to lack of dependencies (e.g. `nbformat`).
|
1328
|
+
- Various additions to log viewer display (log file name, dataset/scorer in listing, filter by complex score types).
|
1329
|
+
- Improvements to markdown rendering in log viewer (don't render intraword underscores, escape html tags).
|
1330
|
+
|
1331
|
+
## v0.3.3 (28 April 2024)
|
1332
|
+
|
1333
|
+
- `inspect view` command for viewing eval log files.
|
1334
|
+
- `Score` now has an optional `answer` field, which denotes the answer text extracted from model output.
|
1335
|
+
- Accuracy metrics now take an optional `ValueToFloat` function for customising how textual values mapped to float.
|
1336
|
+
- Made `model_graded_qa` more flexible with separate `instruction` template and `grade_pattern`, as well providing `partial_credit` as an option.
|
1337
|
+
- Modify the default templates for `chain_of_thought()` and `self_critique()` to instruct the model to reply with `ANSWER: $ANSWER` at the end on its own line.
|
1338
|
+
- Improved numeric extraction for `match(numeric=True)` (better currency and decimal handling).
|
1339
|
+
- Improve `answer()` patterns so that they detect letter and word answers both within and at the end of model output.
|
1340
|
+
- `Plan` now has an optional `cleanup` function which can be used to free per-sample resources (e.g. Docker containers) even in the case of an evaluation error.
|
1341
|
+
- Add `Dataset.filter` method for filtering samples using a predicate.
|
1342
|
+
- `Dataset` slices (e.g. `dataset[0:100]`) now return a `Dataset` rather than `list[Sample]`.
|
1343
|
+
- Relative path to `INSPECT_LOG_DIR` in `.env` file is now correctly resolved for execution within subdirectories.
|
1344
|
+
- `inspect list tasks` and `list_tasks()` now only parse source files (rather than loading them), ensuring that it is fast even for task files that have non-trivial global initialisation.
|
1345
|
+
- `inspect list logs` and `list_eval_logs()` now enumerate log files recursively by default, and only enumerate json files that match log file naming conventions.
|
1346
|
+
- Provide `header_only` option for `read_eval_log()` and `inspect info log-file` for bypassing the potentially expensive reading of samples.
|
1347
|
+
- Provide `filter` option for `list_eval_logs()` to filter based on log file header info (i.e. anything but samples).
|
1348
|
+
- Added `__main__.py` entry point for invocation via `python3 -m inspect_ai`.
|
1349
|
+
- Removed prompt and callable from model `ToolDef` (renamed to `ToolInfo`).
|
1350
|
+
- Fix issue with accesses of `completion` property on `ModelOutput` with no choices.
|
1351
|
+
|
1352
|
+
## v0.3.2 (21 April 2024)
|
1353
|
+
|
1354
|
+
- Initial release.
|