-
Notifications
You must be signed in to change notification settings - Fork 310
Audioqna: fix input for TTS service, enable remote endpoints #2101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
alexsin368
merged 28 commits into
opea-project:main
from
alexsin368:audioqna-remote-endpoint
Aug 15, 2025
Merged
Changes from 4 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
a708b0e
enable remote endpoints
alexsin368 9380bc1
add align_outputs and align_generator
alexsin368 d226760
fix next_inputs[text when aligning inputs
alexsin368 bc2fe15
Merge branch 'opea-project:main' into audioqna-remote-endpoint
alexsin368 88f28a0
enable remote endpoints
alexsin368 b8c8519
add align_outputs and align_generator
alexsin368 5807ff5
fix next_inputs[text when aligning inputs
alexsin368 c21f034
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] bd16ac5
merge
alexsin368 b2eb382
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 6a9f1d7
import json library
alexsin368 2d073dc
Merge branch 'audioqna-remote-endpoint' of https://github.com/alexsin…
alexsin368 de6e8c6
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] cad98eb
Merge branch 'opea-project:main' into audioqna-remote-endpoint
alexsin368 6e056f1
update instructions and name for API_KEY
alexsin368 0ae2897
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] ea99757
Merge branch 'main' into audioqna-remote-endpoint
alexsin368 9c0d201
Merge branch 'main' into audioqna-remote-endpoint
alexsin368 6f0dd43
add test for remote endpoints, update Enterprise Inference link
alexsin368 011c7c2
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] e16f279
remove CI for remote endpoints
alexsin368 8c3e3f7
Merge branch 'main' into audioqna-remote-endpoint
alexsin368 ef8337b
remove reference to Denvr
alexsin368 1a18c6b
Merge branch 'audioqna-remote-endpoint' of https://github.com/alexsin…
alexsin368 f10eb2d
Merge branch 'main' into audioqna-remote-endpoint
chensuyue 9d47534
Merge branch 'main' into audioqna-remote-endpoint
alexsin368 fe5f5f4
Merge branch 'main' into audioqna-remote-endpoint
alexsin368 71b3a6f
remove faqgen
alexsin368 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
AudioQnA/docker_compose/intel/cpu/xeon/compose_remote.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
services: | ||
whisper-service: | ||
image: ${REGISTRY:-opea}/whisper:${TAG:-latest} | ||
container_name: whisper-service | ||
ports: | ||
- ${WHISPER_SERVER_PORT:-7066}:7066 | ||
ipc: host | ||
environment: | ||
no_proxy: ${no_proxy} | ||
http_proxy: ${http_proxy} | ||
https_proxy: ${https_proxy} | ||
restart: unless-stopped | ||
speecht5-service: | ||
image: ${REGISTRY:-opea}/speecht5:${TAG:-latest} | ||
container_name: speecht5-service | ||
ports: | ||
- ${SPEECHT5_SERVER_PORT:-7055}:7055 | ||
ipc: host | ||
environment: | ||
no_proxy: ${no_proxy} | ||
http_proxy: ${http_proxy} | ||
https_proxy: ${https_proxy} | ||
restart: unless-stopped | ||
audioqna-xeon-backend-server: | ||
image: ${REGISTRY:-opea}/audioqna:${TAG:-latest} | ||
container_name: audioqna-xeon-backend-server | ||
depends_on: | ||
- whisper-service | ||
- speecht5-service | ||
ports: | ||
- "3008:8888" | ||
environment: | ||
- no_proxy=${no_proxy} | ||
- https_proxy=${https_proxy} | ||
- http_proxy=${http_proxy} | ||
- MEGA_SERVICE_HOST_IP=${MEGA_SERVICE_HOST_IP} | ||
- WHISPER_SERVER_HOST_IP=${WHISPER_SERVER_HOST_IP} | ||
- WHISPER_SERVER_PORT=${WHISPER_SERVER_PORT} | ||
- LLM_SERVER_HOST_IP=${REMOTE_ENDPOINT} | ||
- LLM_SERVER_PORT=${LLM_SERVER_PORT} | ||
- LLM_MODEL_ID=${LLM_MODEL_ID} | ||
- OPENAI_API_KEY=${OPENAI_API_KEY} | ||
- SPEECHT5_SERVER_HOST_IP=${SPEECHT5_SERVER_HOST_IP} | ||
- SPEECHT5_SERVER_PORT=${SPEECHT5_SERVER_PORT} | ||
ipc: host | ||
restart: always | ||
audioqna-xeon-ui-server: | ||
image: ${REGISTRY:-opea}/audioqna-ui:${TAG:-latest} | ||
container_name: audioqna-xeon-ui-server | ||
depends_on: | ||
- audioqna-xeon-backend-server | ||
ports: | ||
- "5173:5173" | ||
environment: | ||
- no_proxy=${no_proxy} | ||
- https_proxy=${https_proxy} | ||
- http_proxy=${http_proxy} | ||
- CHAT_URL=${BACKEND_SERVICE_ENDPOINT} | ||
ipc: host | ||
restart: always | ||
|
||
networks: | ||
default: | ||
driver: bridge |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.