inspect-ai 0.3.81__py3-none-any.whl → 0.3.82__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/eval.py +35 -2
- inspect_ai/_cli/util.py +44 -1
- inspect_ai/_display/core/config.py +1 -1
- inspect_ai/_display/core/display.py +13 -4
- inspect_ai/_display/core/results.py +1 -1
- inspect_ai/_display/textual/widgets/task_detail.py +5 -4
- inspect_ai/_eval/eval.py +38 -1
- inspect_ai/_eval/evalset.py +5 -0
- inspect_ai/_eval/run.py +5 -2
- inspect_ai/_eval/task/log.py +53 -6
- inspect_ai/_eval/task/run.py +51 -10
- inspect_ai/_util/constants.py +2 -0
- inspect_ai/_util/file.py +17 -1
- inspect_ai/_util/json.py +36 -1
- inspect_ai/_view/server.py +113 -1
- inspect_ai/_view/www/App.css +1 -1
- inspect_ai/_view/www/dist/assets/index.css +518 -296
- inspect_ai/_view/www/dist/assets/index.js +38803 -36307
- inspect_ai/_view/www/eslint.config.mjs +1 -1
- inspect_ai/_view/www/log-schema.json +13 -0
- inspect_ai/_view/www/node_modules/flatted/python/flatted.py +149 -0
- inspect_ai/_view/www/package.json +8 -2
- inspect_ai/_view/www/src/App.tsx +151 -855
- inspect_ai/_view/www/src/api/api-browser.ts +176 -5
- inspect_ai/_view/www/src/api/api-vscode.ts +75 -1
- inspect_ai/_view/www/src/api/client-api.ts +66 -10
- inspect_ai/_view/www/src/api/jsonrpc.ts +2 -0
- inspect_ai/_view/www/src/api/types.ts +107 -2
- inspect_ai/_view/www/src/appearance/icons.ts +1 -0
- inspect_ai/_view/www/src/components/AsciinemaPlayer.tsx +3 -3
- inspect_ai/_view/www/src/components/DownloadPanel.tsx +2 -2
- inspect_ai/_view/www/src/components/ExpandablePanel.tsx +56 -61
- inspect_ai/_view/www/src/components/FindBand.tsx +17 -9
- inspect_ai/_view/www/src/components/HumanBaselineView.tsx +1 -1
- inspect_ai/_view/www/src/components/JsonPanel.tsx +14 -24
- inspect_ai/_view/www/src/components/LargeModal.tsx +2 -35
- inspect_ai/_view/www/src/components/LightboxCarousel.tsx +27 -11
- inspect_ai/_view/www/src/components/LiveVirtualList.module.css +11 -0
- inspect_ai/_view/www/src/components/LiveVirtualList.tsx +177 -0
- inspect_ai/_view/www/src/components/MarkdownDiv.tsx +3 -3
- inspect_ai/_view/www/src/components/MessageBand.tsx +14 -9
- inspect_ai/_view/www/src/components/MorePopOver.tsx +3 -3
- inspect_ai/_view/www/src/components/NavPills.tsx +20 -8
- inspect_ai/_view/www/src/components/NoContentsPanel.module.css +12 -0
- inspect_ai/_view/www/src/components/NoContentsPanel.tsx +20 -0
- inspect_ai/_view/www/src/components/ProgressBar.module.css +5 -4
- inspect_ai/_view/www/src/components/ProgressBar.tsx +3 -2
- inspect_ai/_view/www/src/components/PulsingDots.module.css +81 -0
- inspect_ai/_view/www/src/components/PulsingDots.tsx +45 -0
- inspect_ai/_view/www/src/components/TabSet.tsx +4 -37
- inspect_ai/_view/www/src/components/ToolButton.tsx +3 -4
- inspect_ai/_view/www/src/index.tsx +26 -94
- inspect_ai/_view/www/src/logfile/remoteLogFile.ts +9 -1
- inspect_ai/_view/www/src/logfile/remoteZipFile.ts +30 -4
- inspect_ai/_view/www/src/metadata/RenderedContent.tsx +4 -6
- inspect_ai/_view/www/src/plan/ScorerDetailView.tsx +1 -1
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.module.css +9 -1
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.tsx +67 -28
- inspect_ai/_view/www/src/samples/SampleDialog.tsx +51 -22
- inspect_ai/_view/www/src/samples/SampleDisplay.module.css +4 -0
- inspect_ai/_view/www/src/samples/SampleDisplay.tsx +144 -90
- inspect_ai/_view/www/src/samples/SampleSummaryView.module.css +4 -0
- inspect_ai/_view/www/src/samples/SampleSummaryView.tsx +82 -35
- inspect_ai/_view/www/src/samples/SamplesTools.tsx +23 -30
- inspect_ai/_view/www/src/samples/chat/ChatMessage.tsx +2 -1
- inspect_ai/_view/www/src/samples/chat/ChatMessageRenderer.tsx +1 -1
- inspect_ai/_view/www/src/samples/chat/ChatViewVirtualList.tsx +45 -53
- inspect_ai/_view/www/src/samples/chat/MessageContent.tsx +4 -1
- inspect_ai/_view/www/src/samples/chat/MessageContents.tsx +3 -0
- inspect_ai/_view/www/src/samples/chat/messages.ts +34 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolCallView.module.css +3 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolCallView.tsx +10 -1
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.tsx +22 -46
- inspect_ai/_view/www/src/samples/descriptor/samplesDescriptor.tsx +25 -17
- inspect_ai/_view/www/src/samples/descriptor/score/ObjectScoreDescriptor.tsx +2 -1
- inspect_ai/_view/www/src/samples/descriptor/types.ts +6 -5
- inspect_ai/_view/www/src/samples/list/SampleFooter.module.css +21 -3
- inspect_ai/_view/www/src/samples/list/SampleFooter.tsx +20 -1
- inspect_ai/_view/www/src/samples/list/SampleList.tsx +105 -85
- inspect_ai/_view/www/src/samples/list/SampleRow.module.css +6 -0
- inspect_ai/_view/www/src/samples/list/SampleRow.tsx +27 -14
- inspect_ai/_view/www/src/samples/sample-tools/SelectScorer.tsx +29 -18
- inspect_ai/_view/www/src/samples/sample-tools/SortFilter.tsx +28 -28
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.tsx +19 -9
- inspect_ai/_view/www/src/samples/sampleDataAdapter.ts +33 -0
- inspect_ai/_view/www/src/samples/sampleLimit.ts +2 -2
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.tsx +7 -9
- inspect_ai/_view/www/src/samples/scores/SampleScores.tsx +7 -11
- inspect_ai/_view/www/src/samples/transcript/ErrorEventView.tsx +0 -13
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.tsx +0 -13
- inspect_ai/_view/www/src/samples/transcript/InputEventView.tsx +0 -13
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.module.css +4 -0
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.tsx +10 -24
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.tsx +0 -13
- inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.tsx +4 -22
- inspect_ai/_view/www/src/samples/transcript/SandboxEventView.tsx +15 -24
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.tsx +0 -13
- inspect_ai/_view/www/src/samples/transcript/StepEventView.tsx +6 -28
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.tsx +24 -34
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.module.css +4 -0
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.tsx +8 -13
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.tsx +197 -338
- inspect_ai/_view/www/src/samples/transcript/TranscriptVirtualListComponent.module.css +16 -0
- inspect_ai/_view/www/src/samples/transcript/TranscriptVirtualListComponent.tsx +44 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNav.tsx +7 -4
- inspect_ai/_view/www/src/samples/transcript/event/EventPanel.tsx +52 -58
- inspect_ai/_view/www/src/samples/transcript/event/EventProgressPanel.module.css +23 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventProgressPanel.tsx +27 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.tsx +30 -1
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.tsx +102 -72
- inspect_ai/_view/www/src/scoring/utils.ts +87 -0
- inspect_ai/_view/www/src/state/appSlice.ts +244 -0
- inspect_ai/_view/www/src/state/hooks.ts +397 -0
- inspect_ai/_view/www/src/state/logPolling.ts +196 -0
- inspect_ai/_view/www/src/state/logSlice.ts +214 -0
- inspect_ai/_view/www/src/state/logsPolling.ts +118 -0
- inspect_ai/_view/www/src/state/logsSlice.ts +181 -0
- inspect_ai/_view/www/src/state/samplePolling.ts +311 -0
- inspect_ai/_view/www/src/state/sampleSlice.ts +127 -0
- inspect_ai/_view/www/src/state/sampleUtils.ts +21 -0
- inspect_ai/_view/www/src/state/scrolling.ts +206 -0
- inspect_ai/_view/www/src/state/store.ts +168 -0
- inspect_ai/_view/www/src/state/store_filter.ts +84 -0
- inspect_ai/_view/www/src/state/utils.ts +23 -0
- inspect_ai/_view/www/src/storage/index.ts +26 -0
- inspect_ai/_view/www/src/types/log.d.ts +2 -0
- inspect_ai/_view/www/src/types.ts +94 -32
- inspect_ai/_view/www/src/utils/attachments.ts +58 -23
- inspect_ai/_view/www/src/utils/logger.ts +52 -0
- inspect_ai/_view/www/src/utils/polling.ts +100 -0
- inspect_ai/_view/www/src/utils/react.ts +30 -0
- inspect_ai/_view/www/src/utils/vscode.ts +1 -1
- inspect_ai/_view/www/src/workspace/WorkSpace.tsx +181 -216
- inspect_ai/_view/www/src/workspace/WorkSpaceView.tsx +11 -53
- inspect_ai/_view/www/src/workspace/navbar/Navbar.tsx +8 -18
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.module.css +1 -0
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.tsx +40 -22
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.module.css +0 -1
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx +98 -39
- inspect_ai/_view/www/src/workspace/navbar/RunningStatusPanel.module.css +32 -0
- inspect_ai/_view/www/src/workspace/navbar/RunningStatusPanel.tsx +32 -0
- inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.tsx +11 -13
- inspect_ai/_view/www/src/workspace/navbar/StatusPanel.tsx +6 -2
- inspect_ai/_view/www/src/workspace/sidebar/LogDirectoryTitleView.tsx +4 -4
- inspect_ai/_view/www/src/workspace/sidebar/Sidebar.tsx +28 -13
- inspect_ai/_view/www/src/workspace/tabs/InfoTab.tsx +5 -10
- inspect_ai/_view/www/src/workspace/tabs/JsonTab.tsx +4 -4
- inspect_ai/_view/www/src/workspace/tabs/RunningNoSamples.module.css +22 -0
- inspect_ai/_view/www/src/workspace/tabs/RunningNoSamples.tsx +19 -0
- inspect_ai/_view/www/src/workspace/tabs/SamplesTab.tsx +110 -115
- inspect_ai/_view/www/src/workspace/tabs/grouping.ts +37 -5
- inspect_ai/_view/www/src/workspace/tabs/types.ts +4 -0
- inspect_ai/_view/www/src/workspace/types.ts +4 -3
- inspect_ai/_view/www/src/workspace/utils.ts +4 -4
- inspect_ai/_view/www/vite.config.js +6 -0
- inspect_ai/_view/www/yarn.lock +370 -354
- inspect_ai/log/_condense.py +26 -0
- inspect_ai/log/_log.py +6 -3
- inspect_ai/log/_recorders/buffer/__init__.py +14 -0
- inspect_ai/log/_recorders/buffer/buffer.py +30 -0
- inspect_ai/log/_recorders/buffer/database.py +685 -0
- inspect_ai/log/_recorders/buffer/filestore.py +259 -0
- inspect_ai/log/_recorders/buffer/types.py +84 -0
- inspect_ai/log/_recorders/eval.py +2 -11
- inspect_ai/log/_recorders/types.py +30 -0
- inspect_ai/log/_transcript.py +27 -1
- inspect_ai/model/_call_tools.py +1 -0
- inspect_ai/model/_generate_config.py +2 -2
- inspect_ai/model/_model.py +1 -0
- inspect_ai/tool/_tool_support_helpers.py +4 -4
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +3 -1
- inspect_ai/util/_subtask.py +1 -0
- {inspect_ai-0.3.81.dist-info → inspect_ai-0.3.82.dist-info}/METADATA +1 -1
- {inspect_ai-0.3.81.dist-info → inspect_ai-0.3.82.dist-info}/RECORD +178 -138
- inspect_ai/_view/www/src/samples/transcript/SampleTranscript.tsx +0 -22
- {inspect_ai-0.3.81.dist-info → inspect_ai-0.3.82.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.81.dist-info → inspect_ai-0.3.82.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.81.dist-info → inspect_ai-0.3.82.dist-info}/licenses/LICENSE +0 -0
- {inspect_ai-0.3.81.dist-info → inspect_ai-0.3.82.dist-info}/top_level.txt +0 -0
@@ -14608,7 +14608,7 @@ body {
|
|
14608
14608
|
padding-top: 0;
|
14609
14609
|
padding-bottom: 0;
|
14610
14610
|
background-color: var(--bs-light);
|
14611
|
-
top:
|
14611
|
+
top: 0;
|
14612
14612
|
}
|
14613
14613
|
|
14614
14614
|
.navbar-title-grid {
|
@@ -15430,7 +15430,7 @@ ul.jsondiffpatch-textdiff {
|
|
15430
15430
|
margin-right: 0.5rem;
|
15431
15431
|
color: var(--bs-red);
|
15432
15432
|
}
|
15433
|
-
.
|
15433
|
+
._wrapper_1tajk_1 {
|
15434
15434
|
display: flex;
|
15435
15435
|
align-items: center;
|
15436
15436
|
justify-content: center;
|
@@ -15438,28 +15438,29 @@ ul.jsondiffpatch-textdiff {
|
|
15438
15438
|
height: 0;
|
15439
15439
|
overflow-y: visible;
|
15440
15440
|
overflow-x: visible;
|
15441
|
-
z-index: 1001;
|
15442
15441
|
text-align: center;
|
15443
15442
|
}
|
15444
15443
|
|
15445
|
-
.
|
15444
|
+
._container_1tajk_12 {
|
15446
15445
|
width: 100%;
|
15447
|
-
height:
|
15446
|
+
height: 1px;
|
15448
15447
|
background-color: transparent;
|
15449
|
-
position:
|
15448
|
+
position: sticky;
|
15450
15449
|
overflow: hidden;
|
15450
|
+
z-index: 1200;
|
15451
15451
|
}
|
15452
15452
|
|
15453
|
-
.
|
15453
|
+
._animate_1tajk_21 {
|
15454
15454
|
width: 5%;
|
15455
|
-
height:
|
15456
|
-
animation:
|
15455
|
+
height: 1px;
|
15456
|
+
animation: _leftToRight_1tajk_1 2s linear infinite;
|
15457
15457
|
background-color: #3b82f6;
|
15458
15458
|
position: absolute;
|
15459
15459
|
left: 0;
|
15460
|
+
top: 0;
|
15460
15461
|
}
|
15461
15462
|
|
15462
|
-
@keyframes
|
15463
|
+
@keyframes _leftToRight_1tajk_1 {
|
15463
15464
|
0% {
|
15464
15465
|
transform: translateX(-100%);
|
15465
15466
|
}
|
@@ -15516,6 +15517,184 @@ ul.jsondiffpatch-textdiff {
|
|
15516
15517
|
margin-top: -0.1rem;
|
15517
15518
|
margin-bottom: -0.1rem;
|
15518
15519
|
}
|
15520
|
+
._dirname_16ra5_1 {
|
15521
|
+
overflow: hidden;
|
15522
|
+
white-space: nowrap;
|
15523
|
+
text-overflow: ellipsis;
|
15524
|
+
}
|
15525
|
+
._sidebar_1u82r_1 {
|
15526
|
+
position: fixed;
|
15527
|
+
left: 0;
|
15528
|
+
top: 0;
|
15529
|
+
width: var(--sidebar-width);
|
15530
|
+
height: 100%;
|
15531
|
+
background-color: #fff;
|
15532
|
+
border-right: 1px solid var(--bs-light-border-subtle);
|
15533
|
+
display: flex;
|
15534
|
+
flex-direction: column;
|
15535
|
+
z-index: 9999; /* Sit above main content */
|
15536
|
+
transition: transform 0.3s ease-in-out;
|
15537
|
+
}
|
15538
|
+
|
15539
|
+
._sidebarClosed_1u82r_15 {
|
15540
|
+
transform: translateX(-100%);
|
15541
|
+
}
|
15542
|
+
|
15543
|
+
._sidebarOpen_1u82r_19 {
|
15544
|
+
transform: translateX(0);
|
15545
|
+
}
|
15546
|
+
|
15547
|
+
._header_1u82r_23 {
|
15548
|
+
display: grid;
|
15549
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
15550
|
+
column-gap: 0.2rem;
|
15551
|
+
align-items: center;
|
15552
|
+
opacity: 0.7;
|
15553
|
+
position: sticky;
|
15554
|
+
top: 0;
|
15555
|
+
width: var(--sidebar-width);
|
15556
|
+
border-bottom: 1px solid var(--bs-light-border-subtle);
|
15557
|
+
padding: 0.5rem 0 0.5rem 1rem;
|
15558
|
+
height: 3.6em;
|
15559
|
+
background-color: #fff;
|
15560
|
+
z-index: 10;
|
15561
|
+
}
|
15562
|
+
|
15563
|
+
._toggle_1u82r_39 {
|
15564
|
+
padding: 0.1rem;
|
15565
|
+
align-self: end;
|
15566
|
+
width: 40px;
|
15567
|
+
flex: 0 0 auto;
|
15568
|
+
}
|
15569
|
+
|
15570
|
+
._progress_1u82r_46 {
|
15571
|
+
z-index: 3;
|
15572
|
+
}
|
15573
|
+
|
15574
|
+
._list_1u82r_50 {
|
15575
|
+
flex-grow: 1;
|
15576
|
+
overflow-y: auto;
|
15577
|
+
}
|
15578
|
+
|
15579
|
+
._backdrop_1u82r_55 {
|
15580
|
+
position: fixed;
|
15581
|
+
inset: 0; /* top: 0; left: 0; right: 0; bottom: 0; */
|
15582
|
+
background-color: rgba(0, 0, 0, 0.5);
|
15583
|
+
z-index: 9998;
|
15584
|
+
}
|
15585
|
+
|
15586
|
+
._active_1u82r_62 {
|
15587
|
+
background-color: var(--bs-secondary-bg-subtle);
|
15588
|
+
}
|
15589
|
+
|
15590
|
+
._item_1u82r_66 {
|
15591
|
+
cursor: pointer;
|
15592
|
+
}
|
15593
|
+
._error_srruf_1 {
|
15594
|
+
color: var(--bs-danger);
|
15595
|
+
margin-top: 0.2em;
|
15596
|
+
}
|
15597
|
+
|
15598
|
+
._running_srruf_6 {
|
15599
|
+
display: grid;
|
15600
|
+
grid-template-columns: max-content max-content;
|
15601
|
+
column-gap: 0.5em;
|
15602
|
+
margin-top: 0.3em;
|
15603
|
+
}
|
15604
|
+
|
15605
|
+
._cancelled_srruf_13 {
|
15606
|
+
margin-top: 0.2em;
|
15607
|
+
}
|
15608
|
+
._container_1frsg_1 {
|
15609
|
+
display: flex;
|
15610
|
+
flex-direction: row;
|
15611
|
+
flex-wrap: wrap;
|
15612
|
+
justify-content: flex-end;
|
15613
|
+
}
|
15614
|
+
|
15615
|
+
._metric_1frsg_8 {
|
15616
|
+
display: flex;
|
15617
|
+
flex-direction: column;
|
15618
|
+
align-items: flex-end;
|
15619
|
+
margin-left: 1em;
|
15620
|
+
margin-bottom: 0.4em;
|
15621
|
+
margin-top: 0.5rem;
|
15622
|
+
}
|
15623
|
+
|
15624
|
+
._metricName_1frsg_17 {
|
15625
|
+
margin-bottom: -0.3em;
|
15626
|
+
}
|
15627
|
+
|
15628
|
+
._metricReducer_1frsg_21 {
|
15629
|
+
margin-bottom: -0.2rem;
|
15630
|
+
}
|
15631
|
+
._container_5kpg1_1 {
|
15632
|
+
display: flex;
|
15633
|
+
flex-direction: row;
|
15634
|
+
flex-wrap: wrap;
|
15635
|
+
justify-content: flex-end;
|
15636
|
+
row-gap: 1em;
|
15637
|
+
}
|
15638
|
+
|
15639
|
+
._scoreWrapper_5kpg1_9 {
|
15640
|
+
display: flex;
|
15641
|
+
flex-direction: column;
|
15642
|
+
align-items: center;
|
15643
|
+
margin-left: 1em;
|
15644
|
+
}
|
15645
|
+
|
15646
|
+
._metricName_5kpg1_16 {
|
15647
|
+
width: 100%;
|
15648
|
+
font-weight: 300;
|
15649
|
+
border-bottom: solid var(--bs-border-color) 1px;
|
15650
|
+
}
|
15651
|
+
|
15652
|
+
._metricReducer_5kpg1_22 {
|
15653
|
+
width: 100%;
|
15654
|
+
font-weight: 300;
|
15655
|
+
}
|
15656
|
+
|
15657
|
+
._metricValues_5kpg1_27 {
|
15658
|
+
display: grid;
|
15659
|
+
grid-template-columns: max-content max-content;
|
15660
|
+
grid-gap: 0 0.3rem;
|
15661
|
+
}
|
15662
|
+
|
15663
|
+
._metricValue_5kpg1_27 {
|
15664
|
+
font-weight: 600;
|
15665
|
+
}
|
15666
|
+
._entry_12m5n_1 {
|
15667
|
+
display: flex;
|
15668
|
+
flex-direction: row;
|
15669
|
+
justify-content: space-between;
|
15670
|
+
}
|
15671
|
+
|
15672
|
+
._title_12m5n_7 {
|
15673
|
+
overflow: hidden;
|
15674
|
+
min-width: 33%;
|
15675
|
+
}
|
15676
|
+
|
15677
|
+
._task_12m5n_12 {
|
15678
|
+
white-space: nowrap;
|
15679
|
+
overflow: hidden;
|
15680
|
+
text-overflow: ellipsis;
|
15681
|
+
}
|
15682
|
+
|
15683
|
+
._params_12m5n_18 {
|
15684
|
+
margin-top: 1em;
|
15685
|
+
}
|
15686
|
+
|
15687
|
+
._scores_12m5n_22 {
|
15688
|
+
width: 100%;
|
15689
|
+
display: grid;
|
15690
|
+
grid-template-columns: minmax(auto, 1fr) minmax(1fr, 1fr);
|
15691
|
+
column-gap: 1rem;
|
15692
|
+
justify-content: space-between;
|
15693
|
+
margin-top: 0em;
|
15694
|
+
}
|
15695
|
+
.tool-button i {
|
15696
|
+
margin-right: 0.5em;
|
15697
|
+
}
|
15519
15698
|
._circle_upui3_1 {
|
15520
15699
|
font-family: "Consola Regular";
|
15521
15700
|
width: 20px;
|
@@ -15714,6 +15893,9 @@ ul.jsondiffpatch-textdiff {
|
|
15714
15893
|
._textCode_1j5uu_17 {
|
15715
15894
|
word-wrap: anywhere;
|
15716
15895
|
}
|
15896
|
+
._output_s17ok_1 {
|
15897
|
+
padding-top: 1em;
|
15898
|
+
}
|
15717
15899
|
._outputPre_1h1fn_1 {
|
15718
15900
|
padding: 0.5em;
|
15719
15901
|
margin-top: 0.25em;
|
@@ -15822,209 +16004,31 @@ ul.jsondiffpatch-textdiff {
|
|
15822
16004
|
padding-top: 1px;
|
15823
16005
|
}
|
15824
16006
|
|
15825
|
-
._green_1iagp_12 {
|
15826
|
-
background-color: var(--bs-success);
|
15827
|
-
border-color: var(--bs-success);
|
15828
|
-
color: var(--bs-body-bg);
|
15829
|
-
}
|
15830
|
-
|
15831
|
-
._red_1iagp_18 {
|
15832
|
-
background-color: var(--bs-danger);
|
15833
|
-
border-color: var(--bs-danger);
|
15834
|
-
color: var(--bs-body-bg);
|
15835
|
-
}
|
15836
|
-
|
15837
|
-
._orange_1iagp_24 {
|
15838
|
-
background-color: var(--bs-orange);
|
15839
|
-
border-color: var(--bs-orange);
|
15840
|
-
color: var(--bs-body-bg);
|
15841
|
-
}
|
15842
|
-
._flex_1kye9_1 {
|
15843
|
-
display: flex;
|
15844
|
-
}
|
15845
|
-
|
15846
|
-
._label_1kye9_5 {
|
15847
|
-
align-self: center;
|
15848
|
-
margin-right: 0.3em;
|
15849
|
-
margin-left: 0.2em;
|
15850
|
-
}
|
15851
|
-
._dirname_16ra5_1 {
|
15852
|
-
overflow: hidden;
|
15853
|
-
white-space: nowrap;
|
15854
|
-
text-overflow: ellipsis;
|
15855
|
-
}
|
15856
|
-
._sidebar_1u82r_1 {
|
15857
|
-
position: fixed;
|
15858
|
-
left: 0;
|
15859
|
-
top: 0;
|
15860
|
-
width: var(--sidebar-width);
|
15861
|
-
height: 100%;
|
15862
|
-
background-color: #fff;
|
15863
|
-
border-right: 1px solid var(--bs-light-border-subtle);
|
15864
|
-
display: flex;
|
15865
|
-
flex-direction: column;
|
15866
|
-
z-index: 9999; /* Sit above main content */
|
15867
|
-
transition: transform 0.3s ease-in-out;
|
15868
|
-
}
|
15869
|
-
|
15870
|
-
._sidebarClosed_1u82r_15 {
|
15871
|
-
transform: translateX(-100%);
|
15872
|
-
}
|
15873
|
-
|
15874
|
-
._sidebarOpen_1u82r_19 {
|
15875
|
-
transform: translateX(0);
|
15876
|
-
}
|
15877
|
-
|
15878
|
-
._header_1u82r_23 {
|
15879
|
-
display: grid;
|
15880
|
-
grid-template-columns: minmax(0, 1fr) auto;
|
15881
|
-
column-gap: 0.2rem;
|
15882
|
-
align-items: center;
|
15883
|
-
opacity: 0.7;
|
15884
|
-
position: sticky;
|
15885
|
-
top: 0;
|
15886
|
-
width: var(--sidebar-width);
|
15887
|
-
border-bottom: 1px solid var(--bs-light-border-subtle);
|
15888
|
-
padding: 0.5rem 0 0.5rem 1rem;
|
15889
|
-
height: 3.6em;
|
15890
|
-
background-color: #fff;
|
15891
|
-
z-index: 10;
|
15892
|
-
}
|
15893
|
-
|
15894
|
-
._toggle_1u82r_39 {
|
15895
|
-
padding: 0.1rem;
|
15896
|
-
align-self: end;
|
15897
|
-
width: 40px;
|
15898
|
-
flex: 0 0 auto;
|
15899
|
-
}
|
15900
|
-
|
15901
|
-
._progress_1u82r_46 {
|
15902
|
-
z-index: 3;
|
15903
|
-
}
|
15904
|
-
|
15905
|
-
._list_1u82r_50 {
|
15906
|
-
flex-grow: 1;
|
15907
|
-
overflow-y: auto;
|
15908
|
-
}
|
15909
|
-
|
15910
|
-
._backdrop_1u82r_55 {
|
15911
|
-
position: fixed;
|
15912
|
-
inset: 0; /* top: 0; left: 0; right: 0; bottom: 0; */
|
15913
|
-
background-color: rgba(0, 0, 0, 0.5);
|
15914
|
-
z-index: 9998;
|
15915
|
-
}
|
15916
|
-
|
15917
|
-
._active_1u82r_62 {
|
15918
|
-
background-color: var(--bs-secondary-bg-subtle);
|
15919
|
-
}
|
15920
|
-
|
15921
|
-
._item_1u82r_66 {
|
15922
|
-
cursor: pointer;
|
15923
|
-
}
|
15924
|
-
._error_srruf_1 {
|
15925
|
-
color: var(--bs-danger);
|
15926
|
-
margin-top: 0.2em;
|
15927
|
-
}
|
15928
|
-
|
15929
|
-
._running_srruf_6 {
|
15930
|
-
display: grid;
|
15931
|
-
grid-template-columns: max-content max-content;
|
15932
|
-
column-gap: 0.5em;
|
15933
|
-
margin-top: 0.3em;
|
15934
|
-
}
|
15935
|
-
|
15936
|
-
._cancelled_srruf_13 {
|
15937
|
-
margin-top: 0.2em;
|
15938
|
-
}
|
15939
|
-
._container_1frsg_1 {
|
15940
|
-
display: flex;
|
15941
|
-
flex-direction: row;
|
15942
|
-
flex-wrap: wrap;
|
15943
|
-
justify-content: flex-end;
|
15944
|
-
}
|
15945
|
-
|
15946
|
-
._metric_1frsg_8 {
|
15947
|
-
display: flex;
|
15948
|
-
flex-direction: column;
|
15949
|
-
align-items: flex-end;
|
15950
|
-
margin-left: 1em;
|
15951
|
-
margin-bottom: 0.4em;
|
15952
|
-
margin-top: 0.5rem;
|
15953
|
-
}
|
15954
|
-
|
15955
|
-
._metricName_1frsg_17 {
|
15956
|
-
margin-bottom: -0.3em;
|
15957
|
-
}
|
15958
|
-
|
15959
|
-
._metricReducer_1frsg_21 {
|
15960
|
-
margin-bottom: -0.2rem;
|
15961
|
-
}
|
15962
|
-
._container_5kpg1_1 {
|
15963
|
-
display: flex;
|
15964
|
-
flex-direction: row;
|
15965
|
-
flex-wrap: wrap;
|
15966
|
-
justify-content: flex-end;
|
15967
|
-
row-gap: 1em;
|
15968
|
-
}
|
15969
|
-
|
15970
|
-
._scoreWrapper_5kpg1_9 {
|
15971
|
-
display: flex;
|
15972
|
-
flex-direction: column;
|
15973
|
-
align-items: center;
|
15974
|
-
margin-left: 1em;
|
15975
|
-
}
|
15976
|
-
|
15977
|
-
._metricName_5kpg1_16 {
|
15978
|
-
width: 100%;
|
15979
|
-
font-weight: 300;
|
15980
|
-
border-bottom: solid var(--bs-border-color) 1px;
|
15981
|
-
}
|
15982
|
-
|
15983
|
-
._metricReducer_5kpg1_22 {
|
15984
|
-
width: 100%;
|
15985
|
-
font-weight: 300;
|
15986
|
-
}
|
15987
|
-
|
15988
|
-
._metricValues_5kpg1_27 {
|
15989
|
-
display: grid;
|
15990
|
-
grid-template-columns: max-content max-content;
|
15991
|
-
grid-gap: 0 0.3rem;
|
15992
|
-
}
|
15993
|
-
|
15994
|
-
._metricValue_5kpg1_27 {
|
15995
|
-
font-weight: 600;
|
15996
|
-
}
|
15997
|
-
._entry_12m5n_1 {
|
15998
|
-
display: flex;
|
15999
|
-
flex-direction: row;
|
16000
|
-
justify-content: space-between;
|
16007
|
+
._green_1iagp_12 {
|
16008
|
+
background-color: var(--bs-success);
|
16009
|
+
border-color: var(--bs-success);
|
16010
|
+
color: var(--bs-body-bg);
|
16001
16011
|
}
|
16002
16012
|
|
16003
|
-
.
|
16004
|
-
|
16005
|
-
|
16013
|
+
._red_1iagp_18 {
|
16014
|
+
background-color: var(--bs-danger);
|
16015
|
+
border-color: var(--bs-danger);
|
16016
|
+
color: var(--bs-body-bg);
|
16006
16017
|
}
|
16007
16018
|
|
16008
|
-
.
|
16009
|
-
|
16010
|
-
|
16011
|
-
|
16019
|
+
._orange_1iagp_24 {
|
16020
|
+
background-color: var(--bs-orange);
|
16021
|
+
border-color: var(--bs-orange);
|
16022
|
+
color: var(--bs-body-bg);
|
16012
16023
|
}
|
16013
|
-
|
16014
|
-
|
16015
|
-
margin-top: 1em;
|
16024
|
+
._flex_1kye9_1 {
|
16025
|
+
display: flex;
|
16016
16026
|
}
|
16017
16027
|
|
16018
|
-
.
|
16019
|
-
|
16020
|
-
|
16021
|
-
|
16022
|
-
column-gap: 1rem;
|
16023
|
-
justify-content: space-between;
|
16024
|
-
margin-top: 0em;
|
16025
|
-
}
|
16026
|
-
.tool-button i {
|
16027
|
-
margin-right: 0.5em;
|
16028
|
+
._label_1kye9_5 {
|
16029
|
+
align-self: center;
|
16030
|
+
margin-right: 0.3em;
|
16031
|
+
margin-left: 0.2em;
|
16028
16032
|
}
|
16029
16033
|
._container_15b4r_1 {
|
16030
16034
|
display: flex;
|
@@ -16086,6 +16090,18 @@ ul.jsondiffpatch-textdiff {
|
|
16086
16090
|
font-size: var(--inspect-font-size-small);
|
16087
16091
|
width: 100%;
|
16088
16092
|
}
|
16093
|
+
._panel_twp3v_1 {
|
16094
|
+
width: 100%;
|
16095
|
+
display: flex;
|
16096
|
+
justify-content: center;
|
16097
|
+
}
|
16098
|
+
|
16099
|
+
._container_twp3v_7 {
|
16100
|
+
margin-top: 3em;
|
16101
|
+
display: grid;
|
16102
|
+
grid-template-columns: max-content max-content;
|
16103
|
+
column-gap: 0.3em;
|
16104
|
+
}
|
16089
16105
|
._tabs_1qj7d_1 {
|
16090
16106
|
align-items: space-between;
|
16091
16107
|
}
|
@@ -16305,19 +16321,107 @@ ul.jsondiffpatch-textdiff {
|
|
16305
16321
|
._model_dbhwb_15 {
|
16306
16322
|
padding-right: 1em;
|
16307
16323
|
}
|
16308
|
-
.
|
16324
|
+
/* PulsingDots.module.css */
|
16325
|
+
._container_1rer0_2 {
|
16326
|
+
display: inline-flex;
|
16327
|
+
flex-direction: column;
|
16328
|
+
align-items: center;
|
16329
|
+
}
|
16330
|
+
|
16331
|
+
._dotsContainer_1rer0_8 {
|
16332
|
+
padding-top: 8px;
|
16333
|
+
display: flex;
|
16334
|
+
align-items: center;
|
16335
|
+
justify-content: center;
|
16336
|
+
}
|
16337
|
+
|
16338
|
+
._small_1rer0_15 ._dotsContainer_1rer0_8 {
|
16339
|
+
column-gap: 3px;
|
16340
|
+
}
|
16341
|
+
|
16342
|
+
._medium_1rer0_19 ._dotsContainer_1rer0_8 {
|
16343
|
+
column-gap: 5px;
|
16344
|
+
padding-bottom: 2px;
|
16345
|
+
}
|
16346
|
+
|
16347
|
+
._large_1rer0_24 ._dotsContainer_1rer0_8 {
|
16348
|
+
column-gap: 6px;
|
16349
|
+
padding-bottom: 3px;
|
16350
|
+
padding-left: 2px;
|
16351
|
+
}
|
16352
|
+
|
16353
|
+
._dot_1rer0_8 {
|
16354
|
+
border-radius: 50%;
|
16355
|
+
display: inline-block;
|
16356
|
+
animation: _pulse_1rer0_1 1.5s ease-in-out infinite;
|
16357
|
+
}
|
16358
|
+
|
16359
|
+
._subtle_1rer0_36 {
|
16360
|
+
background-color: var(--bs-primary-bg-subtle);
|
16361
|
+
}
|
16362
|
+
|
16363
|
+
._primary_1rer0_40 {
|
16364
|
+
background-color: var(--bs-primary);
|
16365
|
+
}
|
16366
|
+
|
16367
|
+
._small_1rer0_15 ._dot_1rer0_8 {
|
16368
|
+
width: 4px;
|
16369
|
+
height: 4px;
|
16370
|
+
}
|
16371
|
+
|
16372
|
+
._medium_1rer0_19 ._dot_1rer0_8 {
|
16373
|
+
width: 8px;
|
16374
|
+
height: 8px;
|
16375
|
+
}
|
16376
|
+
|
16377
|
+
._large_1rer0_24 ._dot_1rer0_8 {
|
16378
|
+
width: 12px;
|
16379
|
+
height: 12px;
|
16380
|
+
}
|
16381
|
+
|
16382
|
+
._visuallyHidden_1rer0_59 {
|
16383
|
+
position: absolute;
|
16384
|
+
width: 1px;
|
16385
|
+
height: 1px;
|
16386
|
+
padding: 0;
|
16387
|
+
margin: -1px;
|
16388
|
+
overflow: hidden;
|
16389
|
+
clip: rect(0, 0, 0, 0);
|
16390
|
+
white-space: nowrap;
|
16391
|
+
border-width: 0;
|
16392
|
+
}
|
16393
|
+
|
16394
|
+
@keyframes _pulse_1rer0_1 {
|
16395
|
+
0%,
|
16396
|
+
100% {
|
16397
|
+
transform: scale(1);
|
16398
|
+
opacity: 0.3;
|
16399
|
+
}
|
16400
|
+
50% {
|
16401
|
+
transform: scale(1.2);
|
16402
|
+
opacity: 1;
|
16403
|
+
}
|
16404
|
+
}
|
16405
|
+
._progressContainer_1cjjr_1 {
|
16309
16406
|
width: 100%;
|
16310
|
-
|
16407
|
+
display: flex;
|
16408
|
+
align-content: flex-start;
|
16409
|
+
justify-content: flex-start;
|
16410
|
+
margin-left: 2.5em;
|
16411
|
+
}
|
16412
|
+
|
16413
|
+
._progressText_1cjjr_9 {
|
16414
|
+
margin-left: 0.4em;
|
16311
16415
|
}
|
16312
|
-
.
|
16416
|
+
._tabPanel_cjf1d_1 {
|
16313
16417
|
padding-bottom: 1em;
|
16314
16418
|
}
|
16315
16419
|
|
16316
|
-
.
|
16420
|
+
._fullWidth_cjf1d_5 {
|
16317
16421
|
width: 100%;
|
16318
16422
|
}
|
16319
16423
|
|
16320
|
-
.
|
16424
|
+
._metadataPanel_cjf1d_9 {
|
16321
16425
|
display: flex;
|
16322
16426
|
flex-wrap: wrap;
|
16323
16427
|
align-items: stretch;
|
@@ -16326,26 +16430,30 @@ ul.jsondiffpatch-textdiff {
|
|
16326
16430
|
margin-top: 0.5em;
|
16327
16431
|
}
|
16328
16432
|
|
16329
|
-
.
|
16433
|
+
._padded_cjf1d_18 {
|
16330
16434
|
padding-left: 0.8em;
|
16331
16435
|
margin-top: 0.4em;
|
16332
16436
|
}
|
16333
16437
|
|
16334
|
-
.
|
16438
|
+
._ansi_cjf1d_23 {
|
16335
16439
|
margin: 1em 0;
|
16336
16440
|
}
|
16337
16441
|
|
16338
|
-
.
|
16442
|
+
._noTop_cjf1d_27 {
|
16339
16443
|
margin-top: 0;
|
16340
16444
|
}
|
16341
16445
|
|
16342
|
-
.
|
16446
|
+
._timePanel_cjf1d_31 {
|
16343
16447
|
display: grid;
|
16344
16448
|
grid-template-columns: max-content max-content;
|
16345
16449
|
grid-template-rows: auto;
|
16346
16450
|
column-gap: 0.5em;
|
16347
16451
|
min-width: 200px;
|
16348
16452
|
}
|
16453
|
+
|
16454
|
+
._chat_cjf1d_39 {
|
16455
|
+
padding-top: 1em;
|
16456
|
+
}
|
16349
16457
|
._flatBody_1uw6w_1 {
|
16350
16458
|
color: var(--bs-danger);
|
16351
16459
|
display: grid;
|
@@ -16366,15 +16474,15 @@ ul.jsondiffpatch-textdiff {
|
|
16366
16474
|
height: var(--inspect-font-size-base);
|
16367
16475
|
max-width: 30em;
|
16368
16476
|
}
|
16369
|
-
.
|
16477
|
+
._target_112n8_1 {
|
16370
16478
|
padding-left: 0;
|
16371
16479
|
}
|
16372
16480
|
|
16373
|
-
.
|
16481
|
+
._answer_112n8_5 {
|
16374
16482
|
padding-left: 0;
|
16375
16483
|
}
|
16376
16484
|
|
16377
|
-
.
|
16485
|
+
._grid_112n8_9 {
|
16378
16486
|
display: grid;
|
16379
16487
|
grid-column-gap: 0.5em;
|
16380
16488
|
border-bottom: solid var(--bs-border-color) 1px;
|
@@ -16382,18 +16490,22 @@ ul.jsondiffpatch-textdiff {
|
|
16382
16490
|
padding: 0em 1em 1em 1em;
|
16383
16491
|
}
|
16384
16492
|
|
16385
|
-
.
|
16493
|
+
._centerLabel_112n8_17 {
|
16386
16494
|
display: flex;
|
16387
16495
|
justify-content: center;
|
16388
16496
|
}
|
16389
16497
|
|
16390
|
-
.
|
16498
|
+
._wrap_112n8_22 {
|
16391
16499
|
word-wrap: anywhere;
|
16392
16500
|
}
|
16393
16501
|
|
16394
|
-
.
|
16502
|
+
._titled_112n8_26:hover {
|
16395
16503
|
cursor: pointer;
|
16396
16504
|
}
|
16505
|
+
|
16506
|
+
._value_112n8_30 {
|
16507
|
+
flex-direction: column;
|
16508
|
+
}
|
16397
16509
|
._title_19l1b_1 {
|
16398
16510
|
margin-left: 0.5em;
|
16399
16511
|
display: grid;
|
@@ -16461,49 +16573,53 @@ ul.jsondiffpatch-textdiff {
|
|
16461
16573
|
font-weight: 600;
|
16462
16574
|
padding-bottom: 0.3em;
|
16463
16575
|
}
|
16464
|
-
.
|
16576
|
+
._output_1bdt9_1 {
|
16465
16577
|
padding-top: 1em;
|
16466
16578
|
}
|
16467
16579
|
|
16468
|
-
.
|
16580
|
+
._container_1bdt9_5 {
|
16469
16581
|
margin: 0.5em 0;
|
16470
16582
|
width: 100%;
|
16471
16583
|
}
|
16472
16584
|
|
16473
|
-
.
|
16585
|
+
._all_1bdt9_10 {
|
16474
16586
|
display: grid;
|
16475
16587
|
grid-template-columns: 1fr 1fr 1fr;
|
16476
16588
|
column-gap: 1em;
|
16477
16589
|
}
|
16478
16590
|
|
16479
|
-
.
|
16591
|
+
._tableSelection_1bdt9_16 {
|
16480
16592
|
width: fit-content;
|
16481
16593
|
align-self: start;
|
16482
16594
|
justify-self: start;
|
16483
16595
|
}
|
16484
16596
|
|
16485
|
-
.
|
16597
|
+
._tools_1bdt9_22 {
|
16486
16598
|
grid-column: -1/1;
|
16487
16599
|
}
|
16488
16600
|
|
16489
|
-
.
|
16601
|
+
._codePre_1bdt9_26 {
|
16490
16602
|
background: var(--bs-light);
|
16491
16603
|
width: 100%;
|
16492
16604
|
padding: 0.5em;
|
16493
16605
|
border-radius: var(--bs-border-radius);
|
16494
16606
|
}
|
16495
16607
|
|
16496
|
-
.
|
16608
|
+
._code_1bdt9_26 {
|
16497
16609
|
white-space: pre-wrap !important;
|
16498
16610
|
word-wrap: anywhere !important;
|
16499
16611
|
}
|
16500
16612
|
|
16501
|
-
.
|
16613
|
+
._toolConfig_1bdt9_38 {
|
16502
16614
|
display: grid;
|
16503
16615
|
grid-template-columns: max-content auto;
|
16504
16616
|
column-gap: 1em;
|
16505
16617
|
row-gap: 0.5em;
|
16506
16618
|
}
|
16619
|
+
|
16620
|
+
._progress_1bdt9_45 {
|
16621
|
+
margin-left: 2em;
|
16622
|
+
}
|
16507
16623
|
._wrapper_45f60_1 {
|
16508
16624
|
display: grid;
|
16509
16625
|
grid-template-columns: 0 auto auto;
|
@@ -16555,6 +16671,38 @@ ul.jsondiffpatch-textdiff {
|
|
16555
16671
|
._metadata_1a3fk_21 {
|
16556
16672
|
margin: 0.5em 0;
|
16557
16673
|
}
|
16674
|
+
._contents_iwnfd_1 {
|
16675
|
+
margin-top: 0.5em;
|
16676
|
+
}
|
16677
|
+
|
16678
|
+
._contents_iwnfd_1 > :last-child {
|
16679
|
+
margin-bottom: 0;
|
16680
|
+
}
|
16681
|
+
|
16682
|
+
._twoColumn_iwnfd_9 {
|
16683
|
+
display: grid;
|
16684
|
+
grid-template-columns: auto 1fr;
|
16685
|
+
column-gap: 1.5em;
|
16686
|
+
}
|
16687
|
+
|
16688
|
+
._exec_iwnfd_15 {
|
16689
|
+
margin-top: 0.5em;
|
16690
|
+
}
|
16691
|
+
|
16692
|
+
._result_iwnfd_19 {
|
16693
|
+
margin-top: 0.5em;
|
16694
|
+
}
|
16695
|
+
|
16696
|
+
._fileLabel_iwnfd_23 {
|
16697
|
+
margin-top: 0;
|
16698
|
+
margin-bottom: 0;
|
16699
|
+
}
|
16700
|
+
|
16701
|
+
._wrapPre_iwnfd_28 {
|
16702
|
+
white-space: pre-wrap;
|
16703
|
+
word-wrap: break-word;
|
16704
|
+
overflow-wrap: break-word;
|
16705
|
+
}
|
16558
16706
|
._explanation_1ww42_1 {
|
16559
16707
|
display: grid;
|
16560
16708
|
grid-template-columns: max-content auto;
|
@@ -19113,47 +19261,19 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19113
19261
|
._subtaskLabel_ac4z2_17 {
|
19114
19262
|
padding: 0 2em;
|
19115
19263
|
}
|
19116
|
-
.
|
19264
|
+
._summary_1qsnv_1 {
|
19117
19265
|
margin: 0.5em 0;
|
19118
19266
|
width: 100%;
|
19119
19267
|
}
|
19120
19268
|
|
19121
|
-
.
|
19269
|
+
._approval_1qsnv_6 {
|
19122
19270
|
border: none;
|
19123
19271
|
padding: 0;
|
19124
19272
|
margin-bottom: 0;
|
19125
19273
|
}
|
19126
|
-
._contents_iwnfd_1 {
|
19127
|
-
margin-top: 0.5em;
|
19128
|
-
}
|
19129
|
-
|
19130
|
-
._contents_iwnfd_1 > :last-child {
|
19131
|
-
margin-bottom: 0;
|
19132
|
-
}
|
19133
|
-
|
19134
|
-
._twoColumn_iwnfd_9 {
|
19135
|
-
display: grid;
|
19136
|
-
grid-template-columns: auto 1fr;
|
19137
|
-
column-gap: 1.5em;
|
19138
|
-
}
|
19139
|
-
|
19140
|
-
._exec_iwnfd_15 {
|
19141
|
-
margin-top: 0.5em;
|
19142
|
-
}
|
19143
|
-
|
19144
|
-
._result_iwnfd_19 {
|
19145
|
-
margin-top: 0.5em;
|
19146
|
-
}
|
19147
|
-
|
19148
|
-
._fileLabel_iwnfd_23 {
|
19149
|
-
margin-top: 0;
|
19150
|
-
margin-bottom: 0;
|
19151
|
-
}
|
19152
19274
|
|
19153
|
-
.
|
19154
|
-
|
19155
|
-
word-wrap: break-word;
|
19156
|
-
overflow-wrap: break-word;
|
19275
|
+
._progress_1qsnv_12 {
|
19276
|
+
margin-left: 0.5em;
|
19157
19277
|
}
|
19158
19278
|
._darkenedBg_c8m1t_1 {
|
19159
19279
|
background-color: var(--bs-light-bg-subtle);
|
@@ -19204,14 +19324,38 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19204
19324
|
._eventNodeContainer_c8m1t_43._noBottom_c8m1t_47 {
|
19205
19325
|
padding-bottom: 0;
|
19206
19326
|
}
|
19207
|
-
.
|
19208
|
-
|
19327
|
+
._darkenedBg_1ye6u_1 {
|
19328
|
+
background-color: var(--bs-light-bg-subtle);
|
19329
|
+
}
|
19330
|
+
|
19331
|
+
._normalBg_1ye6u_5 {
|
19332
|
+
background-color: var(--bs-body-bg);
|
19333
|
+
}
|
19334
|
+
|
19335
|
+
._node_1ye6u_9._first_1ye6u_9 {
|
19336
|
+
padding-top: 0.5em;
|
19337
|
+
}
|
19338
|
+
|
19339
|
+
._node_1ye6u_9 {
|
19340
|
+
padding-top: 0;
|
19341
|
+
padding-bottom: 0.5em;
|
19342
|
+
}
|
19343
|
+
._container_kgsc6_1 {
|
19209
19344
|
width: 100%;
|
19345
|
+
display: flex;
|
19346
|
+
flex-direction: column;
|
19210
19347
|
}
|
19211
19348
|
|
19212
|
-
.
|
19349
|
+
._body_kgsc6_7 {
|
19213
19350
|
margin: 1em 1em 1em 1em;
|
19214
19351
|
}
|
19352
|
+
|
19353
|
+
._scroller_kgsc6_11 {
|
19354
|
+
overflow-y: auto;
|
19355
|
+
width: 100%;
|
19356
|
+
height: 100%;
|
19357
|
+
position: relative;
|
19358
|
+
}
|
19215
19359
|
._title_yj2nt_1 {
|
19216
19360
|
flex: 1 1 auto;
|
19217
19361
|
}
|
@@ -19326,7 +19470,7 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19326
19470
|
._message_5y0hl_15 {
|
19327
19471
|
width: 300px;
|
19328
19472
|
}
|
19329
|
-
.
|
19473
|
+
._grid_2k7ov_1 {
|
19330
19474
|
display: grid;
|
19331
19475
|
padding-top: 1em;
|
19332
19476
|
padding-bottom: 1em;
|
@@ -19338,42 +19482,66 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19338
19482
|
padding-right: 1rem;
|
19339
19483
|
}
|
19340
19484
|
|
19341
|
-
.
|
19485
|
+
._selected_2k7ov_13 {
|
19342
19486
|
box-shadow: inset 0 0 0px 2px var(--bs-focus-ring-color);
|
19343
19487
|
}
|
19344
19488
|
|
19345
|
-
.
|
19489
|
+
._cell_2k7ov_17 {
|
19346
19490
|
padding-left: 0;
|
19347
19491
|
padding-right: 0;
|
19348
19492
|
}
|
19349
19493
|
|
19350
|
-
.
|
19494
|
+
._wrapAnywhere_2k7ov_22 {
|
19351
19495
|
word-wrap: anywhere;
|
19352
19496
|
}
|
19353
19497
|
|
19354
|
-
.
|
19498
|
+
._noLeft_2k7ov_26 {
|
19355
19499
|
padding-left: 0;
|
19356
19500
|
}
|
19357
19501
|
|
19358
|
-
.
|
19502
|
+
._score_2k7ov_30 {
|
19359
19503
|
display: flex;
|
19360
19504
|
justify-self: center;
|
19361
19505
|
}
|
19506
|
+
|
19507
|
+
._spinner_2k7ov_35 {
|
19508
|
+
height: 1.4em;
|
19509
|
+
width: 1.4em;
|
19510
|
+
color: var(--bs-focus-ring-color);
|
19511
|
+
}
|
19362
19512
|
._row_utdq5_1 {
|
19363
19513
|
padding: 0.25em 1em 0.25em 1em;
|
19364
19514
|
text-transform: uppercase;
|
19365
19515
|
font-weight: 600;
|
19366
19516
|
border-bottom: solid 1px var(--bs-border-color);
|
19367
19517
|
}
|
19368
|
-
.
|
19518
|
+
._footer_symcv_1 {
|
19369
19519
|
border-top: solid var(--bs-light-border-subtle) 1px;
|
19370
19520
|
background: var(--bs-light-bg-subtle);
|
19371
19521
|
display: grid;
|
19372
|
-
grid-template-columns: max-content;
|
19373
|
-
justify-content:
|
19374
|
-
|
19522
|
+
grid-template-columns: max-content max-content;
|
19523
|
+
justify-content: space-between;
|
19524
|
+
|
19375
19525
|
padding: 0.2em 1em;
|
19376
19526
|
}
|
19527
|
+
|
19528
|
+
._spinnerContainer_symcv_11 {
|
19529
|
+
display: grid;
|
19530
|
+
grid-template-columns: max-content max-content;
|
19531
|
+
column-gap: 0.3em;
|
19532
|
+
padding-top: 0.2em;
|
19533
|
+
}
|
19534
|
+
|
19535
|
+
._spinner_symcv_11 {
|
19536
|
+
height: 11px;
|
19537
|
+
width: 11px;
|
19538
|
+
color: var(--bs-secondary);
|
19539
|
+
border-width: 1px;
|
19540
|
+
}
|
19541
|
+
|
19542
|
+
._label_symcv_25 {
|
19543
|
+
margin-top: -4px;
|
19544
|
+
}
|
19377
19545
|
._header_16ngy_1 {
|
19378
19546
|
display: grid;
|
19379
19547
|
padding-bottom: 0.3em;
|
@@ -19398,6 +19566,28 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19398
19566
|
flex-direction: column;
|
19399
19567
|
width: 100%;
|
19400
19568
|
}
|
19569
|
+
._panel_1yknn_1 {
|
19570
|
+
width: 100%;
|
19571
|
+
display: flex;
|
19572
|
+
justify-content: center;
|
19573
|
+
}
|
19574
|
+
|
19575
|
+
._container_1yknn_7 {
|
19576
|
+
margin-top: 3em;
|
19577
|
+
display: grid;
|
19578
|
+
grid-template-columns: max-content max-content;
|
19579
|
+
column-gap: 0.3em;
|
19580
|
+
}
|
19581
|
+
|
19582
|
+
._spinner_1yknn_14 {
|
19583
|
+
border-width: 1px;
|
19584
|
+
height: 15px;
|
19585
|
+
width: 15px;
|
19586
|
+
}
|
19587
|
+
|
19588
|
+
._text_1yknn_20 {
|
19589
|
+
margin-top: -2px;
|
19590
|
+
}
|
19401
19591
|
._item_1uzhd_1 {
|
19402
19592
|
margin-bottom: 0em;
|
19403
19593
|
}
|
@@ -19547,59 +19737,60 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19547
19737
|
._copyButton_1goi8_1:hover {
|
19548
19738
|
opacity: 0.75;
|
19549
19739
|
}
|
19550
|
-
.
|
19740
|
+
._container_14b93_1 {
|
19551
19741
|
display: flex;
|
19552
19742
|
padding-top: 0;
|
19553
19743
|
margin-left: 0.5rem;
|
19554
19744
|
min-width: 250px;
|
19555
19745
|
}
|
19556
19746
|
|
19557
|
-
.
|
19747
|
+
._wrapper_14b93_8 {
|
19558
19748
|
display: grid;
|
19559
19749
|
grid-template-columns: minmax(auto, 1fr) 1fr;
|
19560
19750
|
width: 100%;
|
19561
19751
|
}
|
19562
19752
|
|
19563
|
-
.
|
19753
|
+
._toggle_14b93_14 {
|
19564
19754
|
padding: 0rem 0.1rem 0.1rem 0rem;
|
19565
19755
|
display: flex;
|
19566
19756
|
}
|
19567
19757
|
|
19568
|
-
.
|
19758
|
+
._body_14b93_19 {
|
19569
19759
|
display: flex;
|
19570
19760
|
flex-direction: column;
|
19571
19761
|
margin-left: 0.2rem;
|
19572
19762
|
}
|
19573
19763
|
|
19574
|
-
.
|
19764
|
+
._bodyContainer_14b93_25 {
|
19575
19765
|
margin-top: 0.1rem;
|
19576
19766
|
display: grid;
|
19577
19767
|
grid-template-columns: minmax(30px, max-content) minmax(100px, max-content);
|
19578
19768
|
}
|
19579
19769
|
|
19580
|
-
.
|
19770
|
+
._taskTitle_14b93_31 {
|
19581
19771
|
font-weight: 600;
|
19582
19772
|
margin-right: 0.3rem;
|
19583
19773
|
}
|
19584
19774
|
|
19585
|
-
.
|
19775
|
+
._taskModel_14b93_36 {
|
19586
19776
|
padding-top: 0.4rem;
|
19587
19777
|
}
|
19588
19778
|
|
19589
|
-
.
|
19779
|
+
._taskStatus_14b93_40 {
|
19780
|
+
display: flex;
|
19590
19781
|
justify-content: end;
|
19591
19782
|
margin-right: 1em;
|
19592
19783
|
margin-bottom: 0;
|
19593
19784
|
}
|
19594
19785
|
|
19595
|
-
.
|
19786
|
+
._secondaryContainer_14b93_47 {
|
19596
19787
|
opacity: 0.7;
|
19597
19788
|
margin-top: 0.1rem;
|
19598
19789
|
padding-bottom: 0;
|
19599
19790
|
display: grid;
|
19600
19791
|
grid-template-columns: minmax(0, max-content) max-content;
|
19601
19792
|
}
|
19602
|
-
.
|
19793
|
+
._simpleMetricsRows_qy19p_1 {
|
19603
19794
|
display: flex;
|
19604
19795
|
flex-direction: row;
|
19605
19796
|
flex-wrap: wrap;
|
@@ -19610,7 +19801,7 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19610
19801
|
overflow: scroll;
|
19611
19802
|
}
|
19612
19803
|
|
19613
|
-
.
|
19804
|
+
._multiMetricsRows_qy19p_12 {
|
19614
19805
|
display: flex;
|
19615
19806
|
flex-direction: row;
|
19616
19807
|
flex-wrap: wrap;
|
@@ -19624,14 +19815,14 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19624
19815
|
align-items: baseline;
|
19625
19816
|
}
|
19626
19817
|
|
19627
|
-
.
|
19818
|
+
._verticalMetricReducer_qy19p_26 {
|
19628
19819
|
font-size: var(--inspect-font-size-smaller);
|
19629
19820
|
text-align: center;
|
19630
19821
|
padding-top: 0.3rem;
|
19631
19822
|
margin-bottom: -0.3rem;
|
19632
19823
|
}
|
19633
19824
|
|
19634
|
-
.
|
19825
|
+
._verticalMetricName_qy19p_33 {
|
19635
19826
|
font-size: var(--inspect-font-size-smaller);
|
19636
19827
|
text-align: center;
|
19637
19828
|
padding-top: 0.3rem;
|
@@ -19639,36 +19830,35 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19639
19830
|
border-bottom: solid var(--bs-border-color) 1px;
|
19640
19831
|
}
|
19641
19832
|
|
19642
|
-
.
|
19833
|
+
._verticalMetricValue_qy19p_41 {
|
19643
19834
|
font-weight: 500;
|
19644
19835
|
text-align: center;
|
19645
19836
|
}
|
19646
19837
|
|
19647
|
-
.
|
19838
|
+
._multiScorer_qy19p_46 {
|
19648
19839
|
padding-left: 0;
|
19649
|
-
height: 100%;
|
19650
19840
|
display: flex;
|
19651
19841
|
flex-direction: column;
|
19652
19842
|
padding: 0.5em 1em;
|
19653
19843
|
}
|
19654
19844
|
|
19655
|
-
.
|
19845
|
+
._multiScorerIndent_qy19p_53 {
|
19656
19846
|
padding-left: 1.5em;
|
19657
19847
|
}
|
19658
19848
|
|
19659
|
-
.
|
19849
|
+
._multiScorerReducer_qy19p_57 {
|
19660
19850
|
text-align: center;
|
19661
19851
|
margin-bottom: -0.3rem;
|
19662
19852
|
margin-top: 0.2em;
|
19663
19853
|
}
|
19664
19854
|
|
19665
|
-
.
|
19855
|
+
._multiScorerLabel_qy19p_63 {
|
19666
19856
|
text-align: center;
|
19667
19857
|
border-bottom: solid var(--bs-border-color) 1px;
|
19668
19858
|
margin-bottom: -0.1rem;
|
19669
19859
|
}
|
19670
19860
|
|
19671
|
-
.
|
19861
|
+
._multiScorerValue_qy19p_69 {
|
19672
19862
|
display: grid;
|
19673
19863
|
grid-template-columns: auto auto;
|
19674
19864
|
grid-auto-rows: auto;
|
@@ -19677,18 +19867,50 @@ span.ap-marker-container:hover span.ap-marker {
|
|
19677
19867
|
padding-top: 0.3em;
|
19678
19868
|
}
|
19679
19869
|
|
19680
|
-
.
|
19870
|
+
._multiScorerValueContent_qy19p_78 {
|
19681
19871
|
font-weight: 600;
|
19682
19872
|
text-align: center;
|
19683
19873
|
}
|
19684
19874
|
|
19685
|
-
.
|
19875
|
+
._multiScoreMetricGrid_qy19p_83 {
|
19686
19876
|
display: grid;
|
19687
19877
|
grid-template-rows: auto auto;
|
19688
19878
|
column-gap: 1em;
|
19689
19879
|
padding: 0 0.2em;
|
19690
19880
|
justify-content: center;
|
19691
19881
|
}
|
19882
|
+
._statusContainer_1sckj_1 {
|
19883
|
+
display: inline-block;
|
19884
|
+
margin-top: 0.3em;
|
19885
|
+
}
|
19886
|
+
|
19887
|
+
._status_1sckj_1 {
|
19888
|
+
display: grid;
|
19889
|
+
grid-template-columns: auto auto;
|
19890
|
+
}
|
19891
|
+
|
19892
|
+
._statusText_1sckj_11 {
|
19893
|
+
margin-top: 0.2em;
|
19894
|
+
}
|
19895
|
+
|
19896
|
+
._metricsRows_1sckj_15 {
|
19897
|
+
margin-top: 0.3em;
|
19898
|
+
margin-left: 1.25em;
|
19899
|
+
display: grid;
|
19900
|
+
grid-template-columns: auto auto;
|
19901
|
+
grid-template-rows: auto;
|
19902
|
+
column-gap: 0.5em;
|
19903
|
+
}
|
19904
|
+
|
19905
|
+
._icon_1sckj_24 {
|
19906
|
+
font-size: var(--inspect-font-size-large);
|
19907
|
+
margin-right: 0.3em;
|
19908
|
+
margin-top: -0.1em;
|
19909
|
+
}
|
19910
|
+
|
19911
|
+
._value_1sckj_30 {
|
19912
|
+
font-weight: 600;
|
19913
|
+
}
|
19692
19914
|
._statusPanel_66f9o_1 {
|
19693
19915
|
padding: 1em;
|
19694
19916
|
margin-top: 0.5em;
|