Forecast a univariate time series via zero-shot Chronos-Bolt
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| values | JSON | Ordered array of numeric historical values |
| horizon | INTEGER | Number of future steps to predict |
Forecast a trended sinusoid, verify quantile struct shape
WITH
series AS (
SELECT
i,
SIN(i * 0.3) + 0.05 * i AS y
FROM
range (0, 48) t (i)
)
SELECT
forecast (
ARRAY_AGG(
y
ORDER BY
i
),
6
) AS fc
FROM
series;Bayesian A/B test (Beta-Binomial) returning full posterior + recommendation
Assess the confidence/quality of a cascade execution result.
Compare values in a group for similarities, differences, and patterns
Generate the strongest counterargument to a position
Differentially-private count (Laplace mechanism, sensitivity=1)
Differentially-private mean (Laplace mechanism)
Forecast a univariate time series via zero-shot Chronos-Bolt
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| values | JSON | Ordered array of numeric historical values |
| horizon | INTEGER | Number of future steps to predict |
Forecast a trended sinusoid, verify quantile struct shape
WITH
series AS (
SELECT
i,
SIN(i * 0.3) + 0.05 * i AS y
FROM
range (0, 48) t (i)
)
SELECT
forecast (
ARRAY_AGG(
y
ORDER BY
i
),
6
) AS fc
FROM
series;Bayesian A/B test (Beta-Binomial) returning full posterior + recommendation
Assess the confidence/quality of a cascade execution result.
Compare values in a group for similarities, differences, and patterns
Generate the strongest counterargument to a position
Differentially-private count (Laplace mechanism, sensitivity=1)
Differentially-private mean (Laplace mechanism)