Skip to content

Commit

Permalink
[DOCS] Update API reference (openvinotoolkit#22911)
Browse files Browse the repository at this point in the history
Updating API reference with ``openvino`` namespace redesign changes.
This PR addresses the following ticket: 117329
  • Loading branch information
sgolebiewski-intel committed Feb 20, 2024
1 parent c05a886 commit 1bdb931
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{ fullname | escape | underline}}

.. automodule:: {{ fullname }}

{% block attributes %}
{% if attributes %}
.. rubric:: Module Attributes
Expand All @@ -21,7 +21,9 @@
.. autosummary::
:toctree:
{% for func in functions %}
{{ func }}
{% if not func.startswith('_') %}
{{ func }}
{% endif %}
{%- endfor %}
{% endif %}
{% endblock %}
Expand Down
6 changes: 6 additions & 0 deletions docs/sphinx_setup/api/ie_python_api/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ OpenVINO Python API
:description: Explore Python API and implementation of its features in Intel® Distribution of OpenVINO™ Toolkit.


.. autosummary::
:toctree: _autosummary
:template: custom-module-template.rst

openvino

.. autosummary::
:toctree: _autosummary
:template: custom-module-template.rst
Expand Down

0 comments on commit 1bdb931

Please sign in to comment.