2024-10-26 14:28:25 -07:00
|
|
|
#/bin/sh
|
2024-10-26 14:14:10 -07:00
|
|
|
# if any of the commands fail, the script will exit
|
|
|
|
|
set -e
|
|
|
|
|
|
2024-10-26 14:21:53 -07:00
|
|
|
pwd
|
2024-10-26 14:23:05 -07:00
|
|
|
|
2024-10-26 14:23:54 -07:00
|
|
|
. ./common_scripts.sh
|
2024-10-26 14:14:10 -07:00
|
|
|
|
|
|
|
|
log building function_callling demo
|
2024-10-26 14:29:46 -07:00
|
|
|
cd ../demos/function_calling
|
2024-10-26 14:14:10 -07:00
|
|
|
docker compose build
|
|
|
|
|
|
|
|
|
|
log starting the function_calling demo
|
|
|
|
|
docker compose up -d
|
2024-10-26 14:29:46 -07:00
|
|
|
cd -
|
2024-10-26 14:14:10 -07:00
|
|
|
|
|
|
|
|
log building model server
|
2024-10-26 14:29:46 -07:00
|
|
|
cd ../model_server
|
2024-10-26 14:14:10 -07:00
|
|
|
poetry install
|
|
|
|
|
log starting model server
|
2024-10-26 14:34:12 -07:00
|
|
|
poetry run archgw_modelserver restart
|
2024-10-26 14:29:46 -07:00
|
|
|
cd -
|
2024-10-26 14:14:10 -07:00
|
|
|
|
|
|
|
|
log building llm and prompt gateway rust modules
|
2024-10-26 14:29:46 -07:00
|
|
|
cd ../arch
|
2024-10-26 14:14:10 -07:00
|
|
|
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
|
2024-10-26 14:29:46 -07:00
|
|
|
cd -
|
2024-10-26 14:14:10 -07:00
|
|
|
|
|
|
|
|
wait_for_healthz "http://localhost:10000/healthz" 60
|
|
|
|
|
|
|
|
|
|
log running e2e tests
|
|
|
|
|
poetry install
|
|
|
|
|
poetry run pytest
|
|
|
|
|
|
|
|
|
|
log shutting down the arch gateway service
|
2024-10-26 14:29:46 -07:00
|
|
|
cd ../arch
|
2024-10-26 14:14:10 -07:00
|
|
|
docker compose -f docker-compose.dev.yaml stop
|
2024-10-26 14:29:46 -07:00
|
|
|
cd -
|
2024-10-26 14:14:10 -07:00
|
|
|
|
|
|
|
|
log shutting down the function_calling demo
|
2024-10-26 14:29:46 -07:00
|
|
|
cd ../demos/function_calling
|
2024-10-26 14:14:10 -07:00
|
|
|
docker compose down
|
2024-10-26 14:29:46 -07:00
|
|
|
cd -
|