diff --git a/PowerShell_AI_Agent/scripts/main.ps1 b/PowerShell_AI_Agent/scripts/main.ps1 index f148feb..f55ebc1 100644 --- a/PowerShell_AI_Agent/scripts/main.ps1 +++ b/PowerShell_AI_Agent/scripts/main.ps1 @@ -19,6 +19,11 @@ if ($PSVersionTable.PSVersion.Major -lt 7) { exit 1 } +# Global variables +$script:SpeechRecognizer = $null +$script:SpeechSynthesizer = $null +$script:AutopilotEnabled = $false + # Load configuration function Load-Configuration { param([string]$ConfigPath)