better prints

This commit is contained in:
Adil Hafeez 2024-10-30 12:01:24 -07:00
parent e8b17a7913
commit 45e03ad0c0
2 changed files with 6 additions and 2 deletions

View file

@ -183,8 +183,6 @@ def up(file, path, service):
# remove duplicates
access_keys = set(access_keys)
# remove the $ from the access_keys
access_keys = [item[1:] if item.startswith("$") else item for item in access_keys]
if access_keys:
if file:

View file

@ -26,10 +26,14 @@ cd ../demos/function_calling
docker compose up api_server --build -d
cd -
print_disk_usage
log building model server
log =====================
cd ../model_server
poetry install 2>&1 >> ../build.log
print_disk_usage
log starting model server
log =====================
mkdir -p ~/archgw_logs
@ -42,7 +46,9 @@ cd -
log building llm and prompt gateway rust modules
log ============================================
cd ../arch
print_disk_usage
docker build -f Dockerfile .. -t katanemo/archgw -q
print_disk_usage
log starting the arch gateway service
log =================================
docker compose -f docker-compose.e2e.yaml down