Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MultimodalQnA/docker_compose/intel/hpu/gaudi/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ services:
LVM_MODEL_ID: ${LVM_MODEL_ID}
WHISPER_PORT: ${WHISPER_PORT}
WHISPER_SERVER_ENDPOINT: ${WHISPER_SERVER_ENDPOINT}
TTS_PORT: ${TTS_PORT}
TTS_ENDPOINT: ${TTS_ENDPOINT}
ipc: host
restart: always
multimodalqna-ui:
Expand Down
8 changes: 8 additions & 0 deletions MultimodalQnA/tests/test_compose_on_gaudi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,14 @@ function validate_megaservice() {
"multimodalqna-backend-server" \
'{"messages": "Find an apple. What color is it?"}'

echo "Validating megaservice with audio response"
validate_service \
"http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \
'"audio":{"data"' \
"multimodalqna" \
"multimodalqna-backend-server" \
'{"messages": "Find an apple. What color is it?", "modalities": ["text", "audio"]}'

echo "Validating megaservice with first audio query"
validate_service \
"http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \
Expand Down
8 changes: 8 additions & 0 deletions MultimodalQnA/tests/test_compose_on_xeon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,14 @@ function validate_megaservice() {
"multimodalqna-backend-server" \
'{"messages": "Find an apple. What color is it?"}'

echo "Validating megaservice with audio response"
validate_service \
"http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \
'"audio":{"data"' \
"multimodalqna" \
"multimodalqna-backend-server" \
'{"messages": "Find an apple. What color is it?", "modalities": ["text", "audio"]}'

echo "Validating megaservice with first audio query"
validate_service \
"http://${host_ip}:${MEGA_SERVICE_PORT}/v1/multimodalqna" \
Expand Down