inspect-ai 0.3.62__py3-none-any.whl → 0.3.64__py3-none-any.whl
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/_cli/cache.py +8 -7
- inspect_ai/_cli/common.py +0 -12
- inspect_ai/_cli/eval.py +32 -4
- inspect_ai/_cli/info.py +1 -0
- inspect_ai/_cli/list.py +1 -1
- inspect_ai/_cli/log.py +2 -0
- inspect_ai/_cli/main.py +1 -1
- inspect_ai/_cli/sandbox.py +4 -1
- inspect_ai/_cli/score.py +181 -32
- inspect_ai/_cli/trace.py +10 -0
- inspect_ai/_cli/view.py +4 -2
- inspect_ai/_display/core/active.py +2 -3
- inspect_ai/_display/core/config.py +7 -1
- inspect_ai/_display/textual/widgets/samples.py +4 -3
- inspect_ai/_display/textual/widgets/sandbox.py +6 -0
- inspect_ai/_eval/eval.py +104 -101
- inspect_ai/_eval/evalset.py +75 -75
- inspect_ai/_eval/loader.py +122 -12
- inspect_ai/_eval/registry.py +1 -1
- inspect_ai/_eval/run.py +14 -0
- inspect_ai/_eval/score.py +125 -36
- inspect_ai/_eval/task/log.py +105 -4
- inspect_ai/_eval/task/results.py +92 -38
- inspect_ai/_eval/task/run.py +9 -2
- inspect_ai/_eval/task/sandbox.py +35 -2
- inspect_ai/_eval/task/task.py +49 -46
- inspect_ai/_util/constants.py +1 -1
- inspect_ai/_util/content.py +8 -0
- inspect_ai/_util/error.py +2 -0
- inspect_ai/_util/file.py +15 -1
- inspect_ai/_util/hash.py +1 -1
- inspect_ai/_util/logger.py +4 -2
- inspect_ai/_util/registry.py +7 -1
- inspect_ai/_view/view.py +1 -2
- inspect_ai/_view/www/.vscode/extensions.json +3 -0
- inspect_ai/_view/www/.vscode/settings.json +8 -0
- inspect_ai/_view/www/App.css +97 -29
- inspect_ai/_view/www/README.md +1 -1
- inspect_ai/_view/www/dist/assets/index.css +16663 -14674
- inspect_ai/_view/www/dist/assets/index.js +58808 -51348
- inspect_ai/_view/www/dist/index.html +1 -1
- inspect_ai/_view/www/index.html +2 -2
- inspect_ai/_view/www/log-schema.json +87 -73
- inspect_ai/_view/www/package.json +22 -4
- inspect_ai/_view/www/postcss.config.cjs +8 -9
- inspect_ai/_view/www/src/{App.mjs → App.tsx} +356 -365
- inspect_ai/_view/www/src/AppErrorBoundary.tsx +47 -0
- inspect_ai/_view/www/src/api/api-browser.ts +2 -2
- inspect_ai/_view/www/src/api/api-http.ts +3 -5
- inspect_ai/_view/www/src/api/api-vscode.ts +6 -6
- inspect_ai/_view/www/src/api/client-api.ts +4 -4
- inspect_ai/_view/www/src/api/index.ts +4 -4
- inspect_ai/_view/www/src/api/{Types.ts → types.ts} +25 -9
- inspect_ai/_view/www/src/appearance/colors.ts +9 -0
- inspect_ai/_view/www/src/appearance/fonts.ts +39 -0
- inspect_ai/_view/www/src/appearance/icons.ts +100 -0
- inspect_ai/_view/www/src/appearance/{Styles.mjs → styles.ts} +2 -32
- inspect_ai/_view/www/src/components/AnsiDisplay.tsx +198 -0
- inspect_ai/_view/www/src/components/AsciinemaPlayer.tsx +86 -0
- inspect_ai/_view/www/src/components/Card.css +60 -0
- inspect_ai/_view/www/src/components/Card.tsx +109 -0
- inspect_ai/_view/www/src/components/CopyButton.module.css +11 -0
- inspect_ai/_view/www/src/components/CopyButton.tsx +58 -0
- inspect_ai/_view/www/src/components/DownloadButton.css +4 -0
- inspect_ai/_view/www/src/components/DownloadButton.tsx +25 -0
- inspect_ai/_view/www/src/components/DownloadPanel.css +10 -0
- inspect_ai/_view/www/src/components/DownloadPanel.tsx +30 -0
- inspect_ai/_view/www/src/components/EmptyPanel.css +12 -0
- inspect_ai/_view/www/src/components/EmptyPanel.tsx +15 -0
- inspect_ai/_view/www/src/components/ErrorPanel.css +37 -0
- inspect_ai/_view/www/src/components/ErrorPanel.tsx +39 -0
- inspect_ai/_view/www/src/components/ExpandablePanel.css +40 -0
- inspect_ai/_view/www/src/components/ExpandablePanel.tsx +115 -0
- inspect_ai/_view/www/src/components/FindBand.css +49 -0
- inspect_ai/_view/www/src/components/FindBand.tsx +130 -0
- inspect_ai/_view/www/src/components/HumanBaselineView.css +41 -0
- inspect_ai/_view/www/src/components/HumanBaselineView.tsx +162 -0
- inspect_ai/_view/www/src/components/JsonPanel.css +20 -0
- inspect_ai/_view/www/src/components/JsonPanel.tsx +82 -0
- inspect_ai/_view/www/src/components/LabeledValue.css +20 -0
- inspect_ai/_view/www/src/components/LabeledValue.tsx +41 -0
- inspect_ai/_view/www/src/components/LargeModal.module.css +54 -0
- inspect_ai/_view/www/src/components/LargeModal.tsx +189 -0
- inspect_ai/_view/www/src/components/LightboxCarousel.css +95 -0
- inspect_ai/_view/www/src/components/LightboxCarousel.tsx +132 -0
- inspect_ai/_view/www/src/components/MarkdownDiv.css +3 -0
- inspect_ai/_view/www/src/components/MarkdownDiv.tsx +133 -0
- inspect_ai/_view/www/src/components/MessageBand.css +43 -0
- inspect_ai/_view/www/src/components/MessageBand.tsx +39 -0
- inspect_ai/_view/www/src/components/MorePopOver.css +0 -0
- inspect_ai/_view/www/src/components/MorePopOver.tsx +67 -0
- inspect_ai/_view/www/src/components/NavPills.module.css +18 -0
- inspect_ai/_view/www/src/components/NavPills.tsx +101 -0
- inspect_ai/_view/www/src/components/ProgressBar.module.css +37 -0
- inspect_ai/_view/www/src/components/ProgressBar.tsx +22 -0
- inspect_ai/_view/www/src/components/TabSet.module.css +40 -0
- inspect_ai/_view/www/src/components/TabSet.tsx +215 -0
- inspect_ai/_view/www/src/components/ToolButton.css +3 -0
- inspect_ai/_view/www/src/components/ToolButton.tsx +27 -0
- inspect_ai/_view/www/src/components/VirtualList.module.css +19 -0
- inspect_ai/_view/www/src/components/VirtualList.tsx +292 -0
- inspect_ai/_view/www/src/{index.js → index.tsx} +45 -19
- inspect_ai/_view/www/src/{log → logfile}/remoteLogFile.ts +3 -8
- inspect_ai/_view/www/src/{utils/remoteZipFile.mjs → logfile/remoteZipFile.ts} +86 -80
- inspect_ai/_view/www/src/metadata/MetaDataGrid.tsx +83 -0
- inspect_ai/_view/www/src/metadata/MetaDataView.module.css +35 -0
- inspect_ai/_view/www/src/metadata/MetaDataView.tsx +95 -0
- inspect_ai/_view/www/src/metadata/MetadataGrid.module.css +15 -0
- inspect_ai/_view/www/src/metadata/RenderedContent.module.css +12 -0
- inspect_ai/_view/www/src/{components/RenderedContent/RenderedContent.mjs → metadata/RenderedContent.tsx} +92 -73
- inspect_ai/_view/www/src/metadata/types.ts +18 -0
- inspect_ai/_view/www/src/plan/DatasetDetailView.module.css +3 -0
- inspect_ai/_view/www/src/plan/DatasetDetailView.tsx +37 -0
- inspect_ai/_view/www/src/plan/DetailStep.module.css +9 -0
- inspect_ai/_view/www/src/plan/DetailStep.tsx +31 -0
- inspect_ai/_view/www/src/plan/PlanCard.tsx +28 -0
- inspect_ai/_view/www/src/plan/PlanDetailView.module.css +48 -0
- inspect_ai/_view/www/src/plan/PlanDetailView.tsx +324 -0
- inspect_ai/_view/www/src/plan/ScorerDetailView.module.css +3 -0
- inspect_ai/_view/www/src/plan/ScorerDetailView.tsx +30 -0
- inspect_ai/_view/www/src/plan/SolverDetailView.module.css +15 -0
- inspect_ai/_view/www/src/plan/SolverDetailView.tsx +32 -0
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.module.css +8 -0
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.tsx +53 -0
- inspect_ai/_view/www/src/samples/SampleDialog.tsx +122 -0
- inspect_ai/_view/www/src/samples/SampleDisplay.module.css +29 -0
- inspect_ai/_view/www/src/samples/SampleDisplay.tsx +331 -0
- inspect_ai/_view/www/src/samples/SampleSummaryView.module.css +24 -0
- inspect_ai/_view/www/src/samples/SampleSummaryView.tsx +177 -0
- inspect_ai/_view/www/src/samples/SamplesTools.tsx +52 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessage.module.css +29 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessage.tsx +76 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessageRenderer.tsx +60 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessageRow.module.css +9 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessageRow.tsx +57 -0
- inspect_ai/_view/www/src/samples/chat/ChatView.tsx +47 -0
- inspect_ai/_view/www/src/samples/chat/ChatViewVirtualList.module.css +4 -0
- inspect_ai/_view/www/src/samples/chat/ChatViewVirtualList.tsx +58 -0
- inspect_ai/_view/www/src/samples/chat/MessageContent.module.css +4 -0
- inspect_ai/_view/www/src/samples/chat/MessageContent.tsx +157 -0
- inspect_ai/_view/www/src/samples/chat/MessageContents.module.css +3 -0
- inspect_ai/_view/www/src/samples/chat/MessageContents.tsx +133 -0
- inspect_ai/_view/www/src/samples/chat/messages.ts +112 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolCallView.tsx +147 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.module.css +14 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.tsx +76 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolOutput.module.css +19 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolOutput.tsx +60 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolTitle.module.css +4 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolTitle.tsx +18 -0
- inspect_ai/_view/www/src/samples/chat/tools/tool.ts +92 -0
- inspect_ai/_view/www/src/samples/descriptor/samplesDescriptor.tsx +365 -0
- inspect_ai/_view/www/src/samples/descriptor/score/BooleanScoreDescriptor.module.css +22 -0
- inspect_ai/_view/www/src/samples/descriptor/score/BooleanScoreDescriptor.tsx +26 -0
- inspect_ai/_view/www/src/samples/descriptor/score/CategoricalScoreDescriptor.tsx +18 -0
- inspect_ai/_view/www/src/samples/descriptor/score/NumericScoreDescriptor.tsx +27 -0
- inspect_ai/_view/www/src/samples/descriptor/score/ObjectScoreDescriptor.module.css +18 -0
- inspect_ai/_view/www/src/samples/descriptor/score/ObjectScoreDescriptor.tsx +71 -0
- inspect_ai/_view/www/src/samples/descriptor/score/OtherScoreDescriptor.tsx +20 -0
- inspect_ai/_view/www/src/samples/descriptor/score/PassFailScoreDescriptor.module.css +28 -0
- inspect_ai/_view/www/src/samples/descriptor/score/PassFailScoreDescriptor.tsx +81 -0
- inspect_ai/_view/www/src/samples/descriptor/score/ScoreDescriptor.tsx +99 -0
- inspect_ai/_view/www/src/samples/descriptor/types.ts +55 -0
- inspect_ai/_view/www/src/samples/error/FlatSampleErrorView.module.css +19 -0
- inspect_ai/_view/www/src/samples/error/FlatSampleErrorView.tsx +22 -0
- inspect_ai/_view/www/src/samples/error/SampleErrorView.module.css +17 -0
- inspect_ai/_view/www/src/samples/error/SampleErrorView.tsx +31 -0
- inspect_ai/_view/www/src/samples/error/error.ts +15 -0
- inspect_ai/_view/www/src/samples/list/SampleFooter.module.css +9 -0
- inspect_ai/_view/www/src/samples/list/SampleFooter.tsx +14 -0
- inspect_ai/_view/www/src/samples/list/SampleHeader.module.css +13 -0
- inspect_ai/_view/www/src/samples/list/SampleHeader.tsx +36 -0
- inspect_ai/_view/www/src/samples/list/SampleList.module.css +11 -0
- inspect_ai/_view/www/src/samples/list/SampleList.tsx +247 -0
- inspect_ai/_view/www/src/samples/list/SampleRow.module.css +33 -0
- inspect_ai/_view/www/src/samples/list/SampleRow.tsx +98 -0
- inspect_ai/_view/www/src/samples/list/SampleSeparator.module.css +6 -0
- inspect_ai/_view/www/src/samples/list/SampleSeparator.tsx +24 -0
- inspect_ai/_view/www/src/samples/sample-tools/EpochFilter.module.css +9 -0
- inspect_ai/_view/www/src/samples/sample-tools/EpochFilter.tsx +51 -0
- inspect_ai/_view/www/src/samples/sample-tools/SelectScorer.module.css +16 -0
- inspect_ai/_view/www/src/samples/sample-tools/SelectScorer.tsx +175 -0
- inspect_ai/_view/www/src/samples/sample-tools/SortFilter.module.css +9 -0
- inspect_ai/_view/www/src/samples/sample-tools/SortFilter.tsx +186 -0
- inspect_ai/_view/www/src/samples/{tools/filters.mjs → sample-tools/filters.ts} +86 -81
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.module.css +16 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.tsx +288 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/completions.ts +346 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/language.ts +19 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/tokenize.ts +97 -0
- inspect_ai/_view/www/src/samples/{SampleLimit.mjs → sampleLimit.ts} +3 -6
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.module.css +53 -0
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.tsx +168 -0
- inspect_ai/_view/www/src/samples/scores/SampleScores.module.css +5 -0
- inspect_ai/_view/www/src/samples/scores/SampleScores.tsx +37 -0
- inspect_ai/_view/www/src/samples/transcript/ApprovalEventView.tsx +66 -0
- inspect_ai/_view/www/src/samples/transcript/ErrorEventView.tsx +51 -0
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.module.css +3 -0
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.tsx +54 -0
- inspect_ai/_view/www/src/samples/transcript/InputEventView.tsx +48 -0
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.module.css +6 -0
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.tsx +36 -0
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.module.css +43 -0
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.tsx +223 -0
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.module.css +23 -0
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.tsx +112 -0
- inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.tsx +75 -0
- inspect_ai/_view/www/src/samples/transcript/SampleTranscript.tsx +22 -0
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.module.css +15 -0
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.tsx +100 -0
- inspect_ai/_view/www/src/samples/transcript/StepEventView.tsx +171 -0
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.module.css +19 -0
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.tsx +133 -0
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.module.css +10 -0
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.tsx +92 -0
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.module.css +49 -0
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.tsx +449 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNav.module.css +5 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNav.tsx +43 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNavs.module.css +3 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNavs.tsx +39 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventPanel.module.css +25 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventPanel.tsx +191 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventRow.module.css +13 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventRow.tsx +32 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventSection.module.css +8 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventSection.tsx +29 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateDiffView.tsx +67 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.tsx +285 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenders.module.css +10 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.module.css +9 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.tsx +346 -0
- inspect_ai/_view/www/src/samples/transcript/types.ts +58 -0
- inspect_ai/_view/www/src/types/log.d.ts +108 -19
- inspect_ai/_view/www/src/types/prism.d.ts +11 -0
- inspect_ai/_view/www/src/types.ts +71 -0
- inspect_ai/_view/www/src/usage/ModelTokenTable.tsx +28 -0
- inspect_ai/_view/www/src/usage/ModelUsagePanel.module.css +24 -0
- inspect_ai/_view/www/src/usage/ModelUsagePanel.tsx +97 -0
- inspect_ai/_view/www/src/usage/TokenTable.module.css +17 -0
- inspect_ai/_view/www/src/usage/TokenTable.tsx +91 -0
- inspect_ai/_view/www/src/usage/UsageCard.module.css +15 -0
- inspect_ai/_view/www/src/usage/UsageCard.tsx +67 -0
- inspect_ai/_view/www/src/utils/attachments.ts +42 -0
- inspect_ai/_view/www/src/utils/{Base64.mjs → base64.ts} +1 -6
- inspect_ai/_view/www/src/{components/Browser.mjs → utils/browser.ts} +0 -1
- inspect_ai/_view/www/src/utils/debugging.ts +28 -0
- inspect_ai/_view/www/src/utils/dom.ts +30 -0
- inspect_ai/_view/www/src/utils/format.ts +194 -0
- inspect_ai/_view/www/src/utils/git.ts +7 -0
- inspect_ai/_view/www/src/utils/html.ts +6 -0
- inspect_ai/_view/www/src/utils/http.ts +14 -0
- inspect_ai/_view/www/src/utils/{Path.mjs → path.ts} +2 -9
- inspect_ai/_view/www/src/utils/{Print.mjs → print.ts} +34 -26
- inspect_ai/_view/www/src/utils/queue.ts +51 -0
- inspect_ai/_view/www/src/utils/sync.ts +114 -0
- inspect_ai/_view/www/src/utils/{Type.mjs → type.ts} +3 -6
- inspect_ai/_view/www/src/utils/vscode.ts +13 -0
- inspect_ai/_view/www/src/workspace/WorkSpace.tsx +324 -0
- inspect_ai/_view/www/src/workspace/WorkSpaceView.module.css +33 -0
- inspect_ai/_view/www/src/workspace/WorkSpaceView.tsx +158 -0
- inspect_ai/_view/www/src/workspace/error/TaskErrorPanel.module.css +3 -0
- inspect_ai/_view/www/src/workspace/error/TaskErrorPanel.tsx +28 -0
- inspect_ai/_view/www/src/workspace/navbar/Navbar.module.css +54 -0
- inspect_ai/_view/www/src/workspace/navbar/Navbar.tsx +68 -0
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.module.css +52 -0
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.tsx +114 -0
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.module.css +90 -0
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx +180 -0
- inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.module.css +28 -0
- inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.tsx +226 -0
- inspect_ai/_view/www/src/workspace/navbar/StatusPanel.module.css +14 -0
- inspect_ai/_view/www/src/workspace/navbar/StatusPanel.tsx +61 -0
- inspect_ai/_view/www/src/workspace/sidebar/EvalStatus.module.css +15 -0
- inspect_ai/_view/www/src/workspace/sidebar/EvalStatus.tsx +71 -0
- inspect_ai/_view/www/src/workspace/sidebar/LogDirectoryTitleView.module.css +5 -0
- inspect_ai/_view/www/src/workspace/sidebar/LogDirectoryTitleView.tsx +56 -0
- inspect_ai/_view/www/src/workspace/sidebar/Sidebar.module.css +68 -0
- inspect_ai/_view/www/src/workspace/sidebar/Sidebar.tsx +85 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarLogEntry.module.css +29 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarLogEntry.tsx +95 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoreView.module.css +23 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoreView.tsx +43 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoresView.module.css +35 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoresView.tsx +63 -0
- inspect_ai/_view/www/src/workspace/tabs/InfoTab.module.css +0 -0
- inspect_ai/_view/www/src/workspace/tabs/InfoTab.tsx +70 -0
- inspect_ai/_view/www/src/workspace/tabs/JsonTab.module.css +5 -0
- inspect_ai/_view/www/src/workspace/tabs/JsonTab.tsx +46 -0
- inspect_ai/_view/www/src/workspace/tabs/SamplesTab.tsx +204 -0
- inspect_ai/_view/www/src/workspace/tabs/grouping.ts +195 -0
- inspect_ai/_view/www/src/workspace/tabs/types.ts +19 -0
- inspect_ai/_view/www/src/workspace/types.ts +10 -0
- inspect_ai/_view/www/src/workspace/utils.ts +34 -0
- inspect_ai/_view/www/tsconfig.json +23 -9
- inspect_ai/_view/www/vite.config.js +8 -17
- inspect_ai/_view/www/yarn.lock +627 -556
- inspect_ai/approval/_approval.py +2 -0
- inspect_ai/approval/_approver.py +4 -4
- inspect_ai/approval/_auto.py +1 -1
- inspect_ai/approval/_human/approver.py +3 -0
- inspect_ai/approval/_policy.py +5 -0
- inspect_ai/approval/_registry.py +2 -2
- inspect_ai/dataset/_dataset.py +64 -37
- inspect_ai/dataset/_sources/__init__.py +0 -0
- inspect_ai/dataset/_sources/csv.py +20 -12
- inspect_ai/dataset/_sources/file.py +4 -0
- inspect_ai/dataset/_sources/hf.py +39 -29
- inspect_ai/dataset/_sources/json.py +17 -9
- inspect_ai/log/__init__.py +2 -0
- inspect_ai/log/_convert.py +3 -3
- inspect_ai/log/_file.py +24 -9
- inspect_ai/log/_log.py +101 -13
- inspect_ai/log/_message.py +4 -2
- inspect_ai/log/_recorders/file.py +4 -0
- inspect_ai/log/_recorders/json.py +5 -7
- inspect_ai/log/_recorders/recorder.py +3 -0
- inspect_ai/log/_transcript.py +19 -8
- inspect_ai/model/__init__.py +2 -0
- inspect_ai/model/_cache.py +39 -21
- inspect_ai/model/_call_tools.py +4 -3
- inspect_ai/model/_chat_message.py +14 -4
- inspect_ai/model/_generate_config.py +1 -1
- inspect_ai/model/_model.py +31 -24
- inspect_ai/model/_model_output.py +14 -1
- inspect_ai/model/_openai.py +10 -18
- inspect_ai/model/_providers/anthropic.py +3 -3
- inspect_ai/model/_providers/google.py +9 -5
- inspect_ai/model/_providers/openai.py +5 -9
- inspect_ai/model/_providers/openai_o1.py +3 -5
- inspect_ai/model/_providers/openrouter.py +86 -0
- inspect_ai/model/_providers/providers.py +11 -0
- inspect_ai/scorer/__init__.py +6 -1
- inspect_ai/scorer/_answer.py +7 -7
- inspect_ai/scorer/_classification.py +38 -18
- inspect_ai/scorer/_common.py +2 -8
- inspect_ai/scorer/_match.py +4 -5
- inspect_ai/scorer/_metric.py +87 -28
- inspect_ai/scorer/_metrics/__init__.py +3 -3
- inspect_ai/scorer/_metrics/accuracy.py +8 -10
- inspect_ai/scorer/_metrics/mean.py +3 -17
- inspect_ai/scorer/_metrics/std.py +111 -30
- inspect_ai/scorer/_model.py +12 -12
- inspect_ai/scorer/_pattern.py +3 -3
- inspect_ai/scorer/_reducer/reducer.py +36 -21
- inspect_ai/scorer/_reducer/registry.py +2 -2
- inspect_ai/scorer/_reducer/types.py +7 -1
- inspect_ai/scorer/_score.py +11 -1
- inspect_ai/scorer/_scorer.py +110 -16
- inspect_ai/solver/__init__.py +1 -1
- inspect_ai/solver/_basic_agent.py +19 -22
- inspect_ai/solver/_bridge/__init__.py +0 -3
- inspect_ai/solver/_bridge/bridge.py +3 -3
- inspect_ai/solver/_chain.py +1 -2
- inspect_ai/solver/_critique.py +3 -3
- inspect_ai/solver/_fork.py +2 -2
- inspect_ai/solver/_human_agent/__init__.py +0 -0
- inspect_ai/solver/_human_agent/agent.py +5 -8
- inspect_ai/solver/_human_agent/commands/clock.py +14 -10
- inspect_ai/solver/_human_agent/commands/note.py +1 -1
- inspect_ai/solver/_human_agent/commands/score.py +0 -11
- inspect_ai/solver/_multiple_choice.py +38 -26
- inspect_ai/solver/_prompt.py +7 -7
- inspect_ai/solver/_solver.py +53 -52
- inspect_ai/solver/_task_state.py +80 -69
- inspect_ai/solver/_use_tools.py +9 -9
- inspect_ai/tool/__init__.py +4 -1
- inspect_ai/tool/_tool.py +43 -14
- inspect_ai/tool/_tool_call.py +6 -2
- inspect_ai/tool/_tool_choice.py +3 -1
- inspect_ai/tool/_tool_def.py +10 -8
- inspect_ai/tool/_tool_params.py +24 -0
- inspect_ai/tool/_tool_with.py +7 -7
- inspect_ai/tool/_tools/__init__.py +0 -0
- inspect_ai/tool/{beta → _tools}/_computer/_common.py +2 -2
- inspect_ai/tool/{beta → _tools}/_computer/_computer.py +13 -5
- inspect_ai/tool/_tools/_computer/_resources/tool/__init__.py +0 -0
- inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_x11_client.py +1 -1
- inspect_ai/tool/_tools/_computer/_resources/tool/requirements.txt +0 -0
- inspect_ai/tool/_tools/_execute.py +23 -11
- inspect_ai/tool/_tools/_web_browser/_resources/README.md +2 -2
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +5 -3
- inspect_ai/tool/_tools/_web_search.py +7 -5
- inspect_ai/tool/beta.py +3 -0
- inspect_ai/util/_concurrency.py +3 -3
- inspect_ai/util/_panel.py +2 -0
- inspect_ai/util/_resource.py +12 -12
- inspect_ai/util/_sandbox/docker/compose.py +23 -20
- inspect_ai/util/_sandbox/docker/config.py +2 -1
- inspect_ai/util/_sandbox/docker/docker.py +42 -86
- inspect_ai/util/_sandbox/docker/service.py +100 -0
- inspect_ai/util/_sandbox/environment.py +99 -96
- inspect_ai/util/_sandbox/self_check.py +124 -16
- inspect_ai/util/_subprocess.py +5 -3
- inspect_ai/util/_subtask.py +15 -16
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/LICENSE +1 -1
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/METADATA +11 -6
- inspect_ai-0.3.64.dist-info/RECORD +625 -0
- inspect_ai/_view/www/src/Register.mjs +0 -3
- inspect_ai/_view/www/src/Types.mjs +0 -38
- inspect_ai/_view/www/src/appearance/Colors.mjs +0 -27
- inspect_ai/_view/www/src/appearance/Fonts.mjs +0 -66
- inspect_ai/_view/www/src/appearance/Icons.mjs +0 -240
- inspect_ai/_view/www/src/components/AnsiDisplay.mjs +0 -184
- inspect_ai/_view/www/src/components/AppErrorBoundary.mjs +0 -34
- inspect_ai/_view/www/src/components/AsciiCinemaPlayer.mjs +0 -74
- inspect_ai/_view/www/src/components/Card.mjs +0 -126
- inspect_ai/_view/www/src/components/ChatView.mjs +0 -441
- inspect_ai/_view/www/src/components/CopyButton.mjs +0 -48
- inspect_ai/_view/www/src/components/Dialog.mjs +0 -61
- inspect_ai/_view/www/src/components/DownloadButton.mjs +0 -15
- inspect_ai/_view/www/src/components/DownloadPanel.mjs +0 -29
- inspect_ai/_view/www/src/components/EmptyPanel.mjs +0 -23
- inspect_ai/_view/www/src/components/ErrorPanel.mjs +0 -66
- inspect_ai/_view/www/src/components/ExpandablePanel.mjs +0 -136
- inspect_ai/_view/www/src/components/FindBand.mjs +0 -157
- inspect_ai/_view/www/src/components/HumanBaselineView.mjs +0 -168
- inspect_ai/_view/www/src/components/JsonPanel.mjs +0 -61
- inspect_ai/_view/www/src/components/LabeledValue.mjs +0 -32
- inspect_ai/_view/www/src/components/LargeModal.mjs +0 -190
- inspect_ai/_view/www/src/components/LightboxCarousel.mjs +0 -217
- inspect_ai/_view/www/src/components/MarkdownDiv.mjs +0 -118
- inspect_ai/_view/www/src/components/MessageBand.mjs +0 -48
- inspect_ai/_view/www/src/components/MessageContent.mjs +0 -111
- inspect_ai/_view/www/src/components/MetaDataGrid.mjs +0 -92
- inspect_ai/_view/www/src/components/MetaDataView.mjs +0 -109
- inspect_ai/_view/www/src/components/MorePopOver.mjs +0 -50
- inspect_ai/_view/www/src/components/NavPills.mjs +0 -63
- inspect_ai/_view/www/src/components/ProgressBar.mjs +0 -51
- inspect_ai/_view/www/src/components/RenderedContent/ChatMessageRenderer.mjs +0 -54
- inspect_ai/_view/www/src/components/RenderedContent/Types.mjs +0 -19
- inspect_ai/_view/www/src/components/TabSet.mjs +0 -184
- inspect_ai/_view/www/src/components/ToolButton.mjs +0 -16
- inspect_ai/_view/www/src/components/Tools.mjs +0 -376
- inspect_ai/_view/www/src/components/VirtualList.mjs +0 -280
- inspect_ai/_view/www/src/components/ansi-output.js +0 -932
- inspect_ai/_view/www/src/json/JsonTab.mjs +0 -48
- inspect_ai/_view/www/src/log-reader/Log-Reader.mjs +0 -25
- inspect_ai/_view/www/src/log-reader/Native-Log-Reader.mjs +0 -13
- inspect_ai/_view/www/src/log-reader/Open-AI-Log-Reader.mjs +0 -263
- inspect_ai/_view/www/src/navbar/Navbar.mjs +0 -418
- inspect_ai/_view/www/src/navbar/SecondaryBar.mjs +0 -175
- inspect_ai/_view/www/src/plan/PlanCard.mjs +0 -418
- inspect_ai/_view/www/src/samples/SampleDialog.mjs +0 -123
- inspect_ai/_view/www/src/samples/SampleDisplay.mjs +0 -516
- inspect_ai/_view/www/src/samples/SampleError.mjs +0 -99
- inspect_ai/_view/www/src/samples/SampleList.mjs +0 -427
- inspect_ai/_view/www/src/samples/SampleScoreView.mjs +0 -172
- inspect_ai/_view/www/src/samples/SampleScores.mjs +0 -34
- inspect_ai/_view/www/src/samples/SampleTranscript.mjs +0 -20
- inspect_ai/_view/www/src/samples/SamplesDescriptor.mjs +0 -771
- inspect_ai/_view/www/src/samples/SamplesTab.mjs +0 -399
- inspect_ai/_view/www/src/samples/SamplesTools.mjs +0 -64
- inspect_ai/_view/www/src/samples/tools/EpochFilter.mjs +0 -38
- inspect_ai/_view/www/src/samples/tools/SampleFilter.mjs +0 -756
- inspect_ai/_view/www/src/samples/tools/SelectScorer.mjs +0 -141
- inspect_ai/_view/www/src/samples/tools/SortFilter.mjs +0 -151
- inspect_ai/_view/www/src/samples/transcript/ApprovalEventView.mjs +0 -71
- inspect_ai/_view/www/src/samples/transcript/ErrorEventView.mjs +0 -44
- inspect_ai/_view/www/src/samples/transcript/EventPanel.mjs +0 -271
- inspect_ai/_view/www/src/samples/transcript/EventRow.mjs +0 -46
- inspect_ai/_view/www/src/samples/transcript/EventSection.mjs +0 -33
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.mjs +0 -59
- inspect_ai/_view/www/src/samples/transcript/InputEventView.mjs +0 -44
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.mjs +0 -32
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.mjs +0 -216
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.mjs +0 -107
- inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.mjs +0 -74
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.mjs +0 -100
- inspect_ai/_view/www/src/samples/transcript/StepEventView.mjs +0 -187
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.mjs +0 -133
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.mjs +0 -88
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.mjs +0 -459
- inspect_ai/_view/www/src/samples/transcript/Types.mjs +0 -44
- inspect_ai/_view/www/src/samples/transcript/state/StateDiffView.mjs +0 -53
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.mjs +0 -254
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.mjs +0 -313
- inspect_ai/_view/www/src/sidebar/Sidebar.mjs +0 -418
- inspect_ai/_view/www/src/usage/ModelTokenTable.mjs +0 -72
- inspect_ai/_view/www/src/usage/UsageCard.mjs +0 -159
- inspect_ai/_view/www/src/utils/Format.mjs +0 -260
- inspect_ai/_view/www/src/utils/Git.mjs +0 -12
- inspect_ai/_view/www/src/utils/Html.mjs +0 -21
- inspect_ai/_view/www/src/utils/attachments.mjs +0 -31
- inspect_ai/_view/www/src/utils/debugging.mjs +0 -23
- inspect_ai/_view/www/src/utils/http.mjs +0 -18
- inspect_ai/_view/www/src/utils/queue.mjs +0 -67
- inspect_ai/_view/www/src/utils/sync.mjs +0 -101
- inspect_ai/_view/www/src/workspace/TaskErrorPanel.mjs +0 -17
- inspect_ai/_view/www/src/workspace/WorkSpace.mjs +0 -516
- inspect_ai/tool/beta/__init__.py +0 -5
- inspect_ai-0.3.62.dist-info/RECORD +0 -481
- /inspect_ai/{tool/beta/_computer/_resources/tool → _eval}/__init__.py +0 -0
- /inspect_ai/{tool/beta/_computer/_resources/tool/requirements.txt → _util/__init__.py} +0 -0
- /inspect_ai/_view/www/src/{constants.mjs → constants.ts} +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/__init__.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_computer_split.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/Dockerfile +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/README.md +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/entrypoint.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/novnc_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/x11vnc_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/xfce_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/xvfb_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/Code/User/settings.json +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/Desktop/Terminal.desktop +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_logger.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_run.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_tool_result.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/computer_tool.py +0 -0
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/top_level.txt +0 -0
@@ -1,29 +0,0 @@
|
|
1
|
-
import { html } from "htm/preact";
|
2
|
-
|
3
|
-
import { DownloadButton } from "../components/DownloadButton.mjs";
|
4
|
-
import { FontSize } from "../appearance/Fonts.mjs";
|
5
|
-
|
6
|
-
export const DownloadPanel = ({
|
7
|
-
message,
|
8
|
-
buttonLabel,
|
9
|
-
logFile,
|
10
|
-
fileName,
|
11
|
-
fileContents,
|
12
|
-
}) => {
|
13
|
-
return html`<div
|
14
|
-
style=${{
|
15
|
-
display: "grid",
|
16
|
-
gridTemplateRows: "content content",
|
17
|
-
paddingTop: "3em",
|
18
|
-
justifyItems: "center",
|
19
|
-
}}
|
20
|
-
>
|
21
|
-
<div style=${{ fontSize: FontSize.small }}>${message}</div>
|
22
|
-
<${DownloadButton}
|
23
|
-
label=${buttonLabel}
|
24
|
-
logFile=${logFile}
|
25
|
-
fileName=${fileName}
|
26
|
-
fileContents=${fileContents}
|
27
|
-
/>
|
28
|
-
</div>`;
|
29
|
-
};
|
@@ -1,23 +0,0 @@
|
|
1
|
-
import { html } from "htm/preact";
|
2
|
-
|
3
|
-
export const EmptyPanel = ({ id, classes, height, style, children }) => {
|
4
|
-
const emptyStyle = {
|
5
|
-
display: "flex",
|
6
|
-
textAlign: "center",
|
7
|
-
flex: "0 0 content",
|
8
|
-
alignItems: "center",
|
9
|
-
justifyContent: "center",
|
10
|
-
height: height ? height : "10rem",
|
11
|
-
};
|
12
|
-
return html`
|
13
|
-
<div
|
14
|
-
...${{ id }}
|
15
|
-
class="${classes ? classes : ""}"
|
16
|
-
style=${{ width: "100%" }}
|
17
|
-
>
|
18
|
-
<div style=${{ ...emptyStyle, ...style }}>
|
19
|
-
<div>${children || ""}</div>
|
20
|
-
</div>
|
21
|
-
</div>
|
22
|
-
`;
|
23
|
-
};
|
@@ -1,66 +0,0 @@
|
|
1
|
-
import { html } from "htm/preact";
|
2
|
-
import { ApplicationIcons } from "../appearance/Icons.mjs";
|
3
|
-
import { FontSize } from "../appearance/Fonts.mjs";
|
4
|
-
|
5
|
-
export const ErrorPanel = ({ id, classes, title, error }) => {
|
6
|
-
const emptyStyle = {
|
7
|
-
display: "flex",
|
8
|
-
flex: "0 0 content",
|
9
|
-
alignItems: "center",
|
10
|
-
justifyContent: "center",
|
11
|
-
};
|
12
|
-
const message = error.message;
|
13
|
-
const stack = error.stack;
|
14
|
-
return html`
|
15
|
-
<div style=${{ overflowY: "auto", height: "100vh" }}>
|
16
|
-
<div
|
17
|
-
...${{ id }}
|
18
|
-
class="${classes ? classes : ""}"
|
19
|
-
style=${{
|
20
|
-
...emptyStyle,
|
21
|
-
flexDirection: "column",
|
22
|
-
minHeight: "10rem",
|
23
|
-
marginTop: "4rem",
|
24
|
-
marginBottom: "4em",
|
25
|
-
width: "100vw",
|
26
|
-
}}
|
27
|
-
>
|
28
|
-
<div style=${{ ...emptyStyle, fontSize: FontSize.larger }}>
|
29
|
-
<div>
|
30
|
-
<i
|
31
|
-
class="${ApplicationIcons.error}"
|
32
|
-
style="${{ marginRight: "0.5rem", color: "var(--bs-red)" }}"
|
33
|
-
></i>
|
34
|
-
</div>
|
35
|
-
<div>${title || ""}</div>
|
36
|
-
</div>
|
37
|
-
<div
|
38
|
-
style=${{
|
39
|
-
display: "inline-block",
|
40
|
-
fontSize: FontSize.smaller,
|
41
|
-
marginTop: "1rem",
|
42
|
-
border: "solid 1px var(--bs-border-color)",
|
43
|
-
borderRadius: "var(--bs-border-radius)",
|
44
|
-
padding: "1em",
|
45
|
-
maxWidth: "80%",
|
46
|
-
}}
|
47
|
-
>
|
48
|
-
<div>
|
49
|
-
Error: ${message || ""}
|
50
|
-
${stack &&
|
51
|
-
error.displayStack !== false &&
|
52
|
-
html`
|
53
|
-
<pre
|
54
|
-
style=${{ fontSize: FontSize.smaller, whiteSpace: "pre-wrap" }}
|
55
|
-
>
|
56
|
-
<code>
|
57
|
-
at ${stack}
|
58
|
-
</code>
|
59
|
-
</pre>
|
60
|
-
`}
|
61
|
-
</div>
|
62
|
-
</div>
|
63
|
-
</div>
|
64
|
-
</div>
|
65
|
-
`;
|
66
|
-
};
|
@@ -1,136 +0,0 @@
|
|
1
|
-
import { html } from "htm/preact";
|
2
|
-
import { useCallback, useEffect, useRef, useState } from "preact/hooks";
|
3
|
-
|
4
|
-
import { ApplicationIcons } from "../appearance/Icons.mjs";
|
5
|
-
import { FontSize } from "../appearance/Fonts.mjs";
|
6
|
-
|
7
|
-
export const ExpandablePanel = ({
|
8
|
-
collapse,
|
9
|
-
border,
|
10
|
-
lines = 15,
|
11
|
-
style,
|
12
|
-
children,
|
13
|
-
}) => {
|
14
|
-
const [collapsed, setCollapsed] = useState(collapse);
|
15
|
-
const [showToggle, setShowToggle] = useState(false);
|
16
|
-
|
17
|
-
const contentsRef = useRef(/** @type {HTMLElement|null} */ (null));
|
18
|
-
const observerRef = useRef(/** @type {IntersectionObserver|null} */ (null));
|
19
|
-
|
20
|
-
// Ensure that when content changes, we reset the collapse state.
|
21
|
-
useEffect(() => {
|
22
|
-
setCollapsed(collapse);
|
23
|
-
}, [children, collapse]);
|
24
|
-
|
25
|
-
const refreshCollapse = useCallback(() => {
|
26
|
-
if (collapse && contentsRef.current) {
|
27
|
-
const isScrollable =
|
28
|
-
contentsRef.current.offsetHeight < contentsRef.current.scrollHeight;
|
29
|
-
setShowToggle(isScrollable);
|
30
|
-
}
|
31
|
-
}, [collapse, setShowToggle, contentsRef]);
|
32
|
-
|
33
|
-
useEffect(() => {
|
34
|
-
refreshCollapse();
|
35
|
-
}, [children]);
|
36
|
-
|
37
|
-
// Determine whether we should show the toggle
|
38
|
-
useEffect(() => {
|
39
|
-
// When an entry is visible, check to see whether it is scrolling
|
40
|
-
observerRef.current = new IntersectionObserver((entries) => {
|
41
|
-
entries.forEach((entry) => {
|
42
|
-
if (entry.isIntersecting) {
|
43
|
-
refreshCollapse();
|
44
|
-
}
|
45
|
-
});
|
46
|
-
});
|
47
|
-
|
48
|
-
if (contentsRef.current) {
|
49
|
-
observerRef.current.observe(contentsRef.current);
|
50
|
-
}
|
51
|
-
|
52
|
-
return () => {
|
53
|
-
if (observerRef.current && contentsRef.current) {
|
54
|
-
observerRef.current.unobserve(contentsRef.current);
|
55
|
-
}
|
56
|
-
};
|
57
|
-
}, [contentsRef, observerRef]);
|
58
|
-
|
59
|
-
// Enforce the line clamp if need be
|
60
|
-
let contentsStyle = { fontSize: FontSize.base };
|
61
|
-
if (collapse && collapsed) {
|
62
|
-
contentsStyle = {
|
63
|
-
...contentsStyle,
|
64
|
-
maxHeight: `${lines}em`,
|
65
|
-
overflow: "hidden",
|
66
|
-
};
|
67
|
-
}
|
68
|
-
|
69
|
-
if (border) {
|
70
|
-
contentsStyle.border = "solid var(--bs-light-border-subtle) 1px";
|
71
|
-
}
|
72
|
-
|
73
|
-
return html`<div
|
74
|
-
class="expandable-panel"
|
75
|
-
ref=${contentsRef}
|
76
|
-
style=${{ ...contentsStyle, ...style }}
|
77
|
-
>
|
78
|
-
${children}
|
79
|
-
</div>
|
80
|
-
${showToggle
|
81
|
-
? html`<${MoreToggle}
|
82
|
-
collapsed=${collapsed}
|
83
|
-
setCollapsed=${setCollapsed}
|
84
|
-
border=${!border}
|
85
|
-
style=${style}
|
86
|
-
/>`
|
87
|
-
: ""}`;
|
88
|
-
};
|
89
|
-
|
90
|
-
const MoreToggle = ({ collapsed, border, setCollapsed, style }) => {
|
91
|
-
const text = collapsed ? "more" : "less";
|
92
|
-
const icon = collapsed
|
93
|
-
? ApplicationIcons["expand-down"]
|
94
|
-
: ApplicationIcons.collapse.up;
|
95
|
-
|
96
|
-
const topStyle = {
|
97
|
-
display: "flex",
|
98
|
-
marginBottom: "0.5em",
|
99
|
-
...style,
|
100
|
-
};
|
101
|
-
|
102
|
-
if (border) {
|
103
|
-
topStyle.borderTop = "solid var(--bs-light-border-subtle) 1px";
|
104
|
-
topStyle.marginTop = "0.5em";
|
105
|
-
} else {
|
106
|
-
topStyle.marginTop = "0";
|
107
|
-
}
|
108
|
-
|
109
|
-
return html`
|
110
|
-
<div style=${topStyle}>
|
111
|
-
<div
|
112
|
-
style=${{
|
113
|
-
display: "inline-block",
|
114
|
-
border: "solid var(--bs-light-border-subtle) 1px",
|
115
|
-
borderTop: "none",
|
116
|
-
marginLeft: "auto",
|
117
|
-
marginRight: "1em",
|
118
|
-
}}
|
119
|
-
>
|
120
|
-
<button
|
121
|
-
class="btn"
|
122
|
-
style=${{
|
123
|
-
fontSize: FontSize.smaller,
|
124
|
-
border: "none",
|
125
|
-
padding: "0.1rem .5rem",
|
126
|
-
}}
|
127
|
-
onclick=${() => {
|
128
|
-
setCollapsed(!collapsed);
|
129
|
-
}}
|
130
|
-
>
|
131
|
-
<i class="${icon}" /> ${text}
|
132
|
-
</button>
|
133
|
-
</div>
|
134
|
-
</div>
|
135
|
-
`;
|
136
|
-
};
|
@@ -1,157 +0,0 @@
|
|
1
|
-
import { html } from "htm/preact";
|
2
|
-
import { useEffect, useRef } from "preact/hooks";
|
3
|
-
import { ApplicationIcons } from "../appearance/Icons.mjs";
|
4
|
-
import { FontSize } from "../appearance/Fonts.mjs";
|
5
|
-
|
6
|
-
export const FindBand = ({ hideBand }) => {
|
7
|
-
const searchBoxRef = useRef(/** @type {HTMLInputElement|null} */ (null));
|
8
|
-
useEffect(() => {
|
9
|
-
searchBoxRef.current.focus();
|
10
|
-
}, []);
|
11
|
-
|
12
|
-
const searchTerm = () => {
|
13
|
-
return searchBoxRef.current.value;
|
14
|
-
};
|
15
|
-
|
16
|
-
const search = (term, back) => {
|
17
|
-
const parentExpandablePanel = (selection) => {
|
18
|
-
// Get the anchor node (the starting node of the selection)
|
19
|
-
let node = selection.anchorNode;
|
20
|
-
|
21
|
-
// Traverse up the DOM tree to find the parent with the class 'expandable-panel'
|
22
|
-
let expandablePanelEl = undefined;
|
23
|
-
while (node) {
|
24
|
-
if (node.classList && node.classList.contains("expandable-panel")) {
|
25
|
-
expandablePanelEl = node;
|
26
|
-
break;
|
27
|
-
}
|
28
|
-
node = node.parentElement;
|
29
|
-
}
|
30
|
-
return expandablePanelEl;
|
31
|
-
};
|
32
|
-
|
33
|
-
// capture what is focused
|
34
|
-
const focusedElement = /** @type {HTMLElement} */ (document.activeElement);
|
35
|
-
// @ts-expect-error: `Window.find` is non-standard
|
36
|
-
const result = window.find(term, false, !!back, false, false, true, false);
|
37
|
-
const noResultEl = window.document.getElementById(
|
38
|
-
"inspect-find-no-results",
|
39
|
-
);
|
40
|
-
if (result) {
|
41
|
-
noResultEl.style.opacity = "0";
|
42
|
-
const selection = window.getSelection();
|
43
|
-
if (selection.rangeCount > 0) {
|
44
|
-
// See if the parent is an expandable panel and expand it
|
45
|
-
const parentPanel = parentExpandablePanel(selection);
|
46
|
-
if (parentPanel) {
|
47
|
-
parentPanel.style.display = "block";
|
48
|
-
parentPanel.style["-webkit-line-clamp"] = "";
|
49
|
-
parentPanel.style["-webkit-box-orient"] = "";
|
50
|
-
}
|
51
|
-
|
52
|
-
const range = selection.getRangeAt(0);
|
53
|
-
setTimeout(() => {
|
54
|
-
const element = range.startContainer.parentElement;
|
55
|
-
element.scrollIntoView({
|
56
|
-
behavior: "smooth", // Optional: adds a smooth scrolling animation
|
57
|
-
block: "center", // Optional: scrolls so the element is centered in the view
|
58
|
-
});
|
59
|
-
}, 100);
|
60
|
-
}
|
61
|
-
} else {
|
62
|
-
noResultEl.style.opacity = "1";
|
63
|
-
}
|
64
|
-
|
65
|
-
// Return focus to the previously focused element
|
66
|
-
if (focusedElement) {
|
67
|
-
focusedElement.focus();
|
68
|
-
}
|
69
|
-
};
|
70
|
-
|
71
|
-
return html`<div
|
72
|
-
style=${{
|
73
|
-
position: "absolute",
|
74
|
-
top: 0,
|
75
|
-
right: 0,
|
76
|
-
marginRight: "20%",
|
77
|
-
zIndex: "1060",
|
78
|
-
color: "var(--inspect-find-foreground)",
|
79
|
-
backgroundColor: "var(--inspect-find-background)",
|
80
|
-
fontSize: "0.9rem",
|
81
|
-
display: "grid",
|
82
|
-
gridTemplateColumns: "auto auto auto auto auto",
|
83
|
-
columnGap: "0.2em",
|
84
|
-
padding: "0.2rem",
|
85
|
-
borderBottom: "solid 1px var(--bs-light-border-subtle)",
|
86
|
-
borderLeft: "solid 1px var(--bs-light-border-subtle)",
|
87
|
-
borderRight: "solid 1px var(--bs-light-border-subtle)",
|
88
|
-
boxShadow: "var(--bs-box-shadow)",
|
89
|
-
}}
|
90
|
-
>
|
91
|
-
<input
|
92
|
-
type="text"
|
93
|
-
ref=${searchBoxRef}
|
94
|
-
style=${{
|
95
|
-
height: "2em",
|
96
|
-
fontSize: "0.9em",
|
97
|
-
margin: "0.1rem",
|
98
|
-
outline: "none",
|
99
|
-
border: "solid 1px var(--inspect-input-border)",
|
100
|
-
color: "var(--inspect-input-foreground)",
|
101
|
-
background: "var(--inspect-input-background)",
|
102
|
-
}}
|
103
|
-
placeholder="Find"
|
104
|
-
onkeydown=${(e) => {
|
105
|
-
if (e.key === "Escape") {
|
106
|
-
hideBand();
|
107
|
-
} else if (e.key === "Enter") {
|
108
|
-
search(searchTerm());
|
109
|
-
}
|
110
|
-
}}
|
111
|
-
/>
|
112
|
-
<span
|
113
|
-
id="inspect-find-no-results"
|
114
|
-
style=${{
|
115
|
-
fontSize: FontSize.base,
|
116
|
-
opacity: 0,
|
117
|
-
marginTop: "auto",
|
118
|
-
marginBottom: "auto",
|
119
|
-
marginRight: "0.5em",
|
120
|
-
}}
|
121
|
-
>No results</span
|
122
|
-
>
|
123
|
-
<button
|
124
|
-
title="Previous match"
|
125
|
-
style=${{ padding: 0, fontSize: FontSize.larger }}
|
126
|
-
class="btn"
|
127
|
-
onclick=${() => {
|
128
|
-
search(searchTerm(), true);
|
129
|
-
}}
|
130
|
-
>
|
131
|
-
<i class=${ApplicationIcons.arrows.up}></i>
|
132
|
-
</button>
|
133
|
-
<button
|
134
|
-
title="Next match"
|
135
|
-
style=${{ padding: 0, fontSize: FontSize.larger }}
|
136
|
-
class="btn"
|
137
|
-
onclick=${() => {
|
138
|
-
search(searchTerm());
|
139
|
-
}}
|
140
|
-
>
|
141
|
-
<i class=${ApplicationIcons.arrows.down}></i>
|
142
|
-
</button>
|
143
|
-
<button
|
144
|
-
title="Close"
|
145
|
-
style=${{
|
146
|
-
padding: 0,
|
147
|
-
fontSize: FontSize["title-secondary"],
|
148
|
-
marginTop: "-0.1rem",
|
149
|
-
marginBottom: "-0.1rem",
|
150
|
-
}}
|
151
|
-
class="btn"
|
152
|
-
onclick=${() => hideBand()}
|
153
|
-
>
|
154
|
-
<i class=${ApplicationIcons.close}></i>
|
155
|
-
</button>
|
156
|
-
</div>`;
|
157
|
-
};
|
@@ -1,168 +0,0 @@
|
|
1
|
-
// @ts-check
|
2
|
-
import { html } from "htm/preact";
|
3
|
-
import { useEffect } from "preact/hooks";
|
4
|
-
import { formatDateTime, formatTime } from "../utils/Format.mjs";
|
5
|
-
import { AsciiCinemaPlayer } from "./AsciiCinemaPlayer.mjs";
|
6
|
-
import { TextStyle } from "../appearance/Fonts.mjs";
|
7
|
-
import { LightboxCarousel } from "./LightboxCarousel.mjs";
|
8
|
-
|
9
|
-
/**
|
10
|
-
* @typedef {Object} SessionLog
|
11
|
-
* @property {string} name - The name of this session
|
12
|
-
* @property {string} user - The user for this session
|
13
|
-
* @property {string} input - The input for this session
|
14
|
-
* @property {string} output - The output for this session
|
15
|
-
* @property {string} timing - The timing for this session
|
16
|
-
*/
|
17
|
-
|
18
|
-
/**
|
19
|
-
* Renders the HumanBaselineView component.
|
20
|
-
*
|
21
|
-
* @param {Object} props - The properties passed to the component.
|
22
|
-
* @param {Date} props.started - When the baselining started
|
23
|
-
* @param {boolean} props.running - Whether the baselining is running
|
24
|
-
* @param {boolean} [props.completed] - Whether the baselining was completed
|
25
|
-
* @param {number} [props.runtime] - Duration of baselining in seconds
|
26
|
-
* @param {string} [props.answer] - The answer for the baselining
|
27
|
-
* @param {SessionLog[]} [props.sessionLogs] - The session logs for the baselining
|
28
|
-
* @returns {import("preact").JSX.Element} The component.
|
29
|
-
*/
|
30
|
-
export const HumanBaselineView = ({
|
31
|
-
started,
|
32
|
-
runtime,
|
33
|
-
answer,
|
34
|
-
completed,
|
35
|
-
running,
|
36
|
-
sessionLogs,
|
37
|
-
}) => {
|
38
|
-
const player_fns = [];
|
39
|
-
|
40
|
-
// handle creation and revoking of these URLs
|
41
|
-
const revokableUrls = [];
|
42
|
-
const revokableUrl = (data) => {
|
43
|
-
const blob = new Blob([data], { type: "text/plain" });
|
44
|
-
const url = URL.createObjectURL(blob);
|
45
|
-
revokableUrls.push(url);
|
46
|
-
return url;
|
47
|
-
};
|
48
|
-
|
49
|
-
useEffect(() => {
|
50
|
-
return () => {
|
51
|
-
revokableUrls.forEach((url) => URL.revokeObjectURL(url));
|
52
|
-
};
|
53
|
-
}, []);
|
54
|
-
|
55
|
-
// Make a player for each session log
|
56
|
-
let count = 1;
|
57
|
-
let maxCols = 0;
|
58
|
-
|
59
|
-
for (const sessionLog of sessionLogs) {
|
60
|
-
const rows = extractSize(sessionLog.output, "LINES");
|
61
|
-
const cols = extractSize(sessionLog.output, "COLUMNS");
|
62
|
-
maxCols = Math.max(maxCols, parseInt(cols));
|
63
|
-
|
64
|
-
const currentCount = count;
|
65
|
-
const title =
|
66
|
-
sessionLogs.length === 1
|
67
|
-
? "Terminal Session"
|
68
|
-
: `Terminal Session ${currentCount}`;
|
69
|
-
|
70
|
-
player_fns.push({
|
71
|
-
label: title,
|
72
|
-
render: () => html`
|
73
|
-
<${AsciiCinemaPlayer}
|
74
|
-
id=${`player-${currentCount}`}
|
75
|
-
inputUrl=${revokableUrl(sessionLog.input)}
|
76
|
-
outputUrl=${revokableUrl(sessionLog.output)}
|
77
|
-
timingUrl=${revokableUrl(sessionLog.timing)}
|
78
|
-
rows=${rows}
|
79
|
-
cols=${cols}
|
80
|
-
style=${{
|
81
|
-
maxHeight: "100vh",
|
82
|
-
maxWidth: "100vw",
|
83
|
-
height: `${parseInt(rows) * 2}em`,
|
84
|
-
width: `${parseInt(cols) * 2}em`,
|
85
|
-
}}
|
86
|
-
fit="both"
|
87
|
-
/>
|
88
|
-
`,
|
89
|
-
});
|
90
|
-
count += 1;
|
91
|
-
}
|
92
|
-
|
93
|
-
const StatusMessage = ({ completed, running, answer }) => {
|
94
|
-
if (running) {
|
95
|
-
return html`<span style=${{ ...TextStyle.label }}>Running</span>`;
|
96
|
-
} else if (completed) {
|
97
|
-
return html`<span style=${{ ...TextStyle.label, marginRight: "0.5em" }}
|
98
|
-
>Answer</span
|
99
|
-
><span>${answer}</span>`;
|
100
|
-
} else {
|
101
|
-
return "Unknown status";
|
102
|
-
}
|
103
|
-
};
|
104
|
-
|
105
|
-
return html`<div style=${{ display: "flex", justifyContent: "center" }}>
|
106
|
-
<div
|
107
|
-
style=${{
|
108
|
-
display: "grid",
|
109
|
-
gridTemplateColumns: "1fr 1fr 1fr",
|
110
|
-
gridTemplateRows: "auto auto",
|
111
|
-
width: "100%",
|
112
|
-
}}
|
113
|
-
>
|
114
|
-
<div
|
115
|
-
style=${{
|
116
|
-
justifySelf: "start",
|
117
|
-
...TextStyle.label,
|
118
|
-
}}
|
119
|
-
>
|
120
|
-
${started ? formatDateTime(started) : ""}${runtime
|
121
|
-
? ` (${formatTime(Math.floor(runtime))})`
|
122
|
-
: ""}
|
123
|
-
</div>
|
124
|
-
<div
|
125
|
-
style=${{
|
126
|
-
justifySelf: "center",
|
127
|
-
...TextStyle.label,
|
128
|
-
}}
|
129
|
-
></div>
|
130
|
-
<div
|
131
|
-
style=${{
|
132
|
-
justifySelf: "end",
|
133
|
-
}}
|
134
|
-
>
|
135
|
-
<${StatusMessage}
|
136
|
-
completed=${completed}
|
137
|
-
running=${running}
|
138
|
-
answer=${answer}
|
139
|
-
/>
|
140
|
-
</div>
|
141
|
-
<div
|
142
|
-
style=${{
|
143
|
-
gridColumn: "span 3",
|
144
|
-
width: "100%",
|
145
|
-
}}
|
146
|
-
>
|
147
|
-
<${LightboxCarousel} slides=${player_fns} />
|
148
|
-
</div>
|
149
|
-
</div>
|
150
|
-
</div>`;
|
151
|
-
};
|
152
|
-
|
153
|
-
/**
|
154
|
-
* Extracts a numeric size value from a string based on a given label.
|
155
|
-
*
|
156
|
-
* Searches the input string for a pattern matching the format `LABEL="VALUE"`,
|
157
|
-
* where `LABEL` is the provided label and `VALUE` is a numeric value.
|
158
|
-
*
|
159
|
-
* @param {string} value - The input string to search within.
|
160
|
-
* @param {string} label - The label to look for in the string.
|
161
|
-
* @returns {string | undefined} The extracted size as a string if found, otherwise `undefined`.
|
162
|
-
*/
|
163
|
-
const extractSize = (value, label) => {
|
164
|
-
const regex = new RegExp(`${label}="(\\d+)"`);
|
165
|
-
const match = value.match(regex);
|
166
|
-
const size = match ? match[1] : undefined;
|
167
|
-
return size;
|
168
|
-
};
|
@@ -1,61 +0,0 @@
|
|
1
|
-
// @ts-check
|
2
|
-
/// <reference path="../types/prism.d.ts" />
|
3
|
-
import Prism from "prismjs";
|
4
|
-
import "prismjs/components/prism-json";
|
5
|
-
|
6
|
-
import { html } from "htm/preact";
|
7
|
-
import { useEffect, useMemo, useRef } from "preact/hooks";
|
8
|
-
import { FontSize } from "../appearance/Fonts.mjs";
|
9
|
-
|
10
|
-
const kPrismRenderMaxSize = 250000;
|
11
|
-
|
12
|
-
/**
|
13
|
-
* A panel component to render JSON data with syntax highlighting.
|
14
|
-
*
|
15
|
-
* @param {Object} props - The component properties.
|
16
|
-
* @param {string} [props.id] - The code element id
|
17
|
-
* @param {unknown} [props.data] - The JSON data to be rendered.
|
18
|
-
* @param {string} [props.json] - The JSON data to be rendered.
|
19
|
-
* @param {boolean} [props.simple] - Simple styling
|
20
|
-
* @param {Object} [props.style] - Optional styles to apply to the panel.
|
21
|
-
*
|
22
|
-
* @returns {import('preact').JSX.Element} The rendered component.
|
23
|
-
*/
|
24
|
-
export const JSONPanel = ({ id, json, data, simple, style }) => {
|
25
|
-
const codeRef = useRef();
|
26
|
-
|
27
|
-
const sourceCode = useMemo(() => {
|
28
|
-
return json || JSON.stringify(data, undefined, 2);
|
29
|
-
}, [json, data]);
|
30
|
-
|
31
|
-
useEffect(() => {
|
32
|
-
if (sourceCode.length < kPrismRenderMaxSize) {
|
33
|
-
Prism.highlightElement(codeRef.current);
|
34
|
-
}
|
35
|
-
}, [sourceCode]);
|
36
|
-
|
37
|
-
return html`<div>
|
38
|
-
<pre
|
39
|
-
style=${{
|
40
|
-
background: simple ? undefined : "var(--bs-light)",
|
41
|
-
width: "100%",
|
42
|
-
padding: "0.5em",
|
43
|
-
borderRadius: simple ? undefined : "var(--bs-border-radius)",
|
44
|
-
...style,
|
45
|
-
}}
|
46
|
-
class="jsonPanel"
|
47
|
-
>
|
48
|
-
<code
|
49
|
-
id=${id}
|
50
|
-
ref=${codeRef}
|
51
|
-
class="sourceCode language-javascript"
|
52
|
-
style=${{
|
53
|
-
fontSize: FontSize.small,
|
54
|
-
whiteSpace: "pre-wrap",
|
55
|
-
wordWrap: "anywhere",
|
56
|
-
}}>
|
57
|
-
${sourceCode}
|
58
|
-
</code>
|
59
|
-
</pre>
|
60
|
-
</div>`;
|
61
|
-
};
|
@@ -1,32 +0,0 @@
|
|
1
|
-
import { html } from "htm/preact";
|
2
|
-
import { FontSize, TextStyle } from "../appearance/Fonts.mjs";
|
3
|
-
|
4
|
-
export const LabeledValue = ({
|
5
|
-
label,
|
6
|
-
style,
|
7
|
-
valueStyle,
|
8
|
-
layout = "column",
|
9
|
-
children,
|
10
|
-
}) => {
|
11
|
-
const flexDirection = layout === "column" ? "column" : "row";
|
12
|
-
|
13
|
-
return html` <div
|
14
|
-
style=${{
|
15
|
-
display: "flex",
|
16
|
-
flexDirection,
|
17
|
-
...style,
|
18
|
-
}}
|
19
|
-
>
|
20
|
-
<div
|
21
|
-
style=${{
|
22
|
-
fontSize: FontSize.smaller,
|
23
|
-
marginBottom: "-0.2rem",
|
24
|
-
...TextStyle.secondary,
|
25
|
-
...TextStyle.label,
|
26
|
-
}}
|
27
|
-
>
|
28
|
-
${label}
|
29
|
-
</div>
|
30
|
-
<div style=${{ fontSize: FontSize.base, ...valueStyle }}>${children}</div>
|
31
|
-
</div>`;
|
32
|
-
};
|