skforecast-ai 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- skforecast_ai-0.1.0/.claude/settings.json +11 -0
- skforecast_ai-0.1.0/.github/copilot-instructions.md +711 -0
- skforecast_ai-0.1.0/.github/instructions/docstrings.instructions.md +226 -0
- skforecast_ai-0.1.0/.github/instructions/skforecast-ai-project.instructions.md +330 -0
- skforecast_ai-0.1.0/.github/instructions/testing.instructions.md +270 -0
- skforecast_ai-0.1.0/.github/workflows/ai-context-check.yml +31 -0
- skforecast_ai-0.1.0/.github/workflows/unit-tests.yml +54 -0
- skforecast_ai-0.1.0/.gitignore +159 -0
- skforecast_ai-0.1.0/AGENTS.md +15 -0
- skforecast_ai-0.1.0/CITATION.cff +30 -0
- skforecast_ai-0.1.0/CODE_OF_CONDUCT.md +128 -0
- skforecast_ai-0.1.0/CONTRIBUTING.md +74 -0
- skforecast_ai-0.1.0/CONTRIBUTOR_LICENSE_AGREEMENT.md +28 -0
- skforecast_ai-0.1.0/LICENSE +201 -0
- skforecast_ai-0.1.0/PKG-INFO +270 -0
- skforecast_ai-0.1.0/README.md +202 -0
- skforecast_ai-0.1.0/dev/agentic-forecasting-evaluation-plan.md +31 -0
- skforecast_ai-0.1.0/dev/demo_ask.ipynb +1247 -0
- skforecast_ai-0.1.0/dev/demo_backtest.ipynb +4066 -0
- skforecast_ai-0.1.0/dev/demo_backtest_llm.ipynb +1816 -0
- skforecast_ai-0.1.0/dev/demo_forecast.ipynb +2372 -0
- skforecast_ai-0.1.0/dev/demo_lag_selection.ipynb +1761 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/architecture-and-logic_detailed.md +350 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/backtesting.md +149 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/customizing-the-model.md +212 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/drift-detection.md +90 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/forecasting-multiple-series.md +83 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/foundation-forecasting.md +111 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/going-further.md +120 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/how-it-works-and-trust.md +94 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/human-in-the-loop.md +116 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/llm-plan-refinement.md +153 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/reproducible-code.md +108 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/the-forecasting-workflow.md +164 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/troubleshooting.md +168 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/understanding-your-data.md +149 -0
- skforecast_ai-0.1.0/dev/deprecated user guides/using-the-ai-assistant.md +180 -0
- skforecast_ai-0.1.0/dev/forecast.py +73 -0
- skforecast_ai-0.1.0/dev/forecasting_assistant_audit.md +809 -0
- skforecast_ai-0.1.0/dev/h2o_exog.csv +196 -0
- skforecast_ai-0.1.0/dev/multi_forecast.py +67 -0
- skforecast_ai-0.1.0/dev/preds.csv +13 -0
- skforecast_ai-0.1.0/dev/preds.json +177 -0
- skforecast_ai-0.1.0/dev/preds_multi.csv +91 -0
- skforecast_ai-0.1.0/dev/summary_of_display_formats.md +10 -0
- skforecast_ai-0.1.0/docs/README.md +237 -0
- skforecast_ai-0.1.0/docs/api/assistant.md +3 -0
- skforecast_ai-0.1.0/docs/api/cli.md +5 -0
- skforecast_ai-0.1.0/docs/api/schemas/plans.md +1 -0
- skforecast_ai-0.1.0/docs/api/schemas/profiles.md +1 -0
- skforecast_ai-0.1.0/docs/api/schemas/results.md +1 -0
- skforecast_ai-0.1.0/docs/img/banner-landing-page-dark-mode-skforecast-ai-no-background.png +0 -0
- skforecast_ai-0.1.0/docs/img/banner-landing-page-dark-mode-skforecast-ai.png +0 -0
- skforecast_ai-0.1.0/docs/img/banner-landing-page-skforecast-ai.png +0 -0
- skforecast_ai-0.1.0/docs/img/buymeacoffee_button.jpg +0 -0
- skforecast_ai-0.1.0/docs/img/buymeacoffee_button.png +0 -0
- skforecast_ai-0.1.0/docs/img/favicon.png +0 -0
- skforecast_ai-0.1.0/docs/img/github_sponsor_button.png +0 -0
- skforecast_ai-0.1.0/docs/img/how-it-works.svg +89 -0
- skforecast_ai-0.1.0/docs/img/logo-skforecast-backgound.png +0 -0
- skforecast_ai-0.1.0/docs/img/logo-skforecast-orange-no-backgound.png +0 -0
- skforecast_ai-0.1.0/docs/img/logo-skforecast-white-no-backgound.png +0 -0
- skforecast_ai-0.1.0/docs/img/logo-skforecast.png +0 -0
- skforecast_ai-0.1.0/docs/img/opencollective_button.png +0 -0
- skforecast_ai-0.1.0/docs/javascripts/mathjax.js +15 -0
- skforecast_ai-0.1.0/docs/javascripts/version-switcher.js +136 -0
- skforecast_ai-0.1.0/docs/more/about-skforecast-ai.md +92 -0
- skforecast_ai-0.1.0/docs/more/consulting.md +39 -0
- skforecast_ai-0.1.0/docs/overrides/main.html +5 -0
- skforecast_ai-0.1.0/docs/overrides/partials/outdated.html +12 -0
- skforecast_ai-0.1.0/docs/quick-start/first-forecast.md +196 -0
- skforecast_ai-0.1.0/docs/quick-start/how-to-install.md +94 -0
- skforecast_ai-0.1.0/docs/quick-start/quick-start.md +62 -0
- skforecast_ai-0.1.0/docs/releases/releases.md +34 -0
- skforecast_ai-0.1.0/docs/stylesheets/extra.css +259 -0
- skforecast_ai-0.1.0/docs/user-guides/agentic-forecasting-step-by-step.ipynb +36857 -0
- skforecast_ai-0.1.0/docs/user-guides/agentic-forecasting.ipynb +21874 -0
- skforecast_ai-0.1.0/docs/user-guides/cli-usage.md +558 -0
- skforecast_ai-0.1.0/mkdocs.yml +182 -0
- skforecast_ai-0.1.0/pyproject.toml +127 -0
- skforecast_ai-0.1.0/setup.cfg +4 -0
- skforecast_ai-0.1.0/skforecast_ai/__init__.py +48 -0
- skforecast_ai-0.1.0/skforecast_ai/_constants.py +105 -0
- skforecast_ai-0.1.0/skforecast_ai/_display.py +657 -0
- skforecast_ai-0.1.0/skforecast_ai/_utils.py +640 -0
- skforecast_ai-0.1.0/skforecast_ai/assistant.py +2265 -0
- skforecast_ai-0.1.0/skforecast_ai/cli.py +1367 -0
- skforecast_ai-0.1.0/skforecast_ai/config.py +133 -0
- skforecast_ai-0.1.0/skforecast_ai/exceptions.py +68 -0
- skforecast_ai-0.1.0/skforecast_ai/execution/__init__.py +6 -0
- skforecast_ai-0.1.0/skforecast_ai/execution/backtesting_runner.py +222 -0
- skforecast_ai-0.1.0/skforecast_ai/execution/forecast_runner.py +214 -0
- skforecast_ai-0.1.0/skforecast_ai/llm/__init__.py +58 -0
- skforecast_ai-0.1.0/skforecast_ai/llm/agent.py +351 -0
- skforecast_ai-0.1.0/skforecast_ai/llm/context.py +210 -0
- skforecast_ai-0.1.0/skforecast_ai/llm/prompts.py +85 -0
- skforecast_ai-0.1.0/skforecast_ai/llm/provider.py +225 -0
- skforecast_ai-0.1.0/skforecast_ai/llm/skills.py +289 -0
- skforecast_ai-0.1.0/skforecast_ai/profiling/__init__.py +3 -0
- skforecast_ai-0.1.0/skforecast_ai/profiling/data_profile.py +1243 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/__init__.py +48 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/autoregressive.py +737 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/backtesting.py +226 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/calendar.py +164 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/explanation.py +206 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/forecaster_selection.py +136 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/metric_selection.py +85 -0
- skforecast_ai-0.1.0/skforecast_ai/recommendation/preprocessing.py +388 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/__init__.py +14 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/_helpers.py +868 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/backtesting.py +622 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/foundation.py +177 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/multi_series.py +532 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/single_series.py +234 -0
- skforecast_ai-0.1.0/skforecast_ai/rendering/statistical.py +164 -0
- skforecast_ai-0.1.0/skforecast_ai/resources/llms-base.txt +667 -0
- skforecast_ai-0.1.0/skforecast_ai/schemas/__init__.py +27 -0
- skforecast_ai-0.1.0/skforecast_ai/schemas/plans.py +275 -0
- skforecast_ai-0.1.0/skforecast_ai/schemas/profiles.py +316 -0
- skforecast_ai-0.1.0/skforecast_ai/schemas/results.py +197 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/autocorrelation-and-lag-selection/SKILL.md +168 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/backtesting-configuration/SKILL.md +161 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/choosing-a-forecaster/SKILL.md +165 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/complete-api-reference/SKILL.md +70 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/complete-api-reference/references/method-signatures.md +941 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/deep-learning-forecasting/SKILL.md +246 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/deep-learning-forecasting/references/architecture-options.md +239 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/drift-detection/SKILL.md +147 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/feature-engineering/SKILL.md +438 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/feature-engineering/references/calendar-features-reference.md +240 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/feature-engineering/references/rolling-stats-reference.md +278 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/feature-selection/SKILL.md +155 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/forecasting-multiple-series/SKILL.md +159 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/forecasting-single-series/SKILL.md +139 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/foundation-forecasting/SKILL.md +197 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/foundation-forecasting/references/adapter-parameters.md +115 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/hyperparameter-optimization/SKILL.md +237 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/hyperparameter-optimization/references/search-parameters.md +196 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/metric-selection/SKILL.md +358 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/metric-selection/references/metric-compatibility.md +83 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/prediction-intervals/SKILL.md +260 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/prediction-intervals/references/interval-compatibility.md +199 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/statistical-models/SKILL.md +197 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/statistical-models/references/model-parameters.md +247 -0
- skforecast_ai-0.1.0/skforecast_ai/skills/troubleshooting-common-errors/SKILL.md +217 -0
- skforecast_ai-0.1.0/skforecast_ai.egg-info/PKG-INFO +270 -0
- skforecast_ai-0.1.0/skforecast_ai.egg-info/SOURCES.txt +207 -0
- skforecast_ai-0.1.0/skforecast_ai.egg-info/dependency_links.txt +1 -0
- skforecast_ai-0.1.0/skforecast_ai.egg-info/entry_points.txt +2 -0
- skforecast_ai-0.1.0/skforecast_ai.egg-info/requires.txt +49 -0
- skforecast_ai-0.1.0/skforecast_ai.egg-info/top_level.txt +1 -0
- skforecast_ai-0.1.0/tests/__init__.py +0 -0
- skforecast_ai-0.1.0/tests/fixtures_assistant.py +152 -0
- skforecast_ai-0.1.0/tests/test_assistant_ask.py +487 -0
- skforecast_ai-0.1.0/tests/test_assistant_backtest.py +137 -0
- skforecast_ai-0.1.0/tests/test_assistant_backtest_code.py +160 -0
- skforecast_ai-0.1.0/tests/test_assistant_create_cv.py +665 -0
- skforecast_ai-0.1.0/tests/test_assistant_forecast.py +437 -0
- skforecast_ai-0.1.0/tests/test_assistant_forecast_code.py +276 -0
- skforecast_ai-0.1.0/tests/test_assistant_init.py +36 -0
- skforecast_ai-0.1.0/tests/test_assistant_plan.py +222 -0
- skforecast_ai-0.1.0/tests/test_assistant_profile.py +226 -0
- skforecast_ai-0.1.0/tests/test_assistant_refine_plan.py +235 -0
- skforecast_ai-0.1.0/tests/test_assistant_refine_plan_llm.py +431 -0
- skforecast_ai-0.1.0/tests/test_cli.py +859 -0
- skforecast_ai-0.1.0/tests/test_cli_config.py +215 -0
- skforecast_ai-0.1.0/tests/test_cli_pipe.py +619 -0
- skforecast_ai-0.1.0/tests/test_display.py +511 -0
- skforecast_ai-0.1.0/tests/test_integration_backtest.py +271 -0
- skforecast_ai-0.1.0/tests/test_schemas.py +207 -0
- skforecast_ai-0.1.0/tests/test_utils.py +414 -0
- skforecast_ai-0.1.0/tests/tests_execution/__init__.py +0 -0
- skforecast_ai-0.1.0/tests/tests_execution/fixtures_execution.py +278 -0
- skforecast_ai-0.1.0/tests/tests_execution/test__build_backtest_explanation.py +75 -0
- skforecast_ai-0.1.0/tests/tests_execution/test_render_backtesting_script.py +153 -0
- skforecast_ai-0.1.0/tests/tests_execution/test_run_backtest.py +275 -0
- skforecast_ai-0.1.0/tests/tests_execution/test_run_forecast.py +206 -0
- skforecast_ai-0.1.0/tests/tests_llm/__init__.py +0 -0
- skforecast_ai-0.1.0/tests/tests_llm/test_build_context_message.py +352 -0
- skforecast_ai-0.1.0/tests/tests_llm/test_llm_agent.py +188 -0
- skforecast_ai-0.1.0/tests/tests_llm/test_provider.py +200 -0
- skforecast_ai-0.1.0/tests/tests_llm/test_select_skills.py +395 -0
- skforecast_ai-0.1.0/tests/tests_profiling/__init__.py +0 -0
- skforecast_ai-0.1.0/tests/tests_profiling/fixtures_profiling.py +57 -0
- skforecast_ai-0.1.0/tests/tests_profiling/test_create_data_profile.py +498 -0
- skforecast_ai-0.1.0/tests/tests_profiling/test_infer_frequency.py +103 -0
- skforecast_ai-0.1.0/tests/tests_profiling/test_resolve_end_train.py +129 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/__init__.py +0 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/fixtures_recommendation.py +76 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_autoregressive.py +845 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_backtesting.py +90 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_calendar.py +272 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_forecaster_selection.py +147 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_preprocessing.py +218 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_select_dropna_from_series.py +63 -0
- skforecast_ai-0.1.0/tests/tests_recommendation/test_select_metric.py +204 -0
- skforecast_ai-0.1.0/tests/tests_rendering/__init__.py +0 -0
- skforecast_ai-0.1.0/tests/tests_rendering/fixtures_rendering.py +424 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_emit_imports.py +442 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_helpers.py +316 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_render_backtesting.py +456 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_render_forecast_foundation.py +226 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_render_forecast_multi_series.py +392 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_render_forecast_single_series.py +528 -0
- skforecast_ai-0.1.0/tests/tests_rendering/test_render_forecast_statistical.py +160 -0
- skforecast_ai-0.1.0/tools/docs_check_links_web.ipynb +487 -0
- skforecast_ai-0.1.0/tools/measure_skill_tokens.py +183 -0
- skforecast_ai-0.1.0/tools/mkdocs_hooks.py +65 -0
- skforecast_ai-0.1.0/tools/sync_skforecast_assets.py +295 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(python -c \"from skforecast.utils import save_forecaster; print\\('ok'\\)\")",
|
|
5
|
+
"Bash(python -c \"import mkdocs; print\\('mkdocs', mkdocs.__version__\\)\")",
|
|
6
|
+
"Bash(python -)",
|
|
7
|
+
"Bash(python -c \"import skforecast,os; print\\(os.path.dirname\\(skforecast.__file__\\)\\)\")",
|
|
8
|
+
"Bash(python c:/tmp/fix_docs.py)"
|
|
9
|
+
]
|
|
10
|
+
}
|
|
11
|
+
}
|