@echo off echo ======================================== echo Dubsway Video AI - Agentic System Runner 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 agentic daemon echo Starting agentic video processing daemon... echo. echo The daemon will: echo - Process pending videos with enhanced analysis echo - Use Groq Llama3-8b-8192 for intelligent reasoning echo - Generate beautiful, comprehensive reports echo - Fall back to basic analysis if needed echo. echo Press Ctrl+C to stop the daemon echo. python -m worker.daemon