diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 17ebbefbb..524f5b542 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -73,6 +73,7 @@ body: - label: Chat Excel - label: Chat DB - label: Chat Knowledge + - label: Model Management - label: Dashboard - label: Plugins diff --git a/docs/conf.py b/docs/conf.py index ebee0a19a..6f9a9bf05 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,8 +26,7 @@ extensions = [ "sphinx.ext.autosummary", "sphinx.ext.napoleon", "sphinx.ext.viewcode", - "sphinxcontrib.autodoc_pydantic", - "sphinxcontrib.autodoc_pydantic_base", + # "sphinxcontrib.autodoc_pydantic", "myst_nb", "sphinx_copybutton", "sphinx_panels", @@ -35,14 +34,14 @@ extensions = [ ] source_suffix = [".ipynb", ".html", ".md", ".rst"] -autodoc_pydantic_model_show_json = False -autodoc_pydantic_field_list_validators = False -autodoc_pydantic_config_members = False -autodoc_pydantic_model_show_config_summary = False -autodoc_pydantic_model_show_validator_members = False -autodoc_pydantic_model_show_field_summary = False -autodoc_pydantic_model_members = False -autodoc_pydantic_model_undoc_members = False +# autodoc_pydantic_model_show_json = False +# autodoc_pydantic_field_list_validators = False +# autodoc_pydantic_config_members = False +# autodoc_pydantic_model_show_config_summary = False +# autodoc_pydantic_model_show_validator_members = False +# autodoc_pydantic_model_show_field_summary = False +# autodoc_pydantic_model_members = False +# autodoc_pydantic_model_undoc_members = False templates_path = ["_templates"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]