Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelogs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Welcome to the TimeCopilot Changelog. Here, you will find a comprehensive list of all the changes, updates, and improvements made to the TimeCopilot project. This section is designed to keep you informed about the latest features, bug fixes, and enhancements as we continue to develop and refine the TimeCopilot experience. Stay tuned for regular updates and feel free to explore the details of each release below.

- [v0.0.28](v0.0.28.md)
- [v0.0.27](v0.0.27.md)
- [v0.0.26](v0.0.26.md)
- [v0.0.25](v0.0.25.md)
Expand Down
30 changes: 30 additions & 0 deletions docs/changelogs/v0.0.28.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
### Features

* **T0 foundation model**: Added support for [T0](https://huggingface.co/theforecastingcompany/t0-alpha), an open-weights time series foundation model from The Forecasting Company. Use it via the `T0` class. See [#348](https://github.com/TimeCopilot/timecopilot/pull/348).

```python
import pandas as pd
from timecopilot.models.foundation.t0 import T0

df = pd.read_csv(
"https://timecopilot.s3.amazonaws.com/public/data/air_passengers.csv",
parse_dates=["ds"],
)

model = T0()
fcst_df = model.forecast(df, h=12)
```

* **timecopilot-tirex bump**: Bumped `timecopilot-tirex` to `>=0.1.1` and updated the `TiRex` integration to align with the new API. TiRex now returns the model's default quantile knots (0.1–0.9) and validates that custom quantile requests match that set. See [#346](https://github.com/TimeCopilot/timecopilot/pull/346).

### Fixes

* **Relax dependencies**: Relaxed several pinned core dependencies (`lightning`, `logfire`, `opentelemetry-api`, `opentelemetry-sdk`) to minimum-version constraints, moved `ray` to the `distributed` optional extra, and removed `wandb` from core dependencies to reduce install conflicts. See [#355](https://github.com/TimeCopilot/timecopilot/pull/355).

## New Contributors

* @GeoffNN made their first contribution in [#348](https://github.com/TimeCopilot/timecopilot/pull/348)

---

**Full Changelog**: https://github.com/TimeCopilot/timecopilot/compare/v0.0.27...v0.0.28
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ nav:
- api/gift-eval/gift-eval.md
- Changelogs:
- changelogs/index.md
- changelogs/v0.0.28.md
- changelogs/v0.0.27.md
- changelogs/v0.0.26.md
- changelogs/v0.0.25.md
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ license = "MIT"
name = "timecopilot"
readme = "README.md"
requires-python = ">=3.10"
version = "0.0.27"
version = "0.0.28"

[project.optional-dependencies]
distributed = [
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading