From 63ec886f1795bdb509b755a2a37579ac3596d438 Mon Sep 17 00:00:00 2001 From: Lukas Wuttke Date: Sat, 11 Jul 2026 08:57:54 +0200 Subject: [PATCH] feat(ingest): point users from dataset to creating a use case MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The end-of-ingest "What's next" said "ready for training jobs" and linked only the metadata page — which led a customer (Charité) to expect ingested data to appear in their benchmark automatically. It does not: ingest registers a standalone DATASET; to train/benchmark you create a use case and select it. New copy names the actual next step and links both destinations: Your data is registered as a dataset. View it at https://ai.tracebloc.io/metadata To train or benchmark models on it, create a use case at https://ai.tracebloc.io/my-use-cases Pick this dataset when you set it up. Prod-hardcoded on purpose (dev/stg are internal-only). Refs backend#1073. Co-Authored-By: Claude Opus 4.8 --- internal/submit/summary.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/submit/summary.go b/internal/submit/summary.go index 6168e936..a52f14b5 100644 --- a/internal/submit/summary.go +++ b/internal/submit/summary.go @@ -432,8 +432,9 @@ func RenderSummary(p *ui.Printer, s *Summary) { p.Field("success rate", fmt.Sprintf("%.1f%%", s.SuccessRate())) p.Section("What's next") - p.Infof("View it in the dashboard: https://ai.tracebloc.io/metadata") - p.Hintf("Your dataset is ready for training jobs.") + p.Infof("Your data is registered as a dataset. View it at https://ai.tracebloc.io/metadata") + p.Infof("To train or benchmark models on it, create a use case at https://ai.tracebloc.io/my-use-cases") + p.Hintf("Pick this dataset when you set it up.") } // commaSep formats an int64 with thousands-separator commas to