Skip to content

Changelog

All significant changes to this project are documented in this release file.

Legend
Feature New feature
Enhancement Improvement in existing functionality
API Change Changes in the API
Fix Bug fix

0.1.0 Jul 13, 2026

First public release. skforecast-ai wraps the skforecast engine in a deterministic, rule-based assistant that profiles the data, selects a model, evaluates it, and returns the forecast together with the exact, runnable script that produced it. An optional LLM layer explains the decisions without ever changing them.

Maturity

The underlying forecasting engine (skforecast) is mature and production-grade. The skforecast-ai assistant layer is at 0.1.0, so its public API may still change.

Added

  • ForecastingAssistant: the main entry point, covering the full workflow: profile(), plan(), refine_plan(), forecast() / forecast_code(), create_cv(), backtest() / backtest_code(), and ask().
  • Typer-based CLI mirroring the programmatic API, with persistent configuration.