@echo off echo ======================================== echo Dubsway Video AI - Lightweight Agentic System echo ======================================== echo. REM Activate virtual environment echo Activating virtual environment... call myenv31\Scripts\activate.bat REM Check for Groq API key if "%GROQ_API_KEY%"=="" ( echo. echo ======================================== echo GROQ API KEY REQUIRED echo ======================================== echo. echo Please set your Groq API key: echo 1. Get API key from: https://console.groq.com/ echo 2. Set environment variable: set GROQ_API_KEY=your_key_here echo. echo Then run this script again. echo. pause exit /b 1 ) echo Groq API key found! echo. REM Run the lightweight agentic daemon echo Starting lightweight agentic video processing daemon... echo. echo The lightweight daemon will: echo - Process videos with Groq Llama3-8b-8192 analysis echo - Skip heavy computer vision models (no hanging) echo - Provide intelligent text-based insights echo - Generate beautiful reports echo - Fall back to basic analysis if needed echo. echo Press Ctrl+C to stop the daemon echo. python -m worker.daemon