Spaces:
Running
Running
Drop input_modalities/output_modalities from MODEL_CARD_COLUMNS
Browse filesThese columns aren't emitted by the Stage J producer's models_view,
so SELECTing them caused a DuckDB Binder Error that broke every
endpoint backed by getModelCards / getDeveloperSummaryById.
asArray(undefined) yields [], so the modalities shape stays valid.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- lib/view-data.ts +1 -1
lib/view-data.ts
CHANGED
|
@@ -38,7 +38,7 @@ const MODEL_CARD_COLUMNS = `
|
|
| 38 |
params_billions, benchmark_names, score_summary,
|
| 39 |
reproducibility_summary, provenance_summary, comparability_summary,
|
| 40 |
top_scores, source_urls, detail_urls,
|
| 41 |
-
model_url, release_date,
|
| 42 |
architecture, params, inference_engine, inference_platform
|
| 43 |
`
|
| 44 |
|
|
|
|
| 38 |
params_billions, benchmark_names, score_summary,
|
| 39 |
reproducibility_summary, provenance_summary, comparability_summary,
|
| 40 |
top_scores, source_urls, detail_urls,
|
| 41 |
+
model_url, release_date,
|
| 42 |
architecture, params, inference_engine, inference_platform
|
| 43 |
`
|
| 44 |
|