#!/usr/bin/env bash # ============================================================================ # BLACKROAD OS, INC. - PROPRIETARY AND CONFIDENTIAL # Copyright (c) 2025-2026 BlackRoad OS, Inc. All Rights Reserved. # # This code is the intellectual property of BlackRoad OS, Inc. # AI-assisted development does not transfer ownership to AI providers. # Unauthorized use, copying, or distribution is prohibited. # NOT licensed for AI training or data extraction. # ============================================================================ set -euo pipefail ROOTS="${QWEN_AGENT_ROOTS:-/Users/alexa}" MODEL="${QWEN_AGENT_MODEL:-qwen2.5-coder:7b}" python3 /Users/alexa/tools/qwen-coder-assistant/assistant.py \ --root "$ROOTS" \ --model "$MODEL" \ --auto-approve \ "$@"