remove --docker from demo scripts, native is default

This commit is contained in:
Adil Hafeez 2026-03-04 06:23:00 -08:00
parent 2d327e6ec9
commit 6f6427ddfa
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
9 changed files with 18 additions and 18 deletions

View file

@ -20,7 +20,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 4: Start developer services
echo "Starting Network Agent using Docker Compose..."
@ -35,7 +35,7 @@ stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -19,7 +19,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with arch_config_with_aliases.yaml..."
planoai up --docker arch_config_with_aliases.yaml
planoai up arch_config_with_aliases.yaml
echo "\n\nPlano started successfully."
echo "Please run the following command to test the setup: python bench.py\n"
@ -29,7 +29,7 @@ start_demo() {
stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -20,7 +20,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 4: Start Network Agent
echo "Starting HR Agent using Docker Compose..."
@ -35,7 +35,7 @@ stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -20,7 +20,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 4: Start developer services
echo "Starting Network Agent using Docker Compose..."
@ -35,7 +35,7 @@ stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -20,7 +20,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 4: Start LLM Routing
echo "Starting LLM Routing using Docker Compose..."
@ -35,7 +35,7 @@ stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -74,7 +74,7 @@ start_demo() {
# Step 4: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 5: Start Network Agent with the chosen Docker Compose file
echo "Starting Network Agent with $COMPOSE_FILE..."
@ -93,7 +93,7 @@ stop_demo() {
# Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -20,7 +20,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 4: Start developer services
echo "Starting Network Agent using Docker Compose..."
@ -35,7 +35,7 @@ stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -20,7 +20,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with config.yaml..."
planoai up --docker config.yaml
planoai up config.yaml
# Step 4: Start developer services
echo "Starting Network Agent using Docker Compose..."
@ -35,7 +35,7 @@ stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic

View file

@ -26,7 +26,7 @@ start_demo() {
# Step 3: Start Plano
echo "Starting Plano with arch_config_with_aliases.yaml..."
planoai up --docker arch_config_with_aliases.yaml
planoai up arch_config_with_aliases.yaml
echo "\n\nPlano started successfully."
echo "Please run the following CURL command to test model alias routing. Additional instructions are in the README.md file. \n"
@ -48,7 +48,7 @@ start_demo() {
stop_demo() {
# Step 2: Stop Plano
echo "Stopping Plano..."
planoai down --docker
planoai down
}
# Main script logic