Skip to content

Commit fdf5a08

Browse files
authored
Merge branch 'main' into mmqna-audio-query
2 parents f67146f + f5c08d4 commit fdf5a08

File tree

6 files changed

+308
-218
lines changed

6 files changed

+308
-218
lines changed

AudioQnA/docker_compose/intel/cpu/xeon/compose.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,20 @@ services:
9191
- TTS_SERVICE_PORT=${TTS_SERVICE_PORT}
9292
ipc: host
9393
restart: always
94+
audioqna-xeon-ui-server:
95+
image: ${REGISTRY:-opea}/audioqna-ui:${TAG:-latest}
96+
container_name: audioqna-xeon-ui-server
97+
depends_on:
98+
- audioqna-xeon-backend-server
99+
ports:
100+
- "5173:5173"
101+
environment:
102+
- no_proxy=${no_proxy}
103+
- https_proxy=${https_proxy}
104+
- http_proxy=${http_proxy}
105+
- CHAT_URL=${BACKEND_SERVICE_ENDPOINT}
106+
ipc: host
107+
restart: always
94108

95109
networks:
96110
default:

AudioQnA/docker_compose/intel/hpu/gaudi/compose.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,20 @@ services:
112112
- TTS_SERVICE_PORT=${TTS_SERVICE_PORT}
113113
ipc: host
114114
restart: always
115+
audioqna-gaudi-ui-server:
116+
image: ${REGISTRY:-opea}/audioqna-ui:${TAG:-latest}
117+
container_name: audioqna-gaudi-ui-server
118+
depends_on:
119+
- audioqna-gaudi-backend-server
120+
ports:
121+
- "5173:5173"
122+
environment:
123+
- no_proxy=${no_proxy}
124+
- https_proxy=${https_proxy}
125+
- http_proxy=${http_proxy}
126+
- CHAT_URL=${BACKEND_SERVICE_ENDPOINT}
127+
ipc: host
128+
restart: always
115129

116130
networks:
117131
default:

AudioQnA/tests/test_compose_on_gaudi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function build_docker_images() {
1919
git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
2020

2121
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
22-
service_list="audioqna whisper-gaudi asr llm-tgi speecht5-gaudi tts"
22+
service_list="audioqna audioqna-ui whisper-gaudi asr llm-tgi speecht5-gaudi tts"
2323
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log
2424

2525
docker pull ghcr.io/huggingface/tgi-gaudi:2.0.6

AudioQnA/tests/test_compose_on_xeon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function build_docker_images() {
1919
git clone https://github.com/opea-project/GenAIComps.git && cd GenAIComps && git checkout "${opea_branch:-"main"}" && cd ../
2020

2121
echo "Build all the images with --no-cache, check docker_image_build.log for details..."
22-
service_list="audioqna whisper asr llm-tgi speecht5 tts"
22+
service_list="audioqna audioqna-ui whisper asr llm-tgi speecht5 tts"
2323
docker compose -f build.yaml build ${service_list} --no-cache > ${LOG_PATH}/docker_image_build.log
2424

2525
docker pull ghcr.io/huggingface/tgi-gaudi:2.0.6

AudioQnA/ui/svelte/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"@typescript-eslint/eslint-plugin": "^5.27.0",
2626
"@typescript-eslint/parser": "^5.27.0",
2727
"autoprefixer": "^10.4.16",
28+
"daisyui": "^3.5.0",
2829
"debug": "4.3.4",
2930
"neverthrow": "5.0.0",
3031
"pocketbase": "0.7.0",

0 commit comments

Comments
 (0)