Prometheus is only designed for scraping "now" data - not for historical backfilling, nor for ingesting future values.
You could store the prediction in one metric, together with a separate metric containing the timestamp the prediction relates to, as a Unix time value (seconds since 1 Jan 1970).
Otherwise, you could look at alternatives like VictoriaMetrics or InfluxDB, which allow infilling of data at arbitrary timestamps.