Skip to content

Commit e708c1d

Browse files
committed
fix: point non-beam manifest entries at real rag/ blob paths
Non-beam datasets still have their files under outputs/<dataset>/*/rag/ on disk and in Vercel Blob; only the display label was renamed to "single-query". Commit 2aab8be dropped the rag entries but kept the single-query duplicates, so every non-beam result link resolved to a path that existed nowhere and 404'd via the blob CDN fallback. Rewrite those 10 paths to the actual rag/*.json.gz locations; the mode label stays "single-query".
1 parent 3e92541 commit e708c1d

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

results-manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"category": null
6565
},
6666
{
67-
"path": "outputs/lifebench/hindsight/single-query/en.json",
67+
"path": "outputs/lifebench/hindsight/rag/en.json.gz",
6868
"dataset": "lifebench",
6969
"run_name": "hindsight",
7070
"memory": "hindsight",
@@ -80,7 +80,7 @@
8080
"category": null
8181
},
8282
{
83-
"path": "outputs/lifebench/hybrid-search/single-query/en.json",
83+
"path": "outputs/lifebench/hybrid-search/rag/en.json.gz",
8484
"dataset": "lifebench",
8585
"run_name": "hybrid-search",
8686
"memory": "hybrid-search",
@@ -96,7 +96,7 @@
9696
"category": null
9797
},
9898
{
99-
"path": "outputs/locomo/cognee/single-query/locomo10.json",
99+
"path": "outputs/locomo/cognee/rag/locomo10.json.gz",
100100
"dataset": "locomo",
101101
"run_name": "cognee",
102102
"memory": "cognee",
@@ -112,7 +112,7 @@
112112
"category": null
113113
},
114114
{
115-
"path": "outputs/locomo/hybrid-search/single-query/locomo10.json",
115+
"path": "outputs/locomo/hybrid-search/rag/locomo10.json.gz",
116116
"dataset": "locomo",
117117
"run_name": "hybrid-search",
118118
"memory": "hybrid-search",
@@ -128,7 +128,7 @@
128128
"category": null
129129
},
130130
{
131-
"path": "outputs/locomo/locomo-hindsight/single-query/locomo10.json",
131+
"path": "outputs/locomo/locomo-hindsight/rag/locomo10.json.gz",
132132
"dataset": "locomo",
133133
"run_name": "locomo-hindsight",
134134
"memory": "hindsight",
@@ -144,7 +144,7 @@
144144
"category": null
145145
},
146146
{
147-
"path": "outputs/longmemeval/hindsight/single-query/s.json",
147+
"path": "outputs/longmemeval/hindsight/rag/s.json.gz",
148148
"dataset": "longmemeval",
149149
"run_name": "hindsight",
150150
"memory": "hindsight",
@@ -160,7 +160,7 @@
160160
"category": null
161161
},
162162
{
163-
"path": "outputs/longmemeval/hybrid-search/single-query/s.json",
163+
"path": "outputs/longmemeval/hybrid-search/rag/s.json.gz",
164164
"dataset": "longmemeval",
165165
"run_name": "hybrid-search",
166166
"memory": "hybrid-search",
@@ -176,7 +176,7 @@
176176
"category": null
177177
},
178178
{
179-
"path": "outputs/personamem/cognee/single-query/32k.json",
179+
"path": "outputs/personamem/cognee/rag/32k.json.gz",
180180
"dataset": "personamem",
181181
"run_name": "cognee",
182182
"memory": "cognee",
@@ -192,7 +192,7 @@
192192
"category": null
193193
},
194194
{
195-
"path": "outputs/personamem/hindsight/single-query/32k.json",
195+
"path": "outputs/personamem/hindsight/rag/32k.json.gz",
196196
"dataset": "personamem",
197197
"run_name": "hindsight",
198198
"memory": "hindsight",
@@ -208,7 +208,7 @@
208208
"category": null
209209
},
210210
{
211-
"path": "outputs/personamem/hybrid-search/single-query/32k.json",
211+
"path": "outputs/personamem/hybrid-search/rag/32k.json.gz",
212212
"dataset": "personamem",
213213
"run_name": "hybrid-search",
214214
"memory": "hybrid-search",

0 commit comments

Comments
 (0)