release: v0.0.26#341
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Prepares the v0.0.26 release by bumping the package version and updating the documentation site and changelog to reflect new examples and release notes.
Changes:
- Bumped project version to v0.0.26.
- Updated MkDocs navigation and copyright year.
- Added a new documentation notebook and updated changelog entries/index for v0.0.26.
Reviewed changes
Copilot reviewed 5 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Updates the package version to 0.0.26 for release packaging. |
| mkdocs.yml | Refreshes docs navigation to include new notebooks and updates copyright year. |
| docs/examples/explaining-foundation-models-and-ensembles.ipynb | Adds a new example notebook demonstrating model/ensemble explanation workflows. |
| docs/changelogs/v0.0.26.md | Adds PR links and a documentation section for newly added examples. |
| docs/changelogs/index.md | Links the new v0.0.26 changelog from the index. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+147
to
+148
| "df = pd.read_csv(\"https://timecopilot.s3.amazonaws.com/public/data/air_passengers.csv\")\n", | ||
| "df.head()" |
Comment on lines
+197
to
+201
| "tc = TimeCopilot(\n", | ||
| " llm=\"openai:gpt-4o\",\n", | ||
| " forecasters=[chronos_bolt, chronos_t5, seasonal_naive, ensemble],\n", | ||
| " retries=3,\n", | ||
| ")" |
| } | ||
| ], | ||
| "source": [ | ||
| "print(tc.query(\"Which model performed best and why?\").output)" |
Comment on lines
+286
to
+289
| " tc.query(\n", | ||
| " \"Explain how the MedianEnsemble combines the foundation models' forecasts.\"\n", | ||
| " ).output\n", | ||
| ")" |
Comment on lines
+70
to
+88
| "outputs": [ | ||
| { | ||
| "data": { | ||
| "text/html": [ | ||
| "<div>\n", | ||
| "<style scoped>\n", | ||
| " .dataframe tbody tr th:only-of-type {\n", | ||
| " vertical-align: middle;\n", | ||
| " }\n", | ||
| "\n", | ||
| " .dataframe tbody tr th {\n", | ||
| " vertical-align: top;\n", | ||
| " }\n", | ||
| "\n", | ||
| " .dataframe thead th {\n", | ||
| " text-align: right;\n", | ||
| " }\n", | ||
| "</style>\n", | ||
| "<table border=\"1\" class=\"dataframe\">\n", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
new release.