@meridianlabs/log-viewer 0.3.235 → 0.3.237
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.
- package/lib/{AsciinemaPlayerImpl-6ZAkt1g5.js → AsciinemaPlayerImpl-CskuZpHl.js} +5 -5
- package/lib/{AsciinemaPlayerImpl-6ZAkt1g5.js.map → AsciinemaPlayerImpl-CskuZpHl.js.map} +1 -1
- package/lib/index.js +7792 -9505
- package/lib/index.js.map +1 -1
- package/lib/src/app/App.d.ts.map +1 -1
- package/lib/src/app/log-view/LogViewContainer.d.ts.map +1 -1
- package/lib/src/app/log-view/tabs/InfoTab.d.ts +5 -7
- package/lib/src/app/log-view/tabs/InfoTab.d.ts.map +1 -1
- package/lib/src/app/log-view/tabs/ModelsTab.d.ts +5 -7
- package/lib/src/app/log-view/tabs/ModelsTab.d.ts.map +1 -1
- package/lib/src/app/log-view/tabs/TaskTab.d.ts +5 -7
- package/lib/src/app/log-view/tabs/TaskTab.d.ts.map +1 -1
- package/lib/src/app/navbar/ApplicationNavbar.d.ts.map +1 -1
- package/lib/src/app/samples/SampleDisplay.d.ts.map +1 -1
- package/lib/src/app/samples/list/samplesView.converters.d.ts +7 -7
- package/lib/src/app/samples/list/samplesView.converters.d.ts.map +1 -1
- package/lib/src/app/samples/list/samplesView.d.ts +3 -5
- package/lib/src/app/samples/list/samplesView.d.ts.map +1 -1
- package/lib/src/app/samples/list/useSamplesView.d.ts +1 -1
- package/lib/src/app/shared/samples-grid/colorScale.d.ts +1 -1
- package/lib/src/app/types.d.ts +3 -3
- package/lib/src/app/types.d.ts.map +1 -1
- package/lib/src/state/appSlice.d.ts +4 -3
- package/lib/src/state/appSlice.d.ts.map +1 -1
- package/lib/src/state/hooks.d.ts +10 -8
- package/lib/src/state/hooks.d.ts.map +1 -1
- package/lib/src/state/logsSlice.d.ts +1 -1
- package/lib/src/state/userSettings.d.ts +22 -0
- package/lib/src/state/userSettings.d.ts.map +1 -0
- package/lib/src/theme/bootstrap.d.ts +2 -0
- package/lib/src/theme/bootstrap.d.ts.map +1 -0
- package/lib/src/theme/constants.d.ts +2 -0
- package/lib/src/theme/constants.d.ts.map +1 -0
- package/lib/styles/index.css +583 -149
- package/package.json +16 -17
package/lib/styles/index.css
CHANGED
|
@@ -14336,6 +14336,179 @@ pre[class*="language-"] {
|
|
|
14336
14336
|
/* Inspect Glass */
|
|
14337
14337
|
--inspect-glass-color: #000000;
|
|
14338
14338
|
--inspect-glass-opacity: 0.3;
|
|
14339
|
+
|
|
14340
|
+
/* Tool messages — dedicated tokens so apps (and the vscode bridge) can
|
|
14341
|
+
re-skin tool calls/outputs/errors without patching component CSS.
|
|
14342
|
+
Defaults reproduce the previous hard-coded appearance. */
|
|
14343
|
+
--inspect-tool-description-color: var(--bs-secondary-color);
|
|
14344
|
+
--inspect-tool-output-bg: #f8f8f8;
|
|
14345
|
+
--inspect-tool-output-color: inherit;
|
|
14346
|
+
--inspect-tool-output-border: var(--bs-border-color);
|
|
14347
|
+
--inspect-tool-error-color: var(--bs-danger);
|
|
14348
|
+
--inspect-tool-error-bg: rgba(var(--bs-danger-rgb), 0.06);
|
|
14349
|
+
|
|
14350
|
+
/* Readable-variant role bands (light base). These tokens are DEFINED
|
|
14351
|
+
always but only APPLIED under [data-theme-variant="readable"], so the
|
|
14352
|
+
default design-consistent look is untouched — this is the "one small
|
|
14353
|
+
override block per base mode" instead of a duplicated stylesheet. */
|
|
14354
|
+
--inspect-readable-user-bg: #f1eeea;
|
|
14355
|
+
--inspect-readable-user-border: #857f78;
|
|
14356
|
+
--inspect-readable-assistant-bg: #f6f1fe;
|
|
14357
|
+
--inspect-readable-assistant-border: #694a8a;
|
|
14358
|
+
--inspect-readable-thinking-bg: #f7f2ff;
|
|
14359
|
+
--inspect-readable-thinking-border: #8a74c4;
|
|
14360
|
+
--inspect-readable-tool-call-bg: #edf4fb;
|
|
14361
|
+
--inspect-readable-tool-call-border: #415e79;
|
|
14362
|
+
--inspect-readable-system-bg: #fdfdfd;
|
|
14363
|
+
--inspect-readable-system-border: #a9abaf;
|
|
14364
|
+
--inspect-readable-body-color: #11181f;
|
|
14365
|
+
|
|
14366
|
+
/* Message-label chip. */
|
|
14367
|
+
--inspect-msg-label-bg: #f3f3f6;
|
|
14368
|
+
--inspect-msg-label-bg-hover: #ebebef;
|
|
14369
|
+
--inspect-msg-label-border: #e4e4e9;
|
|
14370
|
+
--inspect-msg-label-text: #5f5f68;
|
|
14371
|
+
}
|
|
14372
|
+
|
|
14373
|
+
:root[data-bs-theme="dark"] {
|
|
14374
|
+
--inspect-msg-label-bg: #2a2a2e;
|
|
14375
|
+
--inspect-msg-label-bg-hover: #33333a;
|
|
14376
|
+
--inspect-msg-label-border: #3a3a40;
|
|
14377
|
+
--inspect-msg-label-text: #b4b4bd;
|
|
14378
|
+
|
|
14379
|
+
--inspect-readable-user-bg: #262421;
|
|
14380
|
+
--inspect-readable-user-border: #8e8881;
|
|
14381
|
+
--inspect-readable-assistant-bg: #251f2c;
|
|
14382
|
+
--inspect-readable-assistant-border: #9575b9;
|
|
14383
|
+
--inspect-readable-thinking-bg: #241f31;
|
|
14384
|
+
--inspect-readable-thinking-border: #8c7fbf;
|
|
14385
|
+
--inspect-readable-tool-call-bg: #1c232a;
|
|
14386
|
+
--inspect-readable-tool-call-border: #6c8aa7;
|
|
14387
|
+
--inspect-readable-system-bg: #0a0b0d;
|
|
14388
|
+
--inspect-readable-system-border: #67696f;
|
|
14389
|
+
--inspect-readable-body-color: #e6e8ea;
|
|
14390
|
+
}
|
|
14391
|
+
|
|
14392
|
+
/* Readable variant: trade design consistency for transcript scannability —
|
|
14393
|
+
each turn gets a distinct tinted band + accent rule, and the tool tokens
|
|
14394
|
+
are pointed at the higher-contrast role colors. Roles are read off the
|
|
14395
|
+
`data-message-role` / `data-content-kind` attributes the chat components
|
|
14396
|
+
already emit (no per-role classes, no duplicated styles). */
|
|
14397
|
+
:root[data-theme-variant="readable"] {
|
|
14398
|
+
--bs-body-color: var(--inspect-readable-body-color);
|
|
14399
|
+
}
|
|
14400
|
+
|
|
14401
|
+
:root[data-theme-variant="readable"] [data-message-role] {
|
|
14402
|
+
border-left: 3px solid transparent;
|
|
14403
|
+
}
|
|
14404
|
+
|
|
14405
|
+
:root[data-theme-variant="readable"] [data-message-role="user"] {
|
|
14406
|
+
background-color: var(--inspect-readable-user-bg);
|
|
14407
|
+
border-left-color: var(--inspect-readable-user-border);
|
|
14408
|
+
}
|
|
14409
|
+
|
|
14410
|
+
:root[data-theme-variant="readable"] [data-message-role="assistant"] {
|
|
14411
|
+
background-color: var(--inspect-readable-assistant-bg);
|
|
14412
|
+
border-left-color: var(--inspect-readable-assistant-border);
|
|
14413
|
+
}
|
|
14414
|
+
|
|
14415
|
+
/* The boxed "surface" of a tool call is the raw-content pre
|
|
14416
|
+
(pre.tool-call-input) or the eval-provided view container
|
|
14417
|
+
(div.tool-call-input). Box the surface itself — a tinted call-out with a
|
|
14418
|
+
colored left accent (standalone transcript) — so free-form custom views get
|
|
14419
|
+
the same treatment as code views. */
|
|
14420
|
+
:root[data-theme-variant="readable"] pre.tool-call-input,
|
|
14421
|
+
:root[data-theme-variant="readable"] div.tool-call-input {
|
|
14422
|
+
background-color: var(--inspect-readable-tool-call-bg);
|
|
14423
|
+
border: 1px solid var(--bs-light-border-subtle);
|
|
14424
|
+
border-left: 3px solid var(--inspect-readable-tool-call-border);
|
|
14425
|
+
border-radius: var(--bs-border-radius);
|
|
14426
|
+
padding: 0.5em !important;
|
|
14427
|
+
}
|
|
14428
|
+
|
|
14429
|
+
/* Flatten a fenced code block inside a view — the surface carries the box. */
|
|
14430
|
+
:root[data-theme-variant="readable"] .tool-call-input pre[class*="language-"] {
|
|
14431
|
+
background-color: transparent !important;
|
|
14432
|
+
border: 0 !important;
|
|
14433
|
+
border-radius: 0;
|
|
14434
|
+
margin: 0 !important;
|
|
14435
|
+
padding: 0 !important;
|
|
14436
|
+
}
|
|
14437
|
+
|
|
14438
|
+
/* Nested in a message band: neutral surface with a subtle (not colored) left,
|
|
14439
|
+
since the surrounding band already frames the turn. The un-embedded tool box
|
|
14440
|
+
and standalone transcript tool events keep the colored call surface. */
|
|
14441
|
+
:root[data-theme-variant="readable"] [data-message-role] pre.tool-call-input,
|
|
14442
|
+
:root[data-theme-variant="readable"] [data-message-role] div.tool-call-input {
|
|
14443
|
+
background-color: var(--inspect-tool-output-bg);
|
|
14444
|
+
border-left: 1px solid var(--bs-light-border-subtle);
|
|
14445
|
+
}
|
|
14446
|
+
|
|
14447
|
+
/* The tool call is its own peer block: under readable the whole box is the blue
|
|
14448
|
+
call surface (header + input). */
|
|
14449
|
+
:root[data-theme-variant="readable"] [data-message-kind="tool"] {
|
|
14450
|
+
background-color: var(--inspect-readable-tool-call-bg);
|
|
14451
|
+
border-left: 3px solid var(--inspect-readable-tool-call-border);
|
|
14452
|
+
}
|
|
14453
|
+
|
|
14454
|
+
/* Flush the call input AND the output to the box padding edge in EVERY theme so
|
|
14455
|
+
they line up. The input otherwise carries ToolInput's .toolView padding (and,
|
|
14456
|
+
under readable, the .tool-call-input padding) plus the prism code block's own
|
|
14457
|
+
padding/margin, over-indenting it relative to the output. The `:root` prefix
|
|
14458
|
+
lifts specificity above the readable .tool-call-input rule. */
|
|
14459
|
+
:root [data-message-kind="tool"] pre.tool-call-input,
|
|
14460
|
+
:root [data-message-kind="tool"] div.tool-call-input {
|
|
14461
|
+
border: 0;
|
|
14462
|
+
border-radius: 0;
|
|
14463
|
+
padding: 0 !important;
|
|
14464
|
+
}
|
|
14465
|
+
:root [data-message-kind="tool"] .tool-call-input pre[class*="language-"] {
|
|
14466
|
+
margin: 0 !important;
|
|
14467
|
+
padding: 0 !important;
|
|
14468
|
+
}
|
|
14469
|
+
:root [data-message-kind="tool-result"] .tool-output {
|
|
14470
|
+
margin: 0 !important;
|
|
14471
|
+
padding: 0 !important;
|
|
14472
|
+
}
|
|
14473
|
+
:root[data-theme-variant="readable"]
|
|
14474
|
+
[data-message-kind="tool"]
|
|
14475
|
+
pre.tool-call-input,
|
|
14476
|
+
:root[data-theme-variant="readable"]
|
|
14477
|
+
[data-message-kind="tool"]
|
|
14478
|
+
div.tool-call-input {
|
|
14479
|
+
background-color: transparent;
|
|
14480
|
+
}
|
|
14481
|
+
|
|
14482
|
+
/* The tool output attaches beneath its call — a light-gray box that shares the
|
|
14483
|
+
call's blue left gutter so the pair reads as one connected card. */
|
|
14484
|
+
:root[data-theme-variant="readable"] [data-message-kind="tool-result"] {
|
|
14485
|
+
background-color: var(--inspect-tool-output-bg);
|
|
14486
|
+
border-left: 3px solid var(--inspect-readable-tool-call-border);
|
|
14487
|
+
}
|
|
14488
|
+
:root[data-theme-variant="readable"]
|
|
14489
|
+
[data-message-kind="tool-result"]
|
|
14490
|
+
.tool-output {
|
|
14491
|
+
background-color: transparent;
|
|
14492
|
+
border: 0;
|
|
14493
|
+
border-radius: 0;
|
|
14494
|
+
}
|
|
14495
|
+
|
|
14496
|
+
/* Light subtle box around tool output (standalone transcript tool events). */
|
|
14497
|
+
:root[data-theme-variant="readable"] .tool-output {
|
|
14498
|
+
border: 1px solid var(--bs-light-border-subtle);
|
|
14499
|
+
border-radius: var(--bs-border-radius);
|
|
14500
|
+
}
|
|
14501
|
+
|
|
14502
|
+
:root[data-theme-variant="readable"] [data-message-role="system"] {
|
|
14503
|
+
background-color: var(--inspect-readable-system-bg);
|
|
14504
|
+
border-left-color: var(--inspect-readable-system-border);
|
|
14505
|
+
}
|
|
14506
|
+
|
|
14507
|
+
/* Agent thinking, nested inside an assistant turn, gets a subtle tint so
|
|
14508
|
+
reasoning is visually separable from the model's actual response. No left
|
|
14509
|
+
accent — nested inside the assistant band it reads as a strong double gutter.*/
|
|
14510
|
+
:root[data-theme-variant="readable"] [data-content-kind="reasoning"] {
|
|
14511
|
+
background-color: var(--inspect-readable-thinking-bg);
|
|
14339
14512
|
}
|
|
14340
14513
|
|
|
14341
14514
|
body:not([class^="vscode-"]) button {
|
|
@@ -14460,8 +14633,15 @@ a:hover {
|
|
|
14460
14633
|
}
|
|
14461
14634
|
|
|
14462
14635
|
body[class^="vscode-"] {
|
|
14463
|
-
|
|
14464
|
-
|
|
14636
|
+
/* Tool message tokens bridged to VS Code's editor widget palette so tool
|
|
14637
|
+
calls read as embedded editor panels inside the IDE. */
|
|
14638
|
+
--inspect-tool-description-color: var(--vscode-descriptionForeground);
|
|
14639
|
+
--inspect-tool-output-bg: var(--vscode-textCodeBlock-background);
|
|
14640
|
+
--inspect-tool-output-color: var(--vscode-editor-foreground);
|
|
14641
|
+
--inspect-tool-output-border: var(--vscode-editorWidget-border);
|
|
14642
|
+
--inspect-tool-error-color: var(--vscode-errorForeground);
|
|
14643
|
+
--inspect-tool-error-bg: var(--vscode-inputValidation-errorBackground);
|
|
14644
|
+
|
|
14465
14645
|
--bs-body-bg: var(--vscode-editor-background);
|
|
14466
14646
|
--bs-secondary-bg-subtle: var(--vscode-editorHoverWidget-background);
|
|
14467
14647
|
--bs-tertiary-bg: var(--vscode-list-hoverBackground);
|
|
@@ -15252,20 +15432,41 @@ table.table.table-sm td {
|
|
|
15252
15432
|
}
|
|
15253
15433
|
|
|
15254
15434
|
pre[class*="language-"],
|
|
15255
|
-
.markdown-content pre[class*="language-"]
|
|
15435
|
+
.markdown-content pre[class*="language-"] {
|
|
15436
|
+
background-color: #f8f8f8;
|
|
15437
|
+
}
|
|
15438
|
+
|
|
15439
|
+
/* The `.tool-output` family is the canonical styling hook for tool message
|
|
15440
|
+
output (the CSS-module `.textOutput` also carries this class). Drive it
|
|
15441
|
+
off the tokens so the vscode bridge / apps can re-skin it; defaults below
|
|
15442
|
+
reproduce the previous #f8f8f8 / #333333 appearance. This rule must own
|
|
15443
|
+
the color so the higher-specificity `.vscode-dark .tool-output` rule
|
|
15444
|
+
that used to hard-code #333333 no longer shadows the token. */
|
|
15256
15445
|
pre[class*="language-"].tool-output,
|
|
15257
15446
|
.tool-output {
|
|
15258
|
-
background-color:
|
|
15447
|
+
background-color: var(--inspect-tool-output-bg);
|
|
15448
|
+
color: var(--inspect-tool-output-color);
|
|
15259
15449
|
}
|
|
15260
15450
|
|
|
15261
15451
|
.vscode-dark pre[class*="language-"],
|
|
15262
15452
|
.vscode-dark .model-call pre[class*="language-"],
|
|
15263
|
-
.vscode-dark .markdown-content pre[class*="language-"]
|
|
15264
|
-
.vscode-dark pre[class*="language-"].tool-output,
|
|
15265
|
-
.vscode-dark .tool-output {
|
|
15453
|
+
.vscode-dark .markdown-content pre[class*="language-"] {
|
|
15266
15454
|
background-color: #333333;
|
|
15267
15455
|
}
|
|
15268
15456
|
|
|
15457
|
+
/* PrismJS's stock theme (prismjs/themes/prism.css) hardcodes a light-blue
|
|
15458
|
+
`#b3d4fc` selection on code blocks, which is washed out on the dark code
|
|
15459
|
+
background above. Override it in dark with the editor selection token (same
|
|
15460
|
+
as CodeMirror's selection) so highlighted code matches. Scoped to .vscode-dark
|
|
15461
|
+
and mirroring Prism's selector set so it wins on specificity regardless of
|
|
15462
|
+
stylesheet order; light mode keeps Prism's default. */
|
|
15463
|
+
.vscode-dark code[class*="language-"]::selection,
|
|
15464
|
+
.vscode-dark code[class*="language-"] ::selection,
|
|
15465
|
+
.vscode-dark pre[class*="language-"]::selection,
|
|
15466
|
+
.vscode-dark pre[class*="language-"] ::selection {
|
|
15467
|
+
background: var(--vscode-editor-selectionBackground);
|
|
15468
|
+
}
|
|
15469
|
+
|
|
15269
15470
|
.model-call pre[class*="language-"],
|
|
15270
15471
|
.markdown-content pre[class*="language-"],
|
|
15271
15472
|
pre[class*="language-"].tool-output {
|
|
@@ -17011,17 +17212,6 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
17011
17212
|
grid-column: span 3;
|
|
17012
17213
|
width: 100%;
|
|
17013
17214
|
}
|
|
17014
|
-
._progressContainer_1cjjr_1 {
|
|
17015
|
-
width: 100%;
|
|
17016
|
-
display: flex;
|
|
17017
|
-
align-content: flex-start;
|
|
17018
|
-
justify-content: flex-start;
|
|
17019
|
-
margin-left: 2.5em;
|
|
17020
|
-
}
|
|
17021
|
-
|
|
17022
|
-
._progressText_1cjjr_9 {
|
|
17023
|
-
margin-left: 0.4em;
|
|
17024
|
-
}
|
|
17025
17215
|
._cite_1t1bm_1 {
|
|
17026
17216
|
color: var(--bs-primary-text-emphasis);
|
|
17027
17217
|
text-decoration: underline;
|
|
@@ -17323,6 +17513,100 @@ button._segment_1d1i3_10._disabled_1d1i3_41:hover {
|
|
|
17323
17513
|
._viewerOptions_1bbut_7 {
|
|
17324
17514
|
color: var(--bs-body-color);
|
|
17325
17515
|
}
|
|
17516
|
+
._root_1jsd7_1 {
|
|
17517
|
+
position: relative;
|
|
17518
|
+
display: inline-flex;
|
|
17519
|
+
}
|
|
17520
|
+
|
|
17521
|
+
._button_1jsd7_6 {
|
|
17522
|
+
display: inline-flex;
|
|
17523
|
+
align-items: center;
|
|
17524
|
+
justify-content: center;
|
|
17525
|
+
background: none;
|
|
17526
|
+
border: none;
|
|
17527
|
+
padding: 0.25rem 0.4rem;
|
|
17528
|
+
color: inherit;
|
|
17529
|
+
cursor: pointer;
|
|
17530
|
+
border-radius: var(--bs-border-radius);
|
|
17531
|
+
line-height: 1;
|
|
17532
|
+
}
|
|
17533
|
+
|
|
17534
|
+
._button_1jsd7_6:hover {
|
|
17535
|
+
background-color: var(--bs-secondary-bg);
|
|
17536
|
+
}
|
|
17537
|
+
|
|
17538
|
+
._icon_1jsd7_23 {
|
|
17539
|
+
font-size: var(--inspect-font-size-base, 0.9rem);
|
|
17540
|
+
}
|
|
17541
|
+
|
|
17542
|
+
._menu_1jsd7_27 {
|
|
17543
|
+
padding: 0.4rem 0.55rem;
|
|
17544
|
+
min-width: 11rem;
|
|
17545
|
+
background: var(--bs-body-bg);
|
|
17546
|
+
border: 1px solid var(--bs-border-color);
|
|
17547
|
+
border-radius: var(--bs-border-radius);
|
|
17548
|
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
17549
|
+
color: var(--bs-body-color);
|
|
17550
|
+
}
|
|
17551
|
+
|
|
17552
|
+
._headerRow_1jsd7_37 {
|
|
17553
|
+
display: flex;
|
|
17554
|
+
column-gap: 1.25rem;
|
|
17555
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
17556
|
+
margin-bottom: 0.35rem;
|
|
17557
|
+
padding-bottom: 0.25rem;
|
|
17558
|
+
justify-content: space-between;
|
|
17559
|
+
align-items: center;
|
|
17560
|
+
font-size: var(--inspect-font-size-small, 0.8rem);
|
|
17561
|
+
}
|
|
17562
|
+
|
|
17563
|
+
._srOnly_1jsd7_48 {
|
|
17564
|
+
position: absolute;
|
|
17565
|
+
width: 1px;
|
|
17566
|
+
height: 1px;
|
|
17567
|
+
padding: 0;
|
|
17568
|
+
margin: -1px;
|
|
17569
|
+
overflow: hidden;
|
|
17570
|
+
clip: rect(0, 0, 0, 0);
|
|
17571
|
+
white-space: nowrap;
|
|
17572
|
+
border: 0;
|
|
17573
|
+
}
|
|
17574
|
+
|
|
17575
|
+
._group_1jsd7_60 {
|
|
17576
|
+
margin: 0 0 0.35rem;
|
|
17577
|
+
padding: 0 0 0.35rem;
|
|
17578
|
+
border: none;
|
|
17579
|
+
border-bottom: 1px solid var(--bs-border-color);
|
|
17580
|
+
}
|
|
17581
|
+
|
|
17582
|
+
._resetButton_1jsd7_67 {
|
|
17583
|
+
padding: 0;
|
|
17584
|
+
background: none;
|
|
17585
|
+
border: none;
|
|
17586
|
+
color: var(--bs-link-color);
|
|
17587
|
+
font-size: var(--inspect-font-size-small, 0.8rem);
|
|
17588
|
+
text-decoration: none;
|
|
17589
|
+
cursor: pointer;
|
|
17590
|
+
white-space: nowrap;
|
|
17591
|
+
}
|
|
17592
|
+
|
|
17593
|
+
._resetButton_1jsd7_67:hover {
|
|
17594
|
+
text-decoration: underline;
|
|
17595
|
+
}
|
|
17596
|
+
|
|
17597
|
+
._option_1jsd7_82 {
|
|
17598
|
+
display: flex;
|
|
17599
|
+
align-items: center;
|
|
17600
|
+
gap: 0.5rem;
|
|
17601
|
+
padding: 0.2rem 0;
|
|
17602
|
+
font-size: var(--inspect-font-size-small, 0.8rem);
|
|
17603
|
+
cursor: pointer;
|
|
17604
|
+
}
|
|
17605
|
+
|
|
17606
|
+
._option_1jsd7_82 input {
|
|
17607
|
+
margin: 0;
|
|
17608
|
+
cursor: pointer;
|
|
17609
|
+
}
|
|
17326
17610
|
._wrapper_44dmw_1 {
|
|
17327
17611
|
display: flex;
|
|
17328
17612
|
align-items: center;
|
|
@@ -18279,16 +18563,16 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18279
18563
|
._toolPanel_1792k_40 {
|
|
18280
18564
|
display: contents;
|
|
18281
18565
|
}
|
|
18282
|
-
.
|
|
18566
|
+
._toolImage_1cvly_1 {
|
|
18283
18567
|
max-width: 800px;
|
|
18284
|
-
border: solid var(--
|
|
18568
|
+
border: solid var(--inspect-tool-output-border) 1px;
|
|
18285
18569
|
}
|
|
18286
18570
|
|
|
18287
|
-
.
|
|
18571
|
+
._output_1cvly_6 {
|
|
18288
18572
|
display: grid;
|
|
18289
18573
|
}
|
|
18290
18574
|
|
|
18291
|
-
.
|
|
18575
|
+
._textOutput_1cvly_10 {
|
|
18292
18576
|
padding-left: 2px;
|
|
18293
18577
|
padding: 0.5em 0.5em 0.5em 0.5em;
|
|
18294
18578
|
white-space: pre-wrap;
|
|
@@ -18297,10 +18581,14 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18297
18581
|
border-radius: var(--bs-border-radius);
|
|
18298
18582
|
}
|
|
18299
18583
|
|
|
18300
|
-
.
|
|
18584
|
+
._textCode_1cvly_19 {
|
|
18301
18585
|
word-wrap: anywhere;
|
|
18302
18586
|
color: inherit;
|
|
18303
18587
|
}
|
|
18588
|
+
._submitView_1ru17_1 {
|
|
18589
|
+
display: grid;
|
|
18590
|
+
row-gap: 0.5em;
|
|
18591
|
+
}
|
|
18304
18592
|
._catalog_gx8eg_1 {
|
|
18305
18593
|
display: flex;
|
|
18306
18594
|
flex-direction: column;
|
|
@@ -18345,6 +18633,20 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18345
18633
|
._description_gx8eg_42 {
|
|
18346
18634
|
margin: 0.25rem 0 0.25rem 1rem;
|
|
18347
18635
|
}
|
|
18636
|
+
._image_1evla_1 {
|
|
18637
|
+
margin-right: 0.2rem;
|
|
18638
|
+
opacity: 0.4;
|
|
18639
|
+
}
|
|
18640
|
+
|
|
18641
|
+
._toolTitle_1evla_6 {
|
|
18642
|
+
color: unset !important;
|
|
18643
|
+
overflow-wrap: anywhere;
|
|
18644
|
+
}
|
|
18645
|
+
|
|
18646
|
+
._description_1evla_11 {
|
|
18647
|
+
margin-left: 0.3em;
|
|
18648
|
+
color: var(--inspect-tool-description-color);
|
|
18649
|
+
}
|
|
18348
18650
|
._toolCallView_x6cus_1 {
|
|
18349
18651
|
display: grid;
|
|
18350
18652
|
row-gap: 0.5em;
|
|
@@ -18360,48 +18662,33 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18360
18662
|
._inProgress_1t8rx_9 {
|
|
18361
18663
|
font-weight: bold;
|
|
18362
18664
|
}
|
|
18363
|
-
.
|
|
18665
|
+
._outputPre_7phrr_1 {
|
|
18364
18666
|
padding: 0.5em;
|
|
18365
18667
|
margin-top: 0.25em;
|
|
18366
18668
|
margin-bottom: 0;
|
|
18367
18669
|
}
|
|
18368
18670
|
|
|
18369
|
-
.
|
|
18370
|
-
padding: 0.5em !important;
|
|
18671
|
+
._toolView_7phrr_7 {
|
|
18371
18672
|
padding-top: 0 !important;
|
|
18372
18673
|
}
|
|
18373
18674
|
|
|
18374
|
-
.
|
|
18675
|
+
._toolView_7phrr_7 pre {
|
|
18375
18676
|
margin-bottom: 0;
|
|
18376
18677
|
}
|
|
18377
18678
|
|
|
18378
|
-
.
|
|
18679
|
+
._toolView_7phrr_7 p > code {
|
|
18379
18680
|
font-size: var(--inspect-text-size-small) !important;
|
|
18380
18681
|
color: var(--bs-body-color) !important;
|
|
18381
18682
|
}
|
|
18382
18683
|
|
|
18383
|
-
.
|
|
18684
|
+
._outputCode_7phrr_20 {
|
|
18384
18685
|
font-size: var(--inspect-text-size-small) !important;
|
|
18385
18686
|
overflow-wrap: anywhere !important;
|
|
18386
18687
|
white-space: pre-wrap !important;
|
|
18387
18688
|
}
|
|
18388
|
-
.
|
|
18389
|
-
|
|
18390
|
-
|
|
18391
|
-
}
|
|
18392
|
-
|
|
18393
|
-
._toolTitle_1gmrl_6 {
|
|
18394
|
-
color: unset !important;
|
|
18395
|
-
overflow-wrap: anywhere;
|
|
18396
|
-
}
|
|
18397
|
-
|
|
18398
|
-
._description_1gmrl_11 {
|
|
18399
|
-
margin-left: 0.3em;
|
|
18400
|
-
color: var(--bs-secondary-color);
|
|
18401
|
-
}
|
|
18402
|
-
._error_1lozs_1 {
|
|
18403
|
-
color: var(--bs-danger);
|
|
18404
|
-
background-color: rgba(var(--bs-danger-rgb), 0.06);
|
|
18689
|
+
._error_z9ujs_1 {
|
|
18690
|
+
color: var(--inspect-tool-error-color);
|
|
18691
|
+
background-color: var(--inspect-tool-error-bg);
|
|
18405
18692
|
padding: 0.5em 0.7em;
|
|
18406
18693
|
border-radius: var(--bs-border-radius);
|
|
18407
18694
|
font-family: var(--bs-font-monospace);
|
|
@@ -18409,16 +18696,16 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18409
18696
|
margin: 0.5em 0;
|
|
18410
18697
|
}
|
|
18411
18698
|
|
|
18412
|
-
.
|
|
18699
|
+
._type_z9ujs_11 {
|
|
18413
18700
|
font-weight: 600;
|
|
18414
18701
|
margin-bottom: 0.25em;
|
|
18415
18702
|
text-transform: capitalize;
|
|
18416
18703
|
}
|
|
18417
18704
|
|
|
18418
|
-
.
|
|
18705
|
+
._message_z9ujs_17 {
|
|
18419
18706
|
white-space: pre-wrap;
|
|
18420
18707
|
}
|
|
18421
|
-
.
|
|
18708
|
+
._message_1gt9a_1 {
|
|
18422
18709
|
font-weight: 300;
|
|
18423
18710
|
margin-left: 0;
|
|
18424
18711
|
margin-right: 0;
|
|
@@ -18426,17 +18713,17 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18426
18713
|
min-width: 0;
|
|
18427
18714
|
}
|
|
18428
18715
|
|
|
18429
|
-
.
|
|
18716
|
+
._systemRole_1gt9a_9 {
|
|
18430
18717
|
opacity: 0.7;
|
|
18431
18718
|
}
|
|
18432
18719
|
|
|
18433
|
-
.
|
|
18720
|
+
._timestamp_1gt9a_13 {
|
|
18434
18721
|
opacity: 0.5;
|
|
18435
18722
|
font-size: var(--inspect-font-size-smaller);
|
|
18436
18723
|
font-weight: normal;
|
|
18437
18724
|
}
|
|
18438
18725
|
|
|
18439
|
-
.
|
|
18726
|
+
._messageGrid_1gt9a_19 {
|
|
18440
18727
|
display: grid;
|
|
18441
18728
|
grid-template-columns: max-content max-content;
|
|
18442
18729
|
column-gap: 0.5em;
|
|
@@ -18446,55 +18733,64 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18446
18733
|
align-items: flex-start;
|
|
18447
18734
|
}
|
|
18448
18735
|
|
|
18449
|
-
.
|
|
18736
|
+
._toolMessageGrid_1gt9a_29 {
|
|
18450
18737
|
border-bottom: solid 1px var(--bs-border-color);
|
|
18451
18738
|
}
|
|
18452
18739
|
|
|
18453
|
-
.
|
|
18740
|
+
._headerEnd_1gt9a_33 {
|
|
18741
|
+
display: inline-flex;
|
|
18742
|
+
align-items: center;
|
|
18743
|
+
gap: 0.5em;
|
|
18744
|
+
flex: none;
|
|
18745
|
+
}
|
|
18746
|
+
|
|
18747
|
+
._messageContents_1gt9a_40 {
|
|
18454
18748
|
margin-left: 0;
|
|
18455
18749
|
padding-bottom: 0;
|
|
18456
18750
|
}
|
|
18457
18751
|
|
|
18458
|
-
.
|
|
18752
|
+
._messageContents_1gt9a_40._indented_1gt9a_45 {
|
|
18459
18753
|
margin-left: 0rem;
|
|
18460
18754
|
}
|
|
18461
18755
|
|
|
18462
|
-
.
|
|
18756
|
+
._copyLink_1gt9a_49 {
|
|
18463
18757
|
opacity: 0;
|
|
18464
18758
|
padding-left: 0;
|
|
18465
18759
|
padding-right: 2em;
|
|
18466
18760
|
margin-left: 0.2rem;
|
|
18467
18761
|
}
|
|
18468
18762
|
|
|
18469
|
-
.
|
|
18763
|
+
._copyLink_1gt9a_49:hover {
|
|
18470
18764
|
opacity: 0.75;
|
|
18471
18765
|
}
|
|
18472
18766
|
|
|
18473
|
-
.
|
|
18767
|
+
._metadataLabel_1gt9a_60 {
|
|
18474
18768
|
padding-top: 1em;
|
|
18475
18769
|
}
|
|
18476
18770
|
|
|
18477
|
-
.
|
|
18771
|
+
._hover_1gt9a_64 ._copyLink_1gt9a_49 {
|
|
18478
18772
|
opacity: 0.75;
|
|
18479
18773
|
}
|
|
18480
|
-
.
|
|
18774
|
+
._grid_qa1cd_1 {
|
|
18481
18775
|
display: grid;
|
|
18482
|
-
grid-template-columns:
|
|
18483
|
-
row-gap
|
|
18776
|
+
grid-template-columns: minmax(0, 1fr);
|
|
18777
|
+
/* row-gap spaces blocks within a turn (message → tool box); margin-bottom
|
|
18778
|
+
spaces turns. Keep them equal so every gap reads the same. */
|
|
18779
|
+
row-gap: 0.75rem;
|
|
18484
18780
|
margin-bottom: 0.75rem;
|
|
18485
18781
|
}
|
|
18486
18782
|
|
|
18487
|
-
.
|
|
18783
|
+
._number_qa1cd_10 {
|
|
18488
18784
|
margin-top: 0.1em;
|
|
18489
18785
|
}
|
|
18490
18786
|
|
|
18491
|
-
.
|
|
18787
|
+
._user_qa1cd_14 {
|
|
18492
18788
|
background-color: var(--bs-secondary-bg);
|
|
18493
18789
|
border-radius: var(--bs-border-radius);
|
|
18494
18790
|
border: solid 1px var(--bs-light-border-subtle);
|
|
18495
18791
|
}
|
|
18496
18792
|
|
|
18497
|
-
.
|
|
18793
|
+
._container_qa1cd_20 {
|
|
18498
18794
|
padding-left: 0.7rem;
|
|
18499
18795
|
padding-right: 0.7rem;
|
|
18500
18796
|
padding-top: 0.5rem;
|
|
@@ -18502,68 +18798,132 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18502
18798
|
border-right: solid 1px var(--bs-light-border-subtle);
|
|
18503
18799
|
}
|
|
18504
18800
|
|
|
18505
|
-
.
|
|
18801
|
+
._first_qa1cd_28 {
|
|
18506
18802
|
border-top-left-radius: var(--bs-border-radius);
|
|
18507
18803
|
border-top-right-radius: var(--bs-border-radius);
|
|
18508
18804
|
border-top: solid 1px var(--bs-light-border-subtle);
|
|
18509
18805
|
padding-top: 0.7rem;
|
|
18510
18806
|
}
|
|
18511
18807
|
|
|
18512
|
-
.
|
|
18808
|
+
._last_qa1cd_35 {
|
|
18513
18809
|
border-bottom-left-radius: var(--bs-border-radius);
|
|
18514
18810
|
border-bottom-right-radius: var(--bs-border-radius);
|
|
18515
18811
|
border-bottom: solid 1px var(--bs-light-border-subtle);
|
|
18516
18812
|
padding-bottom: 0.7rem;
|
|
18517
18813
|
}
|
|
18518
18814
|
|
|
18519
|
-
.
|
|
18815
|
+
._label_qa1cd_42 {
|
|
18816
|
+
display: flex;
|
|
18817
|
+
justify-content: flex-end;
|
|
18520
18818
|
padding-top: 0.7rem;
|
|
18521
18819
|
margin-left: 0.4em;
|
|
18522
18820
|
}
|
|
18523
18821
|
|
|
18524
|
-
.
|
|
18822
|
+
._highlight_qa1cd_49 {
|
|
18525
18823
|
background-color: rgba(var(--bs-info-rgb), 0.12);
|
|
18526
18824
|
}
|
|
18527
18825
|
|
|
18528
|
-
|
|
18826
|
+
/* Prototype: self-contained box (used when tool calls are un-embedded) so the
|
|
18827
|
+
assistant message and each tool call read as separate cards rather than one
|
|
18828
|
+
connected band. */
|
|
18829
|
+
._box_qa1cd_56 {
|
|
18830
|
+
position: relative;
|
|
18831
|
+
border: solid 1px var(--bs-light-border-subtle);
|
|
18832
|
+
border-radius: var(--bs-border-radius);
|
|
18833
|
+
padding: 0.7rem;
|
|
18834
|
+
}
|
|
18835
|
+
|
|
18836
|
+
/* An assistant turn rendered as one connected stack: the message, its tool
|
|
18837
|
+
call(s), and output(s) sit flush so they read as a single card with a
|
|
18838
|
+
continuous left gutter. */
|
|
18839
|
+
._attachedGroup_qa1cd_66 {
|
|
18840
|
+
display: flex;
|
|
18841
|
+
flex-direction: column;
|
|
18842
|
+
}
|
|
18843
|
+
|
|
18844
|
+
._attachedBottom_qa1cd_71 {
|
|
18845
|
+
border-bottom-left-radius: 0;
|
|
18846
|
+
border-bottom-right-radius: 0;
|
|
18847
|
+
/* Drop the divider so the call/output pair reads as one seamless card —
|
|
18848
|
+
only the background color shifts (blue call → gray output). */
|
|
18849
|
+
border-bottom: 0;
|
|
18850
|
+
}
|
|
18851
|
+
|
|
18852
|
+
._attachedTop_qa1cd_79 {
|
|
18853
|
+
border-top-left-radius: 0;
|
|
18854
|
+
border-top-right-radius: 0;
|
|
18855
|
+
border-top: 0;
|
|
18856
|
+
}
|
|
18857
|
+
|
|
18858
|
+
/* Tool-call number chip, pinned to the top-right of its box to mirror the
|
|
18859
|
+
position chip on a message's role line. */
|
|
18860
|
+
._toolLabel_qa1cd_87 {
|
|
18861
|
+
position: absolute;
|
|
18862
|
+
top: 0.7rem;
|
|
18863
|
+
right: 0.7rem;
|
|
18864
|
+
z-index: 1;
|
|
18865
|
+
}
|
|
18866
|
+
|
|
18867
|
+
._bottomMargin_qa1cd_94 {
|
|
18529
18868
|
margin-bottom: 0.75rem;
|
|
18530
18869
|
}
|
|
18531
18870
|
|
|
18532
|
-
.
|
|
18871
|
+
._codeCompact_qa1cd_98 {
|
|
18533
18872
|
/* styles for compact code display */
|
|
18534
18873
|
}
|
|
18535
18874
|
|
|
18536
|
-
.
|
|
18875
|
+
._simple_qa1cd_102 {
|
|
18537
18876
|
/* styles for simple display mode */
|
|
18538
18877
|
}
|
|
18539
|
-
.
|
|
18540
|
-
|
|
18878
|
+
._badge_10sr6_1,
|
|
18879
|
+
._inline_10sr6_2 {
|
|
18880
|
+
display: inline-flex;
|
|
18881
|
+
align-items: center;
|
|
18882
|
+
font-family: var(
|
|
18883
|
+
--bs-font-monospace,
|
|
18884
|
+
ui-monospace,
|
|
18885
|
+
"SF Mono",
|
|
18886
|
+
"JetBrains Mono",
|
|
18887
|
+
Menlo,
|
|
18888
|
+
Consolas,
|
|
18889
|
+
monospace
|
|
18890
|
+
);
|
|
18891
|
+
font-size: 11.5px;
|
|
18892
|
+
line-height: 1;
|
|
18893
|
+
font-weight: 400;
|
|
18894
|
+
background: var(--inspect-msg-label-bg);
|
|
18895
|
+
border: 1px solid var(--inspect-msg-label-border);
|
|
18896
|
+
color: var(--inspect-msg-label-text);
|
|
18897
|
+
cursor: pointer;
|
|
18898
|
+
transition: background 0.12s ease;
|
|
18541
18899
|
}
|
|
18542
18900
|
|
|
18543
|
-
.
|
|
18544
|
-
|
|
18545
|
-
|
|
18546
|
-
|
|
18547
|
-
|
|
18548
|
-
width: 100%;
|
|
18549
|
-
margin-top: 1em;
|
|
18550
|
-
padding-bottom: 0.5rem;
|
|
18901
|
+
._badge_10sr6_1 {
|
|
18902
|
+
flex: none;
|
|
18903
|
+
padding: 3px 8px;
|
|
18904
|
+
border-radius: 6px;
|
|
18905
|
+
user-select: none;
|
|
18551
18906
|
}
|
|
18552
18907
|
|
|
18553
|
-
.
|
|
18554
|
-
|
|
18555
|
-
|
|
18556
|
-
|
|
18557
|
-
|
|
18558
|
-
|
|
18908
|
+
._inline_10sr6_2 {
|
|
18909
|
+
padding: 1px 6px;
|
|
18910
|
+
border-radius: 5px;
|
|
18911
|
+
white-space: nowrap;
|
|
18912
|
+
text-decoration: none;
|
|
18913
|
+
vertical-align: baseline;
|
|
18559
18914
|
}
|
|
18560
18915
|
|
|
18561
|
-
.
|
|
18562
|
-
|
|
18916
|
+
._badge_10sr6_1:hover,
|
|
18917
|
+
._inline_10sr6_2:hover {
|
|
18918
|
+
background: var(--inspect-msg-label-bg-hover);
|
|
18919
|
+
}
|
|
18920
|
+
._scroller_qi4v2_1 {
|
|
18921
|
+
position: relative;
|
|
18563
18922
|
}
|
|
18564
18923
|
|
|
18565
|
-
.
|
|
18566
|
-
|
|
18924
|
+
._spacer_qi4v2_5 {
|
|
18925
|
+
position: relative;
|
|
18926
|
+
width: 100%;
|
|
18567
18927
|
}
|
|
18568
18928
|
._bar_pg4l8_1 {
|
|
18569
18929
|
--glint: rgba(64, 72, 104, 0.1);
|
|
@@ -18674,6 +19034,17 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18674
19034
|
opacity: 0.55;
|
|
18675
19035
|
}
|
|
18676
19036
|
}
|
|
19037
|
+
._list_zuqui_1 {
|
|
19038
|
+
width: 100%;
|
|
19039
|
+
margin-top: 1em;
|
|
19040
|
+
padding-bottom: 0.5rem;
|
|
19041
|
+
}
|
|
19042
|
+
|
|
19043
|
+
._generatingRow_zuqui_7 {
|
|
19044
|
+
display: grid;
|
|
19045
|
+
grid-template-columns: minmax(0, 1fr);
|
|
19046
|
+
margin-bottom: 0.75rem;
|
|
19047
|
+
}
|
|
18677
19048
|
._tab_1je38_1 {
|
|
18678
19049
|
min-width: 4rem;
|
|
18679
19050
|
padding: 0.1rem 0.6rem;
|
|
@@ -18794,55 +19165,57 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18794
19165
|
background-color: var(--bs-primary);
|
|
18795
19166
|
filter: brightness(1.05);
|
|
18796
19167
|
}
|
|
18797
|
-
.
|
|
19168
|
+
._stickyWrapper_2hmlz_1 {
|
|
18798
19169
|
position: sticky;
|
|
18799
19170
|
top: var(--inspect-event-panel-sticky-top, 0px);
|
|
18800
19171
|
/* Full-bleed: cancel the parent card's padding so the sticky bar
|
|
18801
19172
|
spans the entire card width, then re-apply padding internally. */
|
|
18802
19173
|
margin: -5px -0.625rem -5px -0.625rem;
|
|
18803
19174
|
padding: 5px 0.625rem;
|
|
18804
|
-
|
|
19175
|
+
/* Opaque (matches the host card) even when unstuck so colored message bands
|
|
19176
|
+
don't bleed through the header as it scrolls off during the push-off. */
|
|
19177
|
+
background-color: inherit;
|
|
18805
19178
|
z-index: 1;
|
|
18806
19179
|
border-bottom: solid 1px transparent;
|
|
18807
19180
|
}
|
|
18808
19181
|
|
|
18809
|
-
.
|
|
19182
|
+
._stickyWrapper_2hmlz_1[data-useStickyObserver-stuck] {
|
|
18810
19183
|
background-color: var(--bs-light);
|
|
18811
19184
|
border-bottom-color: var(--bs-light-border-subtle);
|
|
18812
19185
|
}
|
|
18813
19186
|
|
|
18814
|
-
.
|
|
19187
|
+
._label_2hmlz_20 {
|
|
18815
19188
|
margin-right: 0.2em;
|
|
18816
19189
|
justify-self: end;
|
|
18817
19190
|
}
|
|
18818
19191
|
|
|
18819
|
-
.
|
|
19192
|
+
._title_2hmlz_25 {
|
|
18820
19193
|
min-width: 0;
|
|
18821
19194
|
line-height: 1.6;
|
|
18822
19195
|
}
|
|
18823
19196
|
|
|
18824
|
-
.
|
|
19197
|
+
._titleExtra_2hmlz_30 {
|
|
18825
19198
|
display: inline-flex;
|
|
18826
19199
|
align-items: center;
|
|
18827
19200
|
vertical-align: middle;
|
|
18828
19201
|
margin-left: 0.5em;
|
|
18829
19202
|
}
|
|
18830
19203
|
|
|
18831
|
-
.
|
|
19204
|
+
._navs_2hmlz_37 {
|
|
18832
19205
|
display: flex;
|
|
18833
19206
|
align-items: baseline;
|
|
18834
19207
|
justify-content: flex-end;
|
|
18835
19208
|
min-width: 0;
|
|
18836
19209
|
}
|
|
18837
19210
|
|
|
18838
|
-
.
|
|
19211
|
+
._turnLabel_2hmlz_44 {
|
|
18839
19212
|
margin-left: 1rem;
|
|
18840
19213
|
margin-top: 0.2rem;
|
|
18841
19214
|
opacity: 0.5;
|
|
18842
19215
|
font-size: var(--inspect-font-size-smallest);
|
|
18843
19216
|
}
|
|
18844
19217
|
|
|
18845
|
-
.
|
|
19218
|
+
._card_2hmlz_51 {
|
|
18846
19219
|
position: relative;
|
|
18847
19220
|
background-color: var(--bs-body-bg);
|
|
18848
19221
|
padding: 0.625rem;
|
|
@@ -18850,20 +19223,20 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18850
19223
|
border-radius: var(--bs-border-radius);
|
|
18851
19224
|
}
|
|
18852
19225
|
|
|
18853
|
-
.
|
|
19226
|
+
._cardContent_2hmlz_59 {
|
|
18854
19227
|
padding: 0;
|
|
18855
19228
|
display: inherit;
|
|
18856
19229
|
}
|
|
18857
19230
|
|
|
18858
|
-
.
|
|
19231
|
+
._cardContent_2hmlz_59._hidden_2hmlz_64 {
|
|
18859
19232
|
display: none;
|
|
18860
19233
|
}
|
|
18861
19234
|
|
|
18862
|
-
.
|
|
19235
|
+
._hidden_2hmlz_64 {
|
|
18863
19236
|
display: none;
|
|
18864
19237
|
}
|
|
18865
19238
|
|
|
18866
|
-
.
|
|
19239
|
+
._copyLink_2hmlz_72 {
|
|
18867
19240
|
font-size: 1.2em;
|
|
18868
19241
|
opacity: 0;
|
|
18869
19242
|
padding-left: 0.2em;
|
|
@@ -18873,23 +19246,23 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18873
19246
|
margin-left: 0.25em;
|
|
18874
19247
|
}
|
|
18875
19248
|
|
|
18876
|
-
.
|
|
19249
|
+
._hover_2hmlz_82 ._copyLink_2hmlz_72 {
|
|
18877
19250
|
opacity: 0.75;
|
|
18878
19251
|
}
|
|
18879
19252
|
|
|
18880
19253
|
/* The event labels look like [E7], and those square brackets sit really low.
|
|
18881
19254
|
Sliding them down a little looks more balanced
|
|
18882
19255
|
*/
|
|
18883
|
-
.
|
|
19256
|
+
._eventLabel_2hmlz_89 {
|
|
18884
19257
|
transform: translateY(-1px);
|
|
18885
19258
|
}
|
|
18886
19259
|
|
|
18887
|
-
.
|
|
19260
|
+
._root_2hmlz_93 {
|
|
18888
19261
|
background-color: var(--bs-light-bg-subtle);
|
|
18889
19262
|
border-radius: unset;
|
|
18890
19263
|
}
|
|
18891
19264
|
|
|
18892
|
-
.
|
|
19265
|
+
._bottomDongle_2hmlz_98 {
|
|
18893
19266
|
display: block;
|
|
18894
19267
|
position: absolute;
|
|
18895
19268
|
margin: 0 auto;
|
|
@@ -18905,12 +19278,12 @@ a._citationLink_1ggvf_9:hover {
|
|
|
18905
19278
|
cursor: pointer;
|
|
18906
19279
|
}
|
|
18907
19280
|
|
|
18908
|
-
.
|
|
19281
|
+
._dongleIcon_2hmlz_114 {
|
|
18909
19282
|
padding-right: 0.3em;
|
|
18910
19283
|
}
|
|
18911
19284
|
|
|
18912
19285
|
@media print {
|
|
18913
|
-
.
|
|
19286
|
+
._card_2hmlz_51 {
|
|
18914
19287
|
break-inside: avoid;
|
|
18915
19288
|
}
|
|
18916
19289
|
}
|
|
@@ -20199,31 +20572,47 @@ a._citationLink_1ggvf_9:hover {
|
|
|
20199
20572
|
flex: none;
|
|
20200
20573
|
opacity: 0.85;
|
|
20201
20574
|
}
|
|
20202
|
-
.
|
|
20575
|
+
._panel_xm787_1 {
|
|
20203
20576
|
margin: 0.2em 0;
|
|
20204
20577
|
}
|
|
20205
20578
|
|
|
20206
|
-
.
|
|
20579
|
+
._metric_xm787_5 {
|
|
20207
20580
|
display: flex;
|
|
20208
20581
|
gap: 0.5em;
|
|
20209
20582
|
}
|
|
20210
20583
|
|
|
20211
|
-
.
|
|
20584
|
+
._label_xm787_10 {
|
|
20212
20585
|
font-weight: 600;
|
|
20213
20586
|
min-width: 5em;
|
|
20214
20587
|
}
|
|
20215
20588
|
|
|
20216
|
-
.
|
|
20589
|
+
._section_xm787_15 {
|
|
20217
20590
|
margin-top: 0.5em;
|
|
20218
20591
|
}
|
|
20219
20592
|
|
|
20220
|
-
.
|
|
20593
|
+
._sectionTitle_xm787_19 {
|
|
20221
20594
|
font-weight: 600;
|
|
20222
20595
|
}
|
|
20223
20596
|
|
|
20224
|
-
.
|
|
20597
|
+
._indented_xm787_23 {
|
|
20225
20598
|
padding-left: 1.5em;
|
|
20226
20599
|
}
|
|
20600
|
+
|
|
20601
|
+
._files_xm787_27 {
|
|
20602
|
+
display: flex;
|
|
20603
|
+
flex-direction: column;
|
|
20604
|
+
gap: 0.1em;
|
|
20605
|
+
font-family: var(--bs-font-monospace);
|
|
20606
|
+
}
|
|
20607
|
+
|
|
20608
|
+
._file_xm787_27 {
|
|
20609
|
+
overflow-wrap: anywhere;
|
|
20610
|
+
}
|
|
20611
|
+
|
|
20612
|
+
._fileOverflow_xm787_38 {
|
|
20613
|
+
font-style: italic;
|
|
20614
|
+
opacity: 0.7;
|
|
20615
|
+
}
|
|
20227
20616
|
._panel_8zdtn_1 {
|
|
20228
20617
|
margin: 0.5em 0;
|
|
20229
20618
|
}
|
|
@@ -20850,48 +21239,48 @@ a._citationLink_1ggvf_9:hover {
|
|
|
20850
21239
|
font-variant-numeric: tabular-nums;
|
|
20851
21240
|
flex-shrink: 0;
|
|
20852
21241
|
}
|
|
20853
|
-
.
|
|
21242
|
+
._container_v2zov_1 {
|
|
20854
21243
|
margin: 0.5em 0 0 0;
|
|
20855
21244
|
width: 100%;
|
|
20856
21245
|
}
|
|
20857
21246
|
|
|
20858
|
-
.
|
|
21247
|
+
._all_v2zov_6 {
|
|
20859
21248
|
display: flex;
|
|
20860
21249
|
flex-direction: column;
|
|
20861
21250
|
gap: 1em;
|
|
20862
21251
|
}
|
|
20863
21252
|
|
|
20864
|
-
.
|
|
21253
|
+
._tableSelection_v2zov_12 {
|
|
20865
21254
|
width: fit-content;
|
|
20866
21255
|
align-self: start;
|
|
20867
21256
|
justify-self: start;
|
|
20868
21257
|
}
|
|
20869
21258
|
|
|
20870
|
-
.
|
|
21259
|
+
._config_v2zov_18 {
|
|
20871
21260
|
margin-top: 0;
|
|
20872
21261
|
}
|
|
20873
21262
|
|
|
20874
|
-
.
|
|
21263
|
+
._tools_v2zov_22 {
|
|
20875
21264
|
grid-column: -1/1;
|
|
20876
21265
|
}
|
|
20877
21266
|
|
|
20878
|
-
.
|
|
21267
|
+
._codePre_v2zov_26 {
|
|
20879
21268
|
background: var(--bs-light);
|
|
20880
21269
|
width: 100%;
|
|
20881
21270
|
padding: 0.5em;
|
|
20882
21271
|
border-radius: var(--bs-border-radius);
|
|
20883
21272
|
}
|
|
20884
21273
|
|
|
20885
|
-
.
|
|
21274
|
+
._code_v2zov_26 {
|
|
20886
21275
|
white-space: pre-wrap !important;
|
|
20887
21276
|
word-wrap: anywhere !important;
|
|
20888
21277
|
}
|
|
20889
21278
|
|
|
20890
|
-
.
|
|
20891
|
-
margin-left: 0
|
|
21279
|
+
._progress_v2zov_38 {
|
|
21280
|
+
margin-left: 0;
|
|
20892
21281
|
}
|
|
20893
21282
|
|
|
20894
|
-
.
|
|
21283
|
+
._error_v2zov_42 {
|
|
20895
21284
|
color: var(--bs-danger);
|
|
20896
21285
|
padding: 0.5em;
|
|
20897
21286
|
border: 1px solid var(--bs-danger);
|
|
@@ -20902,27 +21291,40 @@ a._citationLink_1ggvf_9:hover {
|
|
|
20902
21291
|
margin: 0.5em 0;
|
|
20903
21292
|
}
|
|
20904
21293
|
|
|
20905
|
-
.
|
|
21294
|
+
._cancelled_v2zov_53 {
|
|
21295
|
+
display: flex;
|
|
21296
|
+
align-items: center;
|
|
21297
|
+
gap: 0.5em;
|
|
21298
|
+
color: var(--bs-secondary-color);
|
|
21299
|
+
padding: 0.5em;
|
|
21300
|
+
border: 1px solid var(--bs-border-color);
|
|
21301
|
+
border-radius: var(--bs-border-radius);
|
|
21302
|
+
white-space: pre-wrap;
|
|
21303
|
+
font-size: var(--inspect-font-size-smaller);
|
|
21304
|
+
margin: 0.5em 0;
|
|
21305
|
+
}
|
|
21306
|
+
|
|
21307
|
+
._showAllLink_v2zov_66 {
|
|
20906
21308
|
text-align: center;
|
|
20907
21309
|
padding: 0.5em 0 0.7em;
|
|
20908
21310
|
}
|
|
20909
21311
|
|
|
20910
|
-
.
|
|
21312
|
+
._showAllLink_v2zov_66 a {
|
|
20911
21313
|
cursor: pointer;
|
|
20912
21314
|
color: var(--bs-secondary-color);
|
|
20913
21315
|
text-decoration: none;
|
|
20914
21316
|
}
|
|
20915
21317
|
|
|
20916
|
-
.
|
|
21318
|
+
._showAllIcon_v2zov_77 {
|
|
20917
21319
|
margin-right: 0.35em;
|
|
20918
21320
|
}
|
|
20919
21321
|
|
|
20920
|
-
.
|
|
21322
|
+
._showAllLink_v2zov_66 a:hover {
|
|
20921
21323
|
color: var(--bs-body-color);
|
|
20922
21324
|
text-decoration: underline;
|
|
20923
21325
|
}
|
|
20924
21326
|
|
|
20925
|
-
.
|
|
21327
|
+
._toolConfig_v2zov_86 {
|
|
20926
21328
|
display: grid;
|
|
20927
21329
|
grid-template-columns: max-content minmax(0, auto);
|
|
20928
21330
|
column-gap: 1em;
|
|
@@ -20931,7 +21333,7 @@ a._citationLink_1ggvf_9:hover {
|
|
|
20931
21333
|
overflow-wrap: anywhere;
|
|
20932
21334
|
}
|
|
20933
21335
|
|
|
20934
|
-
.
|
|
21336
|
+
._toolChoice_v2zov_95 {
|
|
20935
21337
|
border-top: solid var(--bs-light-border-subtle) 1px;
|
|
20936
21338
|
display: grid;
|
|
20937
21339
|
grid-template-columns: max-content minmax(0, auto);
|
|
@@ -21081,71 +21483,103 @@ a._citationLink_1ggvf_9:hover {
|
|
|
21081
21483
|
._subtaskLabel_ac4z2_17 {
|
|
21082
21484
|
padding: 0 2em;
|
|
21083
21485
|
}
|
|
21084
|
-
.
|
|
21486
|
+
._summary_8xr5q_1 {
|
|
21085
21487
|
margin: 0.5em 0;
|
|
21086
21488
|
width: 100%;
|
|
21087
21489
|
}
|
|
21088
21490
|
|
|
21089
|
-
.
|
|
21491
|
+
._labeledToolCall_8xr5q_6 {
|
|
21090
21492
|
display: grid;
|
|
21091
|
-
grid-template-columns: max-content
|
|
21493
|
+
grid-template-columns: auto max-content;
|
|
21092
21494
|
row-gap: 0;
|
|
21093
21495
|
}
|
|
21094
21496
|
|
|
21095
|
-
.
|
|
21497
|
+
._label_8xr5q_6 {
|
|
21498
|
+
display: flex;
|
|
21499
|
+
justify-content: flex-end;
|
|
21096
21500
|
padding-top: 0.7rem;
|
|
21097
21501
|
margin-left: 0.4em;
|
|
21098
21502
|
}
|
|
21099
21503
|
|
|
21100
|
-
.
|
|
21504
|
+
._labeledToolContent_8xr5q_19 {
|
|
21101
21505
|
min-width: 0;
|
|
21102
21506
|
}
|
|
21103
21507
|
|
|
21104
|
-
|
|
21508
|
+
/* The call/output attached pair (colors + inner flatten come from the shared
|
|
21509
|
+
[data-message-kind] theme rules; here we supply the box structure). */
|
|
21510
|
+
._attachedGroup_8xr5q_25 {
|
|
21511
|
+
display: flex;
|
|
21512
|
+
flex-direction: column;
|
|
21513
|
+
}
|
|
21514
|
+
|
|
21515
|
+
._toolBox_8xr5q_30 {
|
|
21516
|
+
position: relative;
|
|
21517
|
+
border: 1px solid var(--bs-light-border-subtle);
|
|
21518
|
+
border-radius: var(--bs-border-radius);
|
|
21519
|
+
padding: 0.7rem;
|
|
21520
|
+
}
|
|
21521
|
+
|
|
21522
|
+
._attachedBottom_8xr5q_37 {
|
|
21523
|
+
border-bottom-left-radius: 0;
|
|
21524
|
+
border-bottom-right-radius: 0;
|
|
21525
|
+
border-bottom: 0;
|
|
21526
|
+
}
|
|
21527
|
+
|
|
21528
|
+
._attachedTop_8xr5q_43 {
|
|
21529
|
+
border-top-left-radius: 0;
|
|
21530
|
+
border-top-right-radius: 0;
|
|
21531
|
+
border-top: 0;
|
|
21532
|
+
}
|
|
21533
|
+
|
|
21534
|
+
._approvalWrap_8xr5q_49 {
|
|
21105
21535
|
margin-top: 0.5rem;
|
|
21106
21536
|
}
|
|
21107
21537
|
|
|
21108
|
-
.
|
|
21538
|
+
._approval_8xr5q_49 {
|
|
21109
21539
|
border: none;
|
|
21110
21540
|
padding: 0;
|
|
21111
21541
|
margin-bottom: 0;
|
|
21112
21542
|
}
|
|
21113
21543
|
|
|
21114
|
-
.
|
|
21115
|
-
margin-left: 0
|
|
21544
|
+
._progress_8xr5q_59 {
|
|
21545
|
+
margin-left: 0;
|
|
21116
21546
|
}
|
|
21117
|
-
.
|
|
21547
|
+
._node_t3xlr_1 {
|
|
21118
21548
|
padding-top: 0.8rem;
|
|
21119
21549
|
}
|
|
21120
21550
|
|
|
21121
|
-
.
|
|
21551
|
+
._attached_t3xlr_5 {
|
|
21122
21552
|
padding-top: 0rem;
|
|
21123
21553
|
}
|
|
21124
21554
|
|
|
21125
|
-
.
|
|
21555
|
+
._attachedParent_t3xlr_9 {
|
|
21126
21556
|
padding-bottom: 0px;
|
|
21127
21557
|
border-bottom-left-radius: 0;
|
|
21128
21558
|
border-bottom-right-radius: 0;
|
|
21129
21559
|
border-bottom: none;
|
|
21130
21560
|
}
|
|
21131
21561
|
|
|
21132
|
-
.
|
|
21562
|
+
._attachedChild_t3xlr_16 {
|
|
21133
21563
|
border-top-left-radius: 0;
|
|
21134
21564
|
border-top-right-radius: 0;
|
|
21135
21565
|
}
|
|
21136
21566
|
|
|
21137
|
-
.
|
|
21567
|
+
._depthRoot_t3xlr_21 {
|
|
21138
21568
|
border-left: none;
|
|
21139
21569
|
border-right: none;
|
|
21140
21570
|
border-radius: 0;
|
|
21141
21571
|
}
|
|
21142
21572
|
|
|
21143
|
-
.
|
|
21573
|
+
._last_t3xlr_27 {
|
|
21144
21574
|
padding-bottom: 0.8rem;
|
|
21145
21575
|
}
|
|
21146
21576
|
|
|
21577
|
+
._runningTool_t3xlr_31 {
|
|
21578
|
+
padding: 0 0.7em;
|
|
21579
|
+
}
|
|
21580
|
+
|
|
21147
21581
|
@media print {
|
|
21148
|
-
.
|
|
21582
|
+
._node_t3xlr_1 {
|
|
21149
21583
|
break-inside: avoid;
|
|
21150
21584
|
}
|
|
21151
21585
|
}
|