inspect-ai 0.3.92__py3-none-any.whl → 0.3.94__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.
Files changed (149) hide show
  1. inspect_ai/_cli/eval.py +27 -0
  2. inspect_ai/_display/textual/widgets/samples.py +3 -3
  3. inspect_ai/_display/textual/widgets/transcript.py +3 -29
  4. inspect_ai/_eval/eval.py +19 -2
  5. inspect_ai/_eval/evalset.py +4 -1
  6. inspect_ai/_eval/run.py +41 -0
  7. inspect_ai/_eval/task/generate.py +38 -44
  8. inspect_ai/_eval/task/log.py +26 -28
  9. inspect_ai/_eval/task/run.py +23 -27
  10. inspect_ai/_util/answer.py +26 -0
  11. inspect_ai/_util/constants.py +0 -1
  12. inspect_ai/_util/local_server.py +398 -0
  13. inspect_ai/_util/working.py +10 -4
  14. inspect_ai/_view/www/dist/assets/index.css +173 -159
  15. inspect_ai/_view/www/dist/assets/index.js +1417 -1142
  16. inspect_ai/_view/www/log-schema.json +379 -3
  17. inspect_ai/_view/www/package.json +1 -1
  18. inspect_ai/_view/www/src/@types/log.d.ts +93 -14
  19. inspect_ai/_view/www/src/app/content/MetaDataGrid.tsx +2 -2
  20. inspect_ai/_view/www/src/app/content/MetaDataView.module.css +1 -1
  21. inspect_ai/_view/www/src/app/content/MetadataGrid.module.css +1 -1
  22. inspect_ai/_view/www/src/app/content/RenderedContent.tsx +1 -1
  23. inspect_ai/_view/www/src/app/log-view/LogView.tsx +11 -0
  24. inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.tsx +2 -9
  25. inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.tsx +51 -0
  26. inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.module.css +6 -0
  27. inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx +143 -0
  28. inspect_ai/_view/www/src/app/plan/ModelCard.tsx +1 -2
  29. inspect_ai/_view/www/src/app/plan/PlanCard.tsx +29 -7
  30. inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css +1 -1
  31. inspect_ai/_view/www/src/app/plan/PlanDetailView.tsx +1 -198
  32. inspect_ai/_view/www/src/app/samples/descriptor/score/NumericScoreDescriptor.tsx +2 -1
  33. inspect_ai/_view/www/src/app/samples/transcript/SandboxEventView.module.css +2 -1
  34. inspect_ai/_view/www/src/app/samples/transcript/SpanEventView.tsx +174 -0
  35. inspect_ai/_view/www/src/app/samples/transcript/ToolEventView.tsx +8 -8
  36. inspect_ai/_view/www/src/app/samples/transcript/TranscriptView.tsx +12 -2
  37. inspect_ai/_view/www/src/app/samples/transcript/TranscriptVirtualListComponent.module.css +1 -1
  38. inspect_ai/_view/www/src/app/samples/transcript/event/EventPanel.tsx +0 -3
  39. inspect_ai/_view/www/src/app/samples/transcript/transform/fixups.ts +87 -25
  40. inspect_ai/_view/www/src/app/samples/transcript/transform/treeify.ts +229 -17
  41. inspect_ai/_view/www/src/app/samples/transcript/transform/utils.ts +11 -0
  42. inspect_ai/_view/www/src/app/samples/transcript/types.ts +5 -1
  43. inspect_ai/_view/www/src/app/usage/ModelUsagePanel.tsx +3 -2
  44. inspect_ai/_view/www/src/app/usage/TokenTable.module.css +4 -1
  45. inspect_ai/_view/www/src/app/usage/TokenTable.tsx +2 -2
  46. inspect_ai/_view/www/src/app/usage/UsageCard.module.css +8 -3
  47. inspect_ai/_view/www/src/app/usage/UsageCard.tsx +1 -35
  48. inspect_ai/_view/www/src/components/Card.css +0 -1
  49. inspect_ai/_view/www/src/constants.ts +2 -0
  50. inspect_ai/_view/www/src/utils/numeric.ts +17 -0
  51. inspect_ai/agent/_agent.py +3 -3
  52. inspect_ai/agent/_as_solver.py +22 -12
  53. inspect_ai/agent/_as_tool.py +20 -6
  54. inspect_ai/agent/_handoff.py +12 -1
  55. inspect_ai/agent/_react.py +4 -3
  56. inspect_ai/agent/_run.py +16 -3
  57. inspect_ai/agent/_types.py +9 -0
  58. inspect_ai/dataset/_dataset.py +6 -3
  59. inspect_ai/log/__init__.py +14 -0
  60. inspect_ai/log/_convert.py +4 -9
  61. inspect_ai/log/_file.py +56 -0
  62. inspect_ai/log/_log.py +99 -0
  63. inspect_ai/log/_recorders/__init__.py +2 -0
  64. inspect_ai/log/_recorders/buffer/database.py +12 -11
  65. inspect_ai/log/_recorders/buffer/filestore.py +2 -2
  66. inspect_ai/log/_recorders/buffer/types.py +2 -2
  67. inspect_ai/log/_recorders/eval.py +20 -65
  68. inspect_ai/log/_recorders/file.py +28 -6
  69. inspect_ai/log/_recorders/recorder.py +7 -0
  70. inspect_ai/log/_recorders/types.py +1 -23
  71. inspect_ai/log/_samples.py +14 -25
  72. inspect_ai/log/_transcript.py +84 -36
  73. inspect_ai/log/_tree.py +118 -0
  74. inspect_ai/log/_util.py +52 -0
  75. inspect_ai/model/__init__.py +5 -1
  76. inspect_ai/model/_call_tools.py +72 -44
  77. inspect_ai/model/_generate_config.py +14 -8
  78. inspect_ai/model/_model.py +66 -88
  79. inspect_ai/model/_model_output.py +25 -0
  80. inspect_ai/model/_openai.py +2 -0
  81. inspect_ai/model/_providers/anthropic.py +13 -23
  82. inspect_ai/model/_providers/hf.py +27 -1
  83. inspect_ai/model/_providers/openai_o1.py +8 -2
  84. inspect_ai/model/_providers/providers.py +18 -4
  85. inspect_ai/model/_providers/sglang.py +247 -0
  86. inspect_ai/model/_providers/vllm.py +211 -400
  87. inspect_ai/scorer/_choice.py +1 -2
  88. inspect_ai/solver/__init__.py +7 -2
  89. inspect_ai/solver/_basic_agent.py +3 -10
  90. inspect_ai/solver/_chain.py +1 -1
  91. inspect_ai/solver/_fork.py +1 -1
  92. inspect_ai/solver/_multiple_choice.py +5 -22
  93. inspect_ai/solver/_plan.py +2 -2
  94. inspect_ai/solver/_task_state.py +26 -88
  95. inspect_ai/solver/_transcript.py +6 -7
  96. inspect_ai/tool/_json_rpc_helpers.py +45 -17
  97. inspect_ai/tool/_mcp/_mcp.py +8 -5
  98. inspect_ai/tool/_mcp/_sandbox.py +8 -2
  99. inspect_ai/tool/_mcp/server.py +3 -1
  100. inspect_ai/tool/_tool_call.py +4 -1
  101. inspect_ai/tool/_tool_support_helpers.py +51 -12
  102. inspect_ai/tool/_tools/_bash_session.py +190 -68
  103. inspect_ai/tool/_tools/_computer/_computer.py +25 -1
  104. inspect_ai/tool/_tools/_execute.py +4 -1
  105. inspect_ai/tool/_tools/_text_editor.py +4 -3
  106. inspect_ai/tool/_tools/_web_browser/_web_browser.py +10 -3
  107. inspect_ai/util/__init__.py +16 -0
  108. inspect_ai/util/_anyio.py +11 -0
  109. inspect_ai/util/_collect.py +50 -0
  110. inspect_ai/util/_limit.py +393 -0
  111. inspect_ai/util/_limited_conversation.py +57 -0
  112. inspect_ai/util/_span.py +58 -0
  113. inspect_ai/util/_subtask.py +27 -42
  114. {inspect_ai-0.3.92.dist-info → inspect_ai-0.3.94.dist-info}/METADATA +1 -1
  115. {inspect_ai-0.3.92.dist-info → inspect_ai-0.3.94.dist-info}/RECORD +120 -134
  116. {inspect_ai-0.3.92.dist-info → inspect_ai-0.3.94.dist-info}/WHEEL +1 -1
  117. inspect_ai/_display/core/group.py +0 -79
  118. inspect_ai/solver/_limit.py +0 -39
  119. inspect_ai/tool/_tools/_computer/_resources/Dockerfile +0 -102
  120. inspect_ai/tool/_tools/_computer/_resources/README.md +0 -30
  121. inspect_ai/tool/_tools/_computer/_resources/entrypoint/entrypoint.sh +0 -18
  122. inspect_ai/tool/_tools/_computer/_resources/entrypoint/novnc_startup.sh +0 -20
  123. inspect_ai/tool/_tools/_computer/_resources/entrypoint/x11vnc_startup.sh +0 -48
  124. inspect_ai/tool/_tools/_computer/_resources/entrypoint/xfce_startup.sh +0 -13
  125. inspect_ai/tool/_tools/_computer/_resources/entrypoint/xvfb_startup.sh +0 -48
  126. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb +0 -0
  127. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/settings.json +0 -9
  128. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +0 -61
  129. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml +0 -10
  130. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml +0 -91
  131. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop +0 -10
  132. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Terminal.desktop +0 -10
  133. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop +0 -10
  134. inspect_ai/tool/_tools/_computer/_resources/tool/.pylintrc +0 -8
  135. inspect_ai/tool/_tools/_computer/_resources/tool/.vscode/settings.json +0 -12
  136. inspect_ai/tool/_tools/_computer/_resources/tool/_args.py +0 -78
  137. inspect_ai/tool/_tools/_computer/_resources/tool/_constants.py +0 -22
  138. inspect_ai/tool/_tools/_computer/_resources/tool/_logger.py +0 -22
  139. inspect_ai/tool/_tools/_computer/_resources/tool/_run.py +0 -42
  140. inspect_ai/tool/_tools/_computer/_resources/tool/_tool_result.py +0 -33
  141. inspect_ai/tool/_tools/_computer/_resources/tool/_x11_client.py +0 -341
  142. inspect_ai/tool/_tools/_computer/_resources/tool/computer_tool.py +0 -141
  143. inspect_ai/tool/_tools/_computer/_resources/tool/pyproject.toml +0 -65
  144. inspect_ai/tool/_tools/_computer/_resources/tool/requirements.txt +0 -0
  145. inspect_ai/tool/_tools/_computer/test_args.py +0 -151
  146. /inspect_ai/{tool/_tools/_computer/_resources/tool/__init__.py → _view/www/src/app/log-view/tabs/ModelsTab.module.css} +0 -0
  147. {inspect_ai-0.3.92.dist-info → inspect_ai-0.3.94.dist-info}/entry_points.txt +0 -0
  148. {inspect_ai-0.3.92.dist-info → inspect_ai-0.3.94.dist-info}/licenses/LICENSE +0 -0
  149. {inspect_ai-0.3.92.dist-info → inspect_ai-0.3.94.dist-info}/top_level.txt +0 -0
