Skip to content

Commit 19ded40

Browse files
[DOCS] Fixing toctrees in documentation
1 parent 7f5a597 commit 19ded40

18 files changed

Lines changed: 114 additions & 205 deletions

File tree

microservices/audio-analyzer/docs/toc.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

microservices/audio-analyzer/docs/user-guide/Overview.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Audio Analyzer
2-
Audio Analyzer microservice is used to generate transcription of audio from video files.
2+
Audio Analyzer microservice is used to generate transcription of audio from video files.
33

44
## Overview
55
The Audio Analyzer microservice provides an automated solution for extracting and transcribing audio from video files. Designed for seamless integration into modern AI pipelines this microservice enables converting spoken content within videos into accurate, searchable text. By leveraging state-of-the-art speech-to-text models, the service supports a wide range of audio formats and languages, making it suitable for diverse applications such as video summary, media analysis, compliance monitoring, and content indexing.
@@ -60,7 +60,7 @@ The following Whisper model variants are supported by the service (for both GGML
6060
| tiny.en | Tiny model | ~75M | English-only |
6161
| base | Base model | ~150M | Multilingual |
6262
| base.en | Base model | ~150M | English-only |
63-
| small | Small model | ~450M | Multilingual |
63+
| small | Small model | ~450M | Multilingual |
6464
| small.en | Small model | ~450M | English-only |
6565
| medium | Medium model | ~1.5GB | Multilingual |
6666
| medium.en | Medium model | ~1.5GB | English-only |
@@ -70,6 +70,17 @@ The following Whisper model variants are supported by the service (for both GGML
7070

7171
## Supporting Resources
7272

73-
* [Get Started Guide](get-started.md)
74-
* [API Reference](api-reference.md)
75-
* [System Requirements](system-requirements.md)
73+
* [Get Started Guide](./get-started.md)
74+
* [API Reference](./api-reference.md)
75+
* [System Requirements](./system-requirements.md)
76+
77+
:::{toctree}
78+
:hidden:
79+
80+
overview-architecture
81+
system-requirements
82+
get-started
83+
how-to-build-from-source
84+
api-reference
85+
release-notes
86+
:::
Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,4 @@
11
.. toctree::
22
:hidden:
3-
4-
Overview
5-
6-
.. toctree::
7-
8-
overview-architecture
9-
system-requirements
10-
get-started
11-
12-
.. toctree::
13-
:caption: How to
143

15-
how-to-build-from-source
16-
17-
.. toctree::
18-
:caption: References
19-
20-
api-reference
21-
22-
.. toctree::
23-
24-
release-notes
4+
Overview

microservices/dlstreamer-pipeline-server/docs/toc.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

microservices/dlstreamer-pipeline-server/docs/user-guide/Overview.md

Lines changed: 36 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,53 @@ Video analytics involves the conversion of video streams into valuable insights
1414
Here is the high level description of functionality of DL Streamer Pipeline Server module:
1515

1616
- **RESTful Interface**</br>
17-
Exposes RESTful endpoints to discover, start, stop and customize pipelines in JSON format.
18-
17+
Exposes RESTful endpoints to discover, start, stop and customize pipelines in JSON format.
18+
1919
- **DL Streamer Pipeline Server Core**</br>
2020
Manages and processes the REST requests interfacing with the core DL Streamer Pipeline Server components and Pipeline Server Library.
21-
21+
2222
- **DL Streamer Pipeline Server Configuration handler**</br>
2323
Reads the contents of config file and accordingly constructs/starts pipelines. Dynamic configuration change is supported via REST API.
24-
24+
2525
- **GST UDF Loader**</br>
2626
DL Streamer Pipeline Server provides a [GStreamer plugin](https://gstreamer.freedesktop.org/documentation/plugins_doc.html?gi-language=c) - `udfloader` using which users can configure and load arbitrary UDFs. With `udfloader`, DL Streamer Pipeline Server provides an easy way to bring user developed programs and run them as a part of GStreamer pipelines. A User Defined Function (UDF) is a chunk of user code that can transform video frames and/or manipulate metadata. For example, a UDF can act as filter, preprocessor, classifier or a detector. These User Defined Functions can be developed in Python.
27-
27+
2828
- **DL Streamer Pipeline Server Publisher**</br>
2929
Supports publishing metadata to file, MQTT/Kafka message brokers and frame along with metadata to MQTT message broker. We also support publishing metadata and frame over OPCUA. The frames can also be saved on S3 compliant storage.
30-
30+
3131
- **DL Streamer Pipeline Server Model Update**</br>
3232
Supports integration with Model Registry service [Model Registry](https://docs.openedgeplatform.intel.com/edge-ai-libraries/model-registry/1.2.0/user-guide/Overview.html) for model download, deployment and management.
3333

3434
- **Open Telemetry**</br>
35-
Supports gathering metrics over Open Telemetry for seamless visualization and analysis.
36-
35+
Supports gathering metrics over Open Telemetry for seamless visualization and analysis.
3736

37+
:::{toctree}
38+
:hidden:
3839

40+
overview-architecture
41+
system-requirements
42+
get-started
43+
troubleshooting-guide
44+
how-to-change-dlstreamer-pipeline
45+
how-to-use-gpu-for-decode-and-inference
46+
how-to-use-cpu-for-decode-and-inference
47+
how-to-autostart-pipelines
48+
how-to-launch-configurable-pipelines
49+
how-to-perform-webrtc-frame-streaming
50+
how-to-start-dlsps-mqtt-publish
51+
how-to-store-s3-frame
52+
how-to-store-metadata-influxdb
53+
how-to-publish-metadata-over-ros2
54+
how-to-launch-and-manage-pipeline
55+
how-to-use-rtsp-camera-as-video-source
56+
how-to-run-udf-pipelines
57+
how-to-deploy-with-helm
58+
how-to-use-image-file-as-source-over-request-payload
59+
how-to-download-and-run-yolo-models
60+
how-to-build-from-source
61+
how-to-add-system-timestamps-to-metadata
62+
api-reference
63+
environment-variables
64+
advanced-guide/Overview
65+
release_notes/Overview
66+
:::
Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,4 @@
1-
DL Streamer Pipeline Server
2-
==============================
3-
4-
51
.. toctree::
62
:hidden:
73

84
Overview
9-
10-
.. toctree::
11-
12-
overview-architecture
13-
system-requirements
14-
get-started
15-
troubleshooting-guide
16-
17-
.. toctree::
18-
:caption: How to
19-
20-
how-to-change-dlstreamer-pipeline
21-
how-to-use-gpu-for-decode-and-inference
22-
how-to-use-cpu-for-decode-and-inference
23-
how-to-autostart-pipelines
24-
how-to-launch-configurable-pipelines
25-
how-to-perform-webrtc-frame-streaming
26-
how-to-start-dlsps-mqtt-publish
27-
how-to-store-s3-frame
28-
how-to-store-metadata-influxdb
29-
how-to-publish-metadata-over-ros2
30-
how-to-launch-and-manage-pipeline
31-
how-to-use-rtsp-camera-as-video-source
32-
how-to-run-udf-pipelines
33-
how-to-deploy-with-helm
34-
how-to-use-image-file-as-source-over-request-payload
35-
how-to-download-and-run-yolo-models
36-
how-to-build-from-source
37-
how-to-add-system-timestamps-to-metadata
38-
39-
.. toctree::
40-
:caption: References
41-
42-
api-reference
43-
environment-variables
44-
45-
46-
.. toctree::
47-
:hidden:
48-
49-
advanced-guide/Overview
50-
51-
.. toctree::
52-
53-
release_notes/Overview
54-
55-
56-

sample-applications/chat-question-and-answer/docs/toc.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

sample-applications/chat-question-and-answer/docs/user-guide/index.rst

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,3 @@
22
:hidden:
33

44
overview
5-
6-
.. toctree::
7-
8-
overview-architecture
9-
system-requirements
10-
get-started
11-
12-
.. toctree::
13-
:caption: How to
14-
15-
build-from-source
16-
deploy-with-helm
17-
deploy-with-edge-orchestrator
18-
how-to-performance
19-
20-
.. toctree::
21-
:caption: References
22-
23-
benchmarks
24-
api-reference
25-
26-
.. toctree::
27-
28-
release-notes

sample-applications/chat-question-and-answer/docs/user-guide/overview.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The ChatQ&A sample application includes the following components:
3333
- **ChatQ&A backend microservice**: The Chat&A backend microservice is responsible for responding to the user queries. LangChain framework is used to create the RAG chain and provide the necessary integrations with VectorDB. The backend microservice provides a REST API to accept user queries.
3434
- **ChatQ&A UI**: A reference UI is provided to enable users quickly try the sample-application. The UI is not designed to be a comprehensive guide on the design of UI but is more a functional implementation to enable quick demo interaction. It allows users to create the context by uploading the documents and provide weblinks. Users can then interact with the RAG pipeline. It uses the REST API provided by the document ingestion and ChatQ&A backend for its operations.
3535

36-
All the 3rd party components are not built from source but instead the respective pre-built images are pulled from their artefactory (Docker hub for example) and used. The model serving is also reused from their prebuilt versions and used for LLM, Embedding, and Reranker. The Intel microservices can be built from source. Documentation is provided to help users build these microservices from source.
36+
All the 3rd party components are not built from source but instead the respective pre-built images are pulled from their artefactory (Docker hub for example) and used. The model serving is also reused from their prebuilt versions and used for LLM, Embedding, and Reranker. The Intel microservices can be built from source. Documentation is provided to help users build these microservices from source.
3737

3838
Further details on the system architecture and customizable options are available [here](./overview-architecture.md).
3939

@@ -55,6 +55,21 @@ Detailed hardware and software requirements are available [here](./system-requir
5555

5656
Detailed metrics and analysis can be found in the benchmark report [here](./benchmarks.md).
5757

58+
:::{toctree}
59+
:hidden:
60+
61+
overview-architecture
62+
system-requirements
63+
get-started
64+
build-from-source
65+
deploy-with-helm
66+
deploy-with-edge-orchestrator
67+
how-to-performance
68+
benchmarks
69+
api-reference
70+
release-notes
71+
:::
72+
5873
<!--
5974
## Support and Community
6075

sample-applications/document-summarization/docs/toc.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)