Skip to content

Commit d6838a9

Browse files
committed
fix: lint and missing changelog
1 parent 4a13c29 commit d6838a9

2 files changed

Lines changed: 6621 additions & 6591 deletions

File tree

docs/changelogs/v0.0.28.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
### Features
2+
3+
* **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).
4+
5+
```python
6+
import pandas as pd
7+
from timecopilot.models.foundation.t0 import T0
8+
9+
df = pd.read_csv(
10+
"https://timecopilot.s3.amazonaws.com/public/data/air_passengers.csv",
11+
parse_dates=["ds"],
12+
)
13+
14+
model = T0()
15+
fcst_df = model.forecast(df, h=12)
16+
```
17+
18+
* **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).
19+
20+
### Fixes
21+
22+
* **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).
23+
24+
## New Contributors
25+
26+
* @GeoffNN made their first contribution in [#348](https://github.com/TimeCopilot/timecopilot/pull/348)
27+
28+
---
29+
30+
**Full Changelog**: https://github.com/TimeCopilot/timecopilot/compare/v0.0.27...v0.0.28

0 commit comments

Comments
 (0)