diff --git a/docs.json b/docs.json index 4910b26..90a03df 100644 --- a/docs.json +++ b/docs.json @@ -673,6 +673,11 @@ } ] }, + { + "anchor": "ConformalForecast", + "icon": "bullseye", + "groups": [] + }, { "anchor": "CoreForecast", "icon": "truck-fast", diff --git a/merge_docs.py b/merge_docs.py index 78ebbe5..97a679c 100644 --- a/merge_docs.py +++ b/merge_docs.py @@ -25,7 +25,8 @@ def merge_navigation(main_nav, sub_nav, prefix): 'utilsforecast': 'UtilsForecast', 'datasetsforecast': 'DatasetsForecast', 'coreforecast': 'CoreForecast', - 'synforecast': 'SynForecast' + 'synforecast': 'SynForecast', + 'conformalforecast': 'ConformalForecast' } anchor_name = anchor_name_map.get(prefix) @@ -61,7 +62,7 @@ def merge_navigation(main_nav, sub_nav, prefix): repos = ['nixtla', 'statsforecast', 'mlforecast', 'neuralforecast', 'hierarchicalforecast', 'utilsforecast', 'datasetsforecast', 'coreforecast', - 'synforecast'] + 'synforecast', 'conformalforecast'] main_config = json.loads(Path(fname).read_text())