inspect-ai 0.3.91__py3-none-any.whl → 0.3.93__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 (118) hide show
  1. inspect_ai/_cli/eval.py +31 -0
  2. inspect_ai/_eval/eval.py +19 -2
  3. inspect_ai/_eval/evalset.py +4 -1
  4. inspect_ai/_eval/run.py +41 -0
  5. inspect_ai/_eval/task/generate.py +38 -44
  6. inspect_ai/_eval/task/log.py +26 -28
  7. inspect_ai/_eval/task/run.py +13 -20
  8. inspect_ai/_util/local_server.py +368 -0
  9. inspect_ai/_util/working.py +10 -4
  10. inspect_ai/_view/www/dist/assets/index.css +159 -146
  11. inspect_ai/_view/www/dist/assets/index.js +1020 -1061
  12. inspect_ai/_view/www/log-schema.json +4 -3
  13. inspect_ai/_view/www/package.json +1 -1
  14. inspect_ai/_view/www/src/@types/log.d.ts +3 -2
  15. inspect_ai/_view/www/src/app/content/MetaDataGrid.tsx +2 -2
  16. inspect_ai/_view/www/src/app/content/MetaDataView.module.css +1 -1
  17. inspect_ai/_view/www/src/app/content/MetadataGrid.module.css +1 -1
  18. inspect_ai/_view/www/src/app/content/RenderedContent.tsx +1 -1
  19. inspect_ai/_view/www/src/app/log-view/LogView.tsx +11 -0
  20. inspect_ai/_view/www/src/app/log-view/tabs/InfoTab.tsx +2 -9
  21. inspect_ai/_view/www/src/app/log-view/tabs/ModelsTab.tsx +51 -0
  22. inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.module.css +6 -0
  23. inspect_ai/_view/www/src/app/log-view/tabs/TaskTab.tsx +143 -0
  24. inspect_ai/_view/www/src/app/plan/ModelCard.tsx +1 -2
  25. inspect_ai/_view/www/src/app/plan/PlanCard.tsx +29 -7
  26. inspect_ai/_view/www/src/app/plan/PlanDetailView.module.css +1 -1
  27. inspect_ai/_view/www/src/app/plan/PlanDetailView.tsx +1 -198
  28. inspect_ai/_view/www/src/app/samples/descriptor/score/NumericScoreDescriptor.tsx +2 -1
  29. inspect_ai/_view/www/src/app/usage/ModelUsagePanel.tsx +3 -2
  30. inspect_ai/_view/www/src/app/usage/TokenTable.module.css +4 -1
  31. inspect_ai/_view/www/src/app/usage/TokenTable.tsx +2 -2
  32. inspect_ai/_view/www/src/app/usage/UsageCard.module.css +8 -3
  33. inspect_ai/_view/www/src/app/usage/UsageCard.tsx +1 -35
  34. inspect_ai/_view/www/src/components/Card.css +0 -1
  35. inspect_ai/_view/www/src/constants.ts +2 -0
  36. inspect_ai/_view/www/src/utils/numeric.ts +17 -0
  37. inspect_ai/agent/_agent.py +3 -3
  38. inspect_ai/agent/_as_solver.py +20 -12
  39. inspect_ai/agent/_as_tool.py +15 -3
  40. inspect_ai/agent/_handoff.py +8 -1
  41. inspect_ai/agent/_run.py +11 -3
  42. inspect_ai/log/__init__.py +4 -0
  43. inspect_ai/log/_file.py +56 -0
  44. inspect_ai/log/_log.py +99 -0
  45. inspect_ai/log/_recorders/__init__.py +2 -0
  46. inspect_ai/log/_recorders/buffer/database.py +12 -11
  47. inspect_ai/log/_recorders/buffer/filestore.py +2 -2
  48. inspect_ai/log/_recorders/buffer/types.py +2 -2
  49. inspect_ai/log/_recorders/eval.py +20 -65
  50. inspect_ai/log/_recorders/file.py +28 -6
  51. inspect_ai/log/_recorders/recorder.py +7 -0
  52. inspect_ai/log/_recorders/types.py +1 -23
  53. inspect_ai/log/_samples.py +0 -8
  54. inspect_ai/log/_transcript.py +7 -1
  55. inspect_ai/log/_util.py +52 -0
  56. inspect_ai/model/__init__.py +5 -1
  57. inspect_ai/model/_call_tools.py +32 -12
  58. inspect_ai/model/_generate_config.py +14 -8
  59. inspect_ai/model/_model.py +21 -48
  60. inspect_ai/model/_model_output.py +25 -0
  61. inspect_ai/model/_openai.py +2 -0
  62. inspect_ai/model/_openai_responses.py +13 -1
  63. inspect_ai/model/_providers/anthropic.py +13 -23
  64. inspect_ai/model/_providers/openai_o1.py +8 -2
  65. inspect_ai/model/_providers/providers.py +18 -4
  66. inspect_ai/model/_providers/sglang.py +241 -0
  67. inspect_ai/model/_providers/vllm.py +207 -400
  68. inspect_ai/solver/__init__.py +7 -2
  69. inspect_ai/solver/_basic_agent.py +3 -10
  70. inspect_ai/solver/_task_state.py +26 -88
  71. inspect_ai/tool/_json_rpc_helpers.py +45 -17
  72. inspect_ai/tool/_mcp/_mcp.py +2 -0
  73. inspect_ai/tool/_mcp/_sandbox.py +8 -2
  74. inspect_ai/tool/_mcp/server.py +3 -1
  75. inspect_ai/tool/_tool_call.py +4 -1
  76. inspect_ai/tool/_tool_support_helpers.py +51 -12
  77. inspect_ai/tool/_tools/_bash_session.py +190 -68
  78. inspect_ai/tool/_tools/_computer/_computer.py +25 -1
  79. inspect_ai/tool/_tools/_text_editor.py +4 -3
  80. inspect_ai/tool/_tools/_web_browser/_web_browser.py +10 -3
  81. inspect_ai/util/__init__.py +12 -0
  82. inspect_ai/util/_limit.py +393 -0
  83. inspect_ai/util/_limited_conversation.py +57 -0
  84. {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/METADATA +1 -1
  85. {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/RECORD +90 -109
  86. {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/WHEEL +1 -1
  87. inspect_ai/solver/_limit.py +0 -39
  88. inspect_ai/tool/_tools/_computer/_resources/Dockerfile +0 -102
  89. inspect_ai/tool/_tools/_computer/_resources/README.md +0 -30
  90. inspect_ai/tool/_tools/_computer/_resources/entrypoint/entrypoint.sh +0 -18
  91. inspect_ai/tool/_tools/_computer/_resources/entrypoint/novnc_startup.sh +0 -20
  92. inspect_ai/tool/_tools/_computer/_resources/entrypoint/x11vnc_startup.sh +0 -48
  93. inspect_ai/tool/_tools/_computer/_resources/entrypoint/xfce_startup.sh +0 -13
  94. inspect_ai/tool/_tools/_computer/_resources/entrypoint/xvfb_startup.sh +0 -48
  95. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb +0 -0
  96. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/Code/User/settings.json +0 -9
  97. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +0 -61
  98. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml +0 -10
  99. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml +0 -91
  100. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop +0 -10
  101. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Terminal.desktop +0 -10
  102. inspect_ai/tool/_tools/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop +0 -10
  103. inspect_ai/tool/_tools/_computer/_resources/tool/.pylintrc +0 -8
  104. inspect_ai/tool/_tools/_computer/_resources/tool/.vscode/settings.json +0 -12
  105. inspect_ai/tool/_tools/_computer/_resources/tool/_args.py +0 -78
  106. inspect_ai/tool/_tools/_computer/_resources/tool/_constants.py +0 -22
  107. inspect_ai/tool/_tools/_computer/_resources/tool/_logger.py +0 -22
  108. inspect_ai/tool/_tools/_computer/_resources/tool/_run.py +0 -42
  109. inspect_ai/tool/_tools/_computer/_resources/tool/_tool_result.py +0 -33
  110. inspect_ai/tool/_tools/_computer/_resources/tool/_x11_client.py +0 -341
  111. inspect_ai/tool/_tools/_computer/_resources/tool/computer_tool.py +0 -141
  112. inspect_ai/tool/_tools/_computer/_resources/tool/pyproject.toml +0 -65
  113. inspect_ai/tool/_tools/_computer/_resources/tool/requirements.txt +0 -0
  114. inspect_ai/tool/_tools/_computer/test_args.py +0 -151
  115. /inspect_ai/{tool/_tools/_computer/_resources/tool/__init__.py → _view/www/src/app/log-view/tabs/ModelsTab.module.css} +0 -0
  116. {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/entry_points.txt +0 -0
  117. {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.dist-info}/licenses/LICENSE +0 -0
  118. {inspect_ai-0.3.91.dist-info → inspect_ai-0.3.93.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;
@@ -20275,3 +20282,9 @@ span.ap-marker-container:hover span.ap-marker {
20275
20282
  ._text_1yknn_20 {
20276
20283
  margin-top: -2px;
20277
20284
  }
20285
+ ._grid_er9fb_1 {
20286
+ display: grid;
20287
+ grid-template-columns: fit-content(50%) fit-content(50%);
20288
+ column-gap: 3em;
20289
+ align-items: flex-start;
20290
+ }