mirror of
https://github.com/katanemo/plano.git
synced 2026-05-08 15:22:43 +02:00
8 lines
157 B
Bash
8 lines
157 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||
|
|
|
||
|
|
# Run the demo directly against Plano (no agent server needed)
|
||
|
|
uv run "$SCRIPT_DIR/demo.py"
|