12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
# Voice Assistant TUI Startup Script
|
|
# AI Now Inc - Del Mar Demo Unit
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Activate virtual environment
|
|
source venv/bin/activate
|
|
|
|
# Run the TUI version
|
|
python3 tui_app.py
|