mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
replace pushd with cd
This commit is contained in:
parent
b1da19588d
commit
963bc4ac5a
1 changed files with 10 additions and 10 deletions
|
|
@ -7,28 +7,28 @@ pwd
|
|||
. ./common_scripts.sh
|
||||
|
||||
log building function_callling demo
|
||||
pushd ../demos/function_calling
|
||||
cd ../demos/function_calling
|
||||
docker compose build
|
||||
|
||||
log starting the function_calling demo
|
||||
docker compose up -d
|
||||
popd
|
||||
cd -
|
||||
|
||||
log building model server
|
||||
pushd ../model_server
|
||||
cd ../model_server
|
||||
poetry install
|
||||
log starting model server
|
||||
archgw_modelserver restart
|
||||
popd
|
||||
cd -
|
||||
|
||||
log building llm and prompt gateway rust modules
|
||||
pushd ../arch
|
||||
cd ../arch
|
||||
sh build_filter_image.sh
|
||||
log starting the arch gateway service
|
||||
ARCH_CONFIG_FILE=../demos/function_calling/arch_config.yaml
|
||||
docker compose -f docker-compose.dev.yaml down
|
||||
docker compose -f docker-compose.dev.yaml up -d
|
||||
popd
|
||||
cd -
|
||||
|
||||
wait_for_healthz "http://localhost:10000/healthz" 60
|
||||
|
||||
|
|
@ -37,11 +37,11 @@ poetry install
|
|||
poetry run pytest
|
||||
|
||||
log shutting down the arch gateway service
|
||||
pushd ../arch
|
||||
cd ../arch
|
||||
docker compose -f docker-compose.dev.yaml stop
|
||||
popd
|
||||
cd -
|
||||
|
||||
log shutting down the function_calling demo
|
||||
pushd ../demos/function_calling
|
||||
cd ../demos/function_calling
|
||||
docker compose down
|
||||
popd
|
||||
cd -
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue