You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To stop the containers associated with the deployment, execute the following command:
128
142
129
143
```bash
130
-
docker compose -f compose.yaml down
144
+
docker compose -f compose_tgi.yaml down
145
+
```
146
+
147
+
If monitoring is enabled, stop the containers using the following command:
148
+
149
+
```bash
150
+
docker compose -f compose_tgi.yaml -f compose.monitoring.yaml down
131
151
```
132
152
133
153
## AudioQnA Docker Compose Files
@@ -140,6 +160,7 @@ In the context of deploying an AudioQnA pipeline on an Intel® Xeon® platform,
140
160
|[compose_tgi.yaml](./compose_tgi.yaml)| The LLM serving framework is TGI. All other configurations remain the same as the default |
141
161
|[compose_multilang.yaml](./compose_multilang.yaml)| The TTS component is GPT-SoVITS. All other configurations remain the same as the default |
142
162
|[compose_remote.yaml](./compose_remote.yaml)| The LLM used is hosted on a remote server and an endpoint is used to access this model. Additional environment variables need to be set before running. See [instructions](#running-llm-models-with-remote-endpoints) below. |
163
+
|[compose.monitoring.yaml](./compose.monitoring.yaml)| Helper file for monitoring features. Can be used along with any compose files |
docker compose -f compose.yaml -f compose.monitoring.yaml up -d
93
+
```
94
+
82
95
### Check the Deployment Status
83
96
84
97
After running docker compose, check if all the containers launched via docker compose have started:
@@ -128,6 +141,12 @@ To stop the containers associated with the deployment, execute the following com
128
141
docker compose -f compose.yaml down
129
142
```
130
143
144
+
If monitoring is enabled, stop the containers using the following command:
145
+
146
+
```bash
147
+
docker compose -f compose.yaml -f compose.monitoring.yaml down
148
+
```
149
+
131
150
## AudioQnA Docker Compose Files
132
151
133
152
In the context of deploying an AudioQnA pipeline on an Intel® Gaudi® platform, we can pick and choose different large language model serving frameworks. The table below outlines the various configurations that are available as part of the application. These configurations can be used as templates and can be extended to different components available in [GenAIComps](https://github.com/opea-project/GenAIComps.git).
0 commit comments