@@ -24,36 +24,35 @@ async def generate_af_docs(root_path: Path):
2424 "name" : "agent-framework" ,
2525 "version" : agent_framework_version ,
2626 "install_type" : "pypi" ,
27- "extras" : ["all" ],
2827 },
2928 "sphinx_extensions" : [
3029 "sphinxcontrib.autodoc_pydantic" ,
3130 "sphinx-pydantic" ,
3231 "sphinx.ext.autosummary"
3332 ],
3433 "extension_config" : {
35- "napoleon_google_docstring" : True ,
36- "napoleon_preprocess_types" : True ,
37- "napoleon_use_param" : True ,
34+ "napoleon_google_docstring" : 1 ,
35+ "napoleon_preprocess_types" : 1 ,
36+ "napoleon_use_param" : 1 ,
3837 "autodoc_pydantic_field_doc_policy" : "both" ,
39- "autodoc_pydantic_model_show_json" : False ,
40- "autodoc_pydantic_model_show_config_summary" : True ,
41- "autodoc_pydantic_model_show_field_summary" : True ,
42- "autodoc_pydantic_model_hide_paramlist" : False ,
38+ "autodoc_pydantic_model_show_json" : 0 ,
39+ "autodoc_pydantic_model_show_config_summary" : 1 ,
40+ "autodoc_pydantic_model_show_field_summary" : 1 ,
41+ "autodoc_pydantic_model_hide_paramlist" : 0 ,
4342 "autodoc_pydantic_model_show_json_error_strategy" : "coerce" ,
44- "autodoc_pydantic_settings_show_config_summary" : True ,
45- "autodoc_pydantic_settings_show_field_summary" : True ,
46- "python_use_unqualified_type_names" : True ,
47- "autodoc_preserve_defaults" : True ,
43+ "autodoc_pydantic_settings_show_config_summary" : 1 ,
44+ "autodoc_pydantic_settings_show_field_summary" : 1 ,
45+ "python_use_unqualified_type_names" : 1 ,
46+ "autodoc_preserve_defaults" : 1 ,
4847 "autodoc_class_signature" : "separated" ,
4948 "autodoc_typehints" : "both" ,
5049 "autodoc_typehints_format" : "fully-qualified" ,
5150 "autodoc_default_options" : {
52- "members" : True ,
51+ "members" : 1 ,
5352 "member-order" : "alphabetical" ,
54- "undoc-members" : True ,
55- "show-inheritance" : True ,
56- "imported-members" : True ,
53+ "undoc-members" : 1 ,
54+ "show-inheritance" : 1 ,
55+ "imported-members" : 1 ,
5756 },
5857 },
5958 }
0 commit comments