Skip to content

Commit 44eca3b

Browse files
committed
Update docker compose path for agent comps change
1 parent e4e8a70 commit 44eca3b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

WorkflowExecAgent/docker_compose/intel/cpu/xeon/compose_vllm.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
image: ${REGISTRY:-opea}/agent-langchain:${TAG:-latest}
77
container_name: workflowexec-agent-endpoint
88
volumes:
9-
- ${WORKDIR}/GenAIComps/comps/agent/langchain/:/home/user/comps/agent/langchain/
9+
- ${WORKDIR}/GenAIComps/comps/agent/src/:/home/user/comps/agent/src/
1010
- ${TOOLSET_PATH}:/home/user/tools/
1111
ports:
1212
- "9090:9090"

WorkflowExecAgent/tests/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Launch validation by running the following command.
2424

2525
```sh
2626
cd GenAIExamples/WorkflowExecAgent/tests
27-
. /test_compose_on_xeon.sh
27+
. /test_compose_vllm_on_xeon.sh
2828
```
2929

3030
`test_compose_on_xeon.sh` will run the other `.sh` files under `tests/`. The validation script launches 1 docker container for the agent microservice, and another for the vllm model serving on CPU. When validation is completed, all containers will be stopped.

WorkflowExecAgent/tests/test_compose_vllm_example_wf_on_xeon.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
wf_api_port=${wf_api_port}
66
[[ -z "$wf_api_port" ]] && wf_api_port=5000
77
api_server_url=http://$(hostname -I | awk '{print $1}'):${wf_api_port}/
8-
workflow_id=9838
8+
workflow_id=10071
99
query="I have a data with gender Female, tenure 55, MonthlyCharges 103.7, TotalCharges 1840.75. Predict if this entry will churn. My workflow id is ${workflow_id}."
1010
validate_result="the prediction is No"
1111

WorkflowExecAgent/tests/test_compose_vllm_on_xeon.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (C) 2024 Intel Corporation
33
# SPDX-License-Identifier: Apache-2.0
44

5-
workflow_id=9838
5+
workflow_id=10071
66
query="I have a data with gender Female, tenure 55, MonthlyAvgCharges 103.7. Predict if this entry will churn. My workflow id is '${workflow_id}'."
77
validate_result="The entry is not likely to churn"
88

0 commit comments

Comments
 (0)