@@ -15695,37 +15695,37 @@ pre[class*="language-"] {
15695
15695
  opacity: 0;
15696
15696
  }
15697
15697
  }
15698
- ._table_9qith_1 {
15698
+ ._table_1t3ts_1 {
15699
15699
  padding-left: 0;
15700
15700
  margin-left: 0;
15701
15701
  margin-bottom: 0.2rem;
15702
15702
  }
15703
15703
 
15704
- ._th_9qith_7 {
15704
+ ._th_1t3ts_7 {
15705
15705
  padding: 0;
15706
15706
  }
15707
15707
 
15708
- ._cell_9qith_11 {
15709
- padding: 0em 0.5em 0.3em 0em !important;
15708
+ ._cell_1t3ts_11 {
15709
+ padding: 0em 0.7em 0.3em 0em !important;
15710
15710
  }
15711
15711
 
15712
- ._compact_9qith_15 ._cell_9qith_11 {
15712
+ ._compact_1t3ts_15 ._cell_1t3ts_11 {
15713
15713
  padding: 0;
15714
15714
  }
15715
15715
 
15716
- ._cellKey_9qith_19 {
15716
+ ._cellKey_1t3ts_19 {
15717
15717
  font-weight: 400;
15718
15718
  padding-right: 1em;
15719
15719
  white-space: nowrap;
15720
15720
  }
15721
15721
 
15722
- ._compact_9qith_15 ._cellKey_9qith_19 {
15722
+ ._compact_1t3ts_15 ._cellKey_1t3ts_19 {
15723
15723
  font-weight: 400;
15724
15724
  padding-right: 0.2em;
15725
15725
  white-space: nowrap;
15726
15726
  }
15727
15727
 
15728
- ._cellValue_9qith_31 {
15728
+ ._cellValue_1t3ts_31 {
15729
15729
  font-weight: 300;
15730
15730
  white-space: pre-wrap;
15731
15731
  word-wrap: anywhere;
@@ -16557,6 +16557,49 @@ pre[class*="language-"] {
16557
16557
  overflow-y: hidden;
16558
16558
  display: flex;
16559
16559
  }
16560
+ .message-band {
16561
+ grid-template-columns: max-content auto max-content;
16562
+ align-items: center;
16563
+ column-gap: 0.5em;
16564
+ font-size: var(--inspect-font-size-small);
16565
+ border-bottom: solid 1px var(--bs-light-border-subtle);
16566
+ padding: 0.3em 1em;
16567
+ display: grid;
16568
+ }
16569
+
16570
+ .message-band.hidden {
16571
+ display: none;
16572
+ }
16573
+
16574
+ .message-band.info {
16575
+ background-color: var(--bs-light);
16576
+ }
16577
+
16578
+ .message-band.warning {
16579
+ background-color: var(--bs-warning-bg-subtle);
16580
+ color: var(--bs-warning-text-emphasis);
16581
+ }
16582
+
16583
+ .message-band.error {
16584
+ background-color: var(--bs-error-bg-subtle);
16585
+ color: var(--bs-error-text-emphasis);
16586
+ }
16587
+
16588
+ .message-band-btn {
16589
+ font-size: var(--inspect-font-size-title-secondary);
16590
+ margin: 0;
16591
+ padding: 0;
16592
+ height: var(--inspect-font-size-title-secondary);
16593
+ line-height: var(--inspect-font-size-title-secondary);
16594
+ }
16595
+
16596
+ .message-band-btn.error {
16597
+ color: var(--bs-error-text-emphasis);
16598
+ }
16599
+
16600
+ .message-band-btn.warning {
16601
+ color: var(--bs-warning-text-emphasis);
16602
+ }
16560
16603
  .card-header-container {
16561
16604
  display: grid;
16562
16605
  grid-template-columns: max-content auto;
@@ -16582,7 +16625,6 @@ pre[class*="language-"] {
16582
16625
  background-color: var(--bs-light-bg-subtle);
16583
16626
  border: solid 1px var(--bs-light-border-subtle);
16584
16627
  border-radius: var(--bs-border-radius);
16585
- margin-bottom: 1.5em;
16586
16628
  }
16587
16629
 
16588
16630
  .card-collaping-header {
@@ -16617,147 +16659,25 @@ pre[class*="language-"] {
16617
16659
  padding: 0 0.5em 0.1em 0.5em;
16618
16660
  font-size: var(--inspect-font-size-smaller);
16619
16661
  }
16620
- ._wrapper_sq96g_1 {
16621
- display: grid;
16622
- grid-template-columns: 0 auto auto;
16623
- column-gap: 1.5em;
16624
- row-gap: 0.2em;
16625
- }
16626
-
16627
- ._col2_sq96g_8 {
16628
- grid-column: 2;
16629
- }
16630
-
16631
- ._col1_3_sq96g_12 {
16632
- grid-column: 1/3;
16633
- }
16634
-
16635
- ._col3_sq96g_16 {
16636
- grid-column: 3;
16637
- }
16638
-
16639
- ._separator_sq96g_20 {
16640
- grid-column: -1/1;
16641
- height: 1px;
16642
- background-color: var(--bs-light-border-subtle);
16643
- }
16644
-
16645
- ._padded_sq96g_26 {
16646
- margin-bottom: 1em;
16647
- }
16648
- ._table_dbhwb_1 {
16649
- width: 100%;
16650
- margin-top: 0.7rem;
16651
- }
16652
-
16653
- ._tableTokens_dbhwb_6 {
16654
- padding-bottom: 0.7rem;
16655
- }
16656
-
16657
- ._tableH_dbhwb_10 {
16658
- padding: 0;
16659
- font-weight: 300;
16660
- }
16661
-
16662
- ._model_dbhwb_15 {
16663
- padding-right: 1em;
16664
- }
16665
- ._wrapper_11ije_1 {
16666
- padding-top: 0;
16667
- padding-bottom: 1em;
16668
- margin-left: 0.5em;
16669
- display: flex;
16670
- }
16671
-
16672
- ._col1_11ije_8 {
16673
- flex: 1 1 40%;
16674
- margin-right: 1em;
16675
- }
16676
-
16677
- ._col2_11ije_13 {
16678
- flex: 1 1 60%;
16679
- }
16680
- ._task-error-display_1624b_1 {
16681
- font-size: clamp(0.2rem, calc(0.2em + 0.93vw), 0.9rem);
16682
- }
16683
- .message-band {
16684
- grid-template-columns: max-content auto max-content;
16685
- align-items: center;
16686
- column-gap: 0.5em;
16687
- font-size: var(--inspect-font-size-small);
16688
- border-bottom: solid 1px var(--bs-light-border-subtle);
16689
- padding: 0.3em 1em;
16690
- display: grid;
16691
- }
16692
-
16693
- .message-band.hidden {
16694
- display: none;
16695
- }
16696
-
16697
- .message-band.info {
16698
- background-color: var(--bs-light);
16699
- }
16700
-
16701
- .message-band.warning {
16702
- background-color: var(--bs-warning-bg-subtle);
16703
- color: var(--bs-warning-text-emphasis);
16704
- }
16705
-
16706
- .message-band.error {
16707
- background-color: var(--bs-error-bg-subtle);
16708
- color: var(--bs-error-text-emphasis);
16709
- }
16710
-
16711
- .message-band-btn {
16712
- font-size: var(--inspect-font-size-title-secondary);
16713
- margin: 0;
16714
- padding: 0;
16715
- height: var(--inspect-font-size-title-secondary);
16716
- line-height: var(--inspect-font-size-title-secondary);
16717
- }
16718
-
16719
- .message-band-btn.error {
16720
- color: var(--bs-error-text-emphasis);
16721
- }
16722
-
16723
- .message-band-btn.warning {
16724
- color: var(--bs-warning-text-emphasis);
16662
+ ._item_1uzhd_1 {
16663
+ margin-bottom: 0em;
16725
16664
  }
16726
- ._grid_ktnsp_1 {
16665
+ ._grid_ax2xo_1 {
16727
16666
  display: grid;
16728
16667
  grid-template-columns: max-content auto;
16729
- column-gap: 1em;
16668
+ column-gap: 0.5em;
16730
16669
  row-gap: 0.2em;
16731
16670
  }
16732
16671
 
16733
- ._cell_ktnsp_8 {
16672
+ ._cell_ax2xo_8 {
16734
16673
  font-weight: 400;
16735
16674
  white-space: nowrap;
16736
16675
  }
16737
16676
 
16738
- ._value_ktnsp_13 {
16677
+ ._value_ax2xo_13 {
16739
16678
  white-space: pre-wrap;
16740
16679
  word-wrap: anywhere;
16741
16680
  }
16742
- ._container_304w9_1 {
16743
- display: grid;
16744
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
16745
- row-gap: 2em;
16746
- column-gap: 1em;
16747
- }
16748
-
16749
- ._modelInfo_304w9_8 {
16750
- display: grid;
16751
- grid-template-columns: max-content auto;
16752
- column-gap: 1em;
16753
- }
16754
-
16755
- ._role_304w9_14 {
16756
- grid-column: -1/1;
16757
- }
16758
- ._item_1uzhd_1 {
16759
- margin-bottom: 0em;
16760
- }
16761
16681
  ._icon_59zaz_1 {
16762
16682
  margin-right: 0.3rem;
16763
16683
  }
@@ -16787,7 +16707,7 @@ pre[class*="language-"] {
16787
16707
  margin-top: 0;
16788
16708
  margin-bottom: -0.1em;
16789
16709
  }
16790
- ._floatingCol_q6xma_1 {
16710
+ ._floatingCol_1y1hk_1 {
16791
16711
  flex: 0 1 1;
16792
16712
  width: unset;
16793
16713
  text-align: left;
@@ -16795,32 +16715,32 @@ pre[class*="language-"] {
16795
16715
  padding-right: 0.6rem;
16796
16716
  }
16797
16717
 
16798
- ._wideCol_q6xma_9 {
16718
+ ._wideCol_1y1hk_9 {
16799
16719
  flex: 1 1 1;
16800
16720
  width: unset;
16801
16721
  padding-left: 0.6rem;
16802
16722
  padding-right: 0.6rem;
16803
16723
  }
16804
16724
 
16805
- ._oneCol_q6xma_16 {
16725
+ ._oneCol_1y1hk_16 {
16806
16726
  flex: 0 0 100%;
16807
16727
  }
16808
16728
 
16809
- ._twoCol_q6xma_20 {
16729
+ ._twoCol_1y1hk_20 {
16810
16730
  flex: 0 0 50%;
16811
16731
  }
16812
16732
 
16813
- ._planCol_q6xma_24 {
16814
- margin-top: em;
16733
+ ._planCol_1y1hk_24 {
16734
+ margin-top: 0;
16815
16735
  }
16816
16736
 
16817
- ._container_q6xma_28 {
16737
+ ._container_1y1hk_28 {
16818
16738
  padding-top: 0;
16819
16739
  padding-bottom: 1em;
16820
16740
  margin-left: 0;
16821
16741
  }
16822
16742
 
16823
- ._grid_q6xma_34 {
16743
+ ._grid_1y1hk_34 {
16824
16744
  display: grid;
16825
16745
  justify-content: space-between;
16826
16746
  flex-wrap: wrap;
@@ -16828,13 +16748,16 @@ pre[class*="language-"] {
16828
16748
  margin-bottom: 0.5em;
16829
16749
  }
16830
16750
 
16831
- ._row_q6xma_42 {
16751
+ ._row_1y1hk_42 {
16832
16752
  display: grid;
16833
16753
  grid-template-columns: 1fr 1fr;
16834
16754
  grid-template-rows: auto;
16835
16755
  margin-left: 0.5em;
16836
16756
  gap: 1em;
16837
16757
  }
16758
+ ._task-error-display_1624b_1 {
16759
+ font-size: clamp(0.2rem, calc(0.2em + 0.93vw), 0.9rem);
16760
+ }
16838
16761
  .download-button {
16839
16762
  margin-top: 3em;
16840
16763
  font-size: var(--inspect-font-size-small);
@@ -16857,6 +16780,90 @@ pre[class*="language-"] {
16857
16780
  font-size: var(--inspect-font-size-small);
16858
16781
  width: 100%;
16859
16782
  }
16783
+ ._container_304w9_1 {
16784
+ display: grid;
16785
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
16786
+ row-gap: 2em;
16787
+ column-gap: 1em;
16788
+ }
16789
+
16790
+ ._modelInfo_304w9_8 {
16791
+ display: grid;
16792
+ grid-template-columns: max-content auto;
16793
+ column-gap: 1em;
16794
+ }
16795
+
16796
+ ._role_304w9_14 {
16797
+ grid-column: -1/1;
16798
+ }
16799
+ ._wrapper_sq96g_1 {
16800
+ display: grid;
16801
+ grid-template-columns: 0 auto auto;
16802
+ column-gap: 1.5em;
16803
+ row-gap: 0.2em;
16804
+ }
16805
+
16806
+ ._col2_sq96g_8 {
16807
+ grid-column: 2;
16808
+ }
16809
+
16810
+ ._col1_3_sq96g_12 {
16811
+ grid-column: 1/3;
16812
+ }
16813
+
16814
+ ._col3_sq96g_16 {
16815
+ grid-column: 3;
16816
+ }
16817
+
16818
+ ._separator_sq96g_20 {
16819
+ grid-column: -1/1;
16820
+ height: 1px;
16821
+ background-color: var(--bs-light-border-subtle);
16822
+ }
16823
+
16824
+ ._padded_sq96g_26 {
16825
+ margin-bottom: 1em;
16826
+ }
16827
+ ._table_z217i_1 {
16828
+ width: 100%;
16829
+ }
16830
+
16831
+ ._tableTokens_z217i_5 {
16832
+ padding-bottom: 0.7rem;
16833
+ }
16834
+
16835
+ ._tableH_z217i_9 {
16836
+ padding: 0;
16837
+ font-weight: 300;
16838
+ }
16839
+
16840
+ ._model_z217i_14 {
16841
+ padding-right: 1em;
16842
+ }
16843
+
16844
+ ._cellContents_z217i_18 {
16845
+ padding-bottom: 1em;
16846
+ }
16847
+ ._wrapper_14r3b_1 {
16848
+ padding-top: 0;
16849
+ padding-bottom: 1em;
16850
+ margin-left: 0.5em;
16851
+ display: flex;
16852
+ flex-wrap: wrap;
16853
+ gap: 1em;
16854
+ }
16855
+
16856
+ ._col1_14r3b_10 {
16857
+ flex: 0 1 auto;
16858
+ min-width: 200px;
16859
+ width: fit-content;
16860
+ }
16861
+
16862
+ ._col2_14r3b_16 {
16863
+ flex: 1 1 auto;
16864
+ min-width: 300px;
16865
+ width: fit-content;
16866
+ }
16860
16867
  ._panel_twp3v_1 {
16861
16868
  width: 100%;
16862
16869
  display: flex;
@@ -17335,37 +17342,38 @@ pre[class*="language-"] {
17335
17342
  ._metadata_1a3fk_21 {
17336
17343
  margin: 0.5em 0;
17337
17344
  }
17338
- ._contents_iwnfd_1 {
17345
+ ._contents_1irga_1 {
17339
17346
  margin-top: 0.5em;
17340
17347
  }
17341
17348
 
17342
- ._contents_iwnfd_1 > :last-child {
17349
+ ._contents_1irga_1 > :last-child {
17343
17350
  margin-bottom: 0;
17344
17351
  }
17345
17352
 
17346
- ._twoColumn_iwnfd_9 {
17353
+ ._twoColumn_1irga_9 {
17347
17354
  display: grid;
17348
17355
  grid-template-columns: auto 1fr;
17349
17356
  column-gap: 1.5em;
17350
17357
  }
17351
17358
 
17352
- ._exec_iwnfd_15 {
17353
- margin-top: 0.5em;
17359
+ ._exec_1irga_15 {
17360
+ margin-top: 0;
17354
17361
  }
17355
17362
 
17356
- ._result_iwnfd_19 {
17363
+ ._result_1irga_19 {
17357
17364
  margin-top: 0.5em;
17358
17365
  }
17359
17366
 
17360
- ._fileLabel_iwnfd_23 {
17367
+ ._fileLabel_1irga_23 {
17361
17368
  margin-top: 0;
17362
17369
  margin-bottom: 0;
17363
17370
  }
17364
17371
 
17365
- ._wrapPre_iwnfd_28 {
17372
+ ._wrapPre_1irga_28 {
17366
17373
  white-space: pre-wrap;
17367
17374
  word-wrap: break-word;
17368
17375
  overflow-wrap: break-word;
17376
+ margin-bottom: 0;
17369
17377
  }
17370
17378
  ._explanation_1ww42_1 {
17371
17379
  display: grid;
@@ -19994,20 +20002,20 @@ span.ap-marker-container:hover span.ap-marker {
19994
20002
  padding-top: 0rem;
19995
20003
  margin-top: -8px;
19996
20004
  }
19997
- ._darkenedBg_1sie6_1 {
20005
+ ._darkenedBg_u9na2_1 {
19998
20006
  background-color: var(--bs-light-bg-subtle);
19999
20007
  }
20000
20008
 
20001
- ._normalBg_1sie6_5 {
20009
+ ._normalBg_u9na2_5 {
20002
20010
  background-color: var(--bs-body-bg);
20003
20011
  }
20004
20012
 
20005
- ._node_1sie6_9 {
20013
+ ._node_u9na2_9 {
20006
20014
  padding-top: 0.7rem;
20007
- padding-bottom: 0em;
20015
+ padding-bottom: 1px;
20008
20016
  }
20009
20017
 
20010
- ._attached_1sie6_14 {
20018
+ ._attached_u9na2_14 {
20011
20019
  padding-top: 0rem;
20012
20020
  margin-top: -8px;
20013
20021
  }
@@ -20275,3 +20283,9 @@ span.ap-marker-container:hover span.ap-marker {
20275
20283
  ._text_1yknn_20 {
20276
20284
  margin-top: -2px;
20277
20285
  }
20286
+ ._grid_er9fb_1 {
20287
+ display: grid;
20288
+ grid-template-columns: fit-content(50%) fit-content(50%);
20289
+ column-gap: 3em;
20290
+ align-items: flex-start;
20291
+ }