diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2025-11-19 18:38:25 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2026-01-05 09:14:02 +0000 |
| commit | 77200b36494dbf8f7aa1500fbf5976585fffdb66 (patch) | |
| tree | b3b17c991bf49a7ef78b297166d26427c808e66e /pkg/html | |
| parent | d65130ca2efd4a9ccb21068e3d9cefaf365e8dc6 (diff) | |
dashboard/app: add support for AI workflows
Support for:
- polling for AI jobs
- handling completion of AI jobs
- submitting job trajectory logs
- basic visualization for AI jobs
Diffstat (limited to 'pkg/html')
| -rw-r--r-- | pkg/html/pages/style.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index aecc40b7e..f353bb583 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -379,6 +379,28 @@ aside { margin: 1px; } +#ai_result_div { + align: left; + width: 90%; + margin: 0 0; + overflow: scroll; + border: 1px solid #777; + padding: 0px; + background: #F4F4F4; +} + +#ai_result_div pre { + margin: 1px; + font-family: 'Courier New', Courier, monospace; +} + +#ai_details_div pre { + margin: 1px; + max-width: 120ch; + white-space: pre-wrap; + overflow-wrap: break-word; +} + .input-values { margin-left: 7px; margin-bottom: 7px; @@ -514,4 +536,4 @@ aside { } .rank:hover .tooltiptext { visibility: visible; -}
\ No newline at end of file +} |
