Skip to content

Commit ad2034c

Browse files
fix: add missing SSH_HOST module-level variable
1 parent 10b4ca5 commit ad2034c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

vibe_demo_agent/vibe_demo_agent.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@
4141
RED = '\033[1;91m'
4242
RESET = '\033[0m'
4343

44+
# ---------------------------------------------------------------------------
45+
# SSH Remote Execution — "Local Controller / Remote Execution" pattern
46+
# Set DEMO_SSH_HOST to run infrastructure commands on a remote Cobalt node
47+
# while keeping TTS audio and terminal visuals local.
48+
# ---------------------------------------------------------------------------
49+
SSH_HOST = os.environ.get('DEMO_SSH_HOST', '')
50+
4451
_LOGO_SCRIPT = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'logo.sh')
4552

4653
def print_logo():

0 commit comments

Comments
 (0)