@metrevals/inspect-scout-viewer 0.3.153-beta.1765542109 → 0.4.3-beta.1765899631
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/api/api.d.ts +2 -0
- package/lib/api/jsonrpc.d.ts +1 -0
- package/lib/api/request.d.ts +1 -0
- package/lib/app/appearance/icons.d.ts +2 -0
- package/lib/app/components/ColumnHeader.d.ts +6 -0
- package/lib/app/components/Explanation.d.ts +12 -0
- package/lib/app/{values → components}/Identifier.d.ts +2 -2
- package/lib/app/components/Value.d.ts +15 -0
- package/lib/app/hooks.d.ts +6 -8
- package/lib/app/scanResults/ScanResultHeader.d.ts +10 -0
- package/lib/app/{result → scanResults}/info/InfoPanel.d.ts +2 -2
- package/lib/app/scanResults/metadata/MetadataPanel.d.ts +7 -0
- package/lib/app/scanResults/result/ResultBody.d.ts +7 -0
- package/lib/app/{result → scanResults}/result/ResultPanel.d.ts +2 -2
- package/lib/app/scanResults/result/ResultSidebar.d.ts +7 -0
- package/lib/app/{result → scanResults}/transcript/TranscriptPanel.d.ts +2 -2
- package/lib/app/scans/results/ScanDataframeClearFiltersButton.d.ts +2 -0
- package/lib/app/scans/results/ScanDataframeColumnsPopover.d.ts +5 -0
- package/lib/app/scans/results/ScanDataframeFilterColumnsButton.d.ts +1 -0
- package/lib/app/{scanner → scans}/results/list/ScanResultsRow.d.ts +2 -2
- package/lib/app/scans/results/types.d.ts +1 -0
- package/lib/app/server/hooks.d.ts +4 -0
- package/lib/app/types.d.ts +40 -62
- package/lib/app/utils/refs.d.ts +3 -2
- package/lib/app/utils/results.d.ts +4 -4
- package/lib/components/CopyButton.d.ts +2 -1
- package/lib/components/DataframeView.d.ts +1 -0
- package/lib/components/MarkdownDiv.d.ts +1 -0
- package/lib/components/MarkdownDivWithReferences.d.ts +3 -0
- package/lib/content/MetaDataGrid.d.ts +5 -2
- package/lib/content/RenderedText.d.ts +3 -0
- package/lib/content/types.d.ts +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +81652 -81092
- package/lib/index.js.map +1 -1
- package/lib/state/store.d.ts +11 -5
- package/lib/styles/index.css +367 -272
- package/lib/types/index.d.ts +4 -3
- package/package.json +6 -2
- package/lib/app/result/ScanResultHeader.d.ts +0 -7
- package/lib/app/result/input/InputPanel.d.ts +0 -6
- package/lib/app/values/Explanation.d.ts +0 -7
- package/lib/app/values/Value.d.ts +0 -10
- /package/lib/app/{values → components}/Error.d.ts +0 -0
- /package/lib/app/{navbar → components}/Navbar.d.ts +0 -0
- /package/lib/app/{values → components}/ValidationResult.d.ts +0 -0
- /package/lib/app/{navbar → components}/useBreadcrumbTruncation.d.ts +0 -0
- /package/lib/app/{result → scanResults}/ScanResultNav.d.ts +0 -0
- /package/lib/app/{result → scanResults}/ScanResultPanel.d.ts +0 -0
- /package/lib/app/{result → scanResults}/error/ErrorPanel.d.ts +0 -0
- /package/lib/app/{scanner → scans}/ScannerPanel.d.ts +0 -0
- /package/lib/app/{scanner → scans}/ScannerPanelBody.d.ts +0 -0
- /package/lib/app/{scanner → scans}/ScannerPanelTitle.d.ts +0 -0
- /package/lib/app/{scanner → scans}/info/ScanInfo.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanDataframeWrapTextButton.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsBody.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsFilter.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsGroup.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsOutline.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsPanel.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/ScanResultsSearch.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/list/ScanHeader.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/list/ScanResultsGroup.d.ts +0 -0
- /package/lib/app/{scanner → scans}/results/list/ScanResultsList.d.ts +0 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -34,9 +34,9 @@ export interface Model {
|
|
|
34
34
|
}
|
|
35
35
|
export interface Transcript {
|
|
36
36
|
type: string;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
location?: string;
|
|
38
|
+
transcript_ids: Record<string, string | null>;
|
|
39
|
+
count?: number;
|
|
40
40
|
}
|
|
41
41
|
export interface ScanSpec {
|
|
42
42
|
scan_file?: string;
|
|
@@ -64,6 +64,7 @@ export interface ScannerSummary {
|
|
|
64
64
|
tokens: number;
|
|
65
65
|
model_usage: Record<string, ModelUsage>;
|
|
66
66
|
validations: Array<boolean | Record<string, boolean>>;
|
|
67
|
+
metrics: Record<string, Record<string, number>>;
|
|
67
68
|
}
|
|
68
69
|
export interface ModelUsage {
|
|
69
70
|
input_tokens: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metrevals/inspect-scout-viewer",
|
|
3
|
-
"version": "0.3
|
|
3
|
+
"version": "0.4.3-beta.1765899631",
|
|
4
4
|
"description": "Inspect Scout viewer for evaluation logs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -14,10 +14,14 @@
|
|
|
14
14
|
],
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/meridianlabs-ai/inspect_scout",
|
|
18
18
|
"directory": "src/inspect_scout/_view/www"
|
|
19
19
|
},
|
|
20
20
|
"packageManager": "pnpm@10.20.0",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": "22.21.1",
|
|
23
|
+
"pnpm": ">=9.0.0"
|
|
24
|
+
},
|
|
21
25
|
"scripts": {
|
|
22
26
|
"build": "npm run build:app",
|
|
23
27
|
"build:lib": "vite build --mode library",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|