Skip to content

Commit

Permalink
update agent example for the GenAIComps changes. (opea-project#1407)
Browse files Browse the repository at this point in the history
Update build.yaml and compose_vllm.yaml because of refactoring of GenAIComps.

Fix issue left by opea-project#1353
  • Loading branch information
lkk12014402 authored Jan 17, 2025
1 parent 39409d7 commit 5c68eff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

services:
worflowexec-agent:
image: ${REGISTRY:-opea}/agent-langchain:${TAG:-latest}
image: ${REGISTRY:-opea}/agent:${TAG:-latest}
container_name: workflowexec-agent-endpoint
volumes:
- ${WORKDIR}/GenAIComps/comps/agent/langchain/:/home/user/comps/agent/langchain/
- ${WORKDIR}/GenAIComps/comps/agent/src/:/home/user/comps/agent/src/
- ${TOOLSET_PATH}:/home/user/tools/
ports:
- "9090:9090"
Expand Down
6 changes: 3 additions & 3 deletions WorkflowExecAgent/docker_image_build/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# SPDX-License-Identifier: Apache-2.0

services:
agent-langchain:
agent:
build:
context: GenAIComps
dockerfile: comps/agent/langchain/Dockerfile
dockerfile: comps/agent/src/Dockerfile
args:
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
no_proxy: ${no_proxy}
image: ${REGISTRY:-opea}/agent-langchain:${TAG:-latest}
image: ${REGISTRY:-opea}/agent:${TAG:-latest}

0 comments on commit 5c68eff

Please sign in to comment.