Command: powershell -NoProfile -Command "\n$ErrorActionPreference='SilentlyContinue'\n$videoExt=@('.mp4','.mkv','.avi','.mov','.m4v','.wmv','.webm','.ts','.mts','.m2ts','.flv')\n$sideExt=@('.srt','.vtt','.ass','.ssa','.sub','.txt','.json')\n$root='E:\\Secreto'\n$missing=@()\nif(Test-Path -LiteralPath $root){\n Get-ChildItem -LiteralPath $root -Recurse -File | Where-Object {$videoExt -contains $_.Extension.ToLowerInvariant()} | ForEach-Object {\n $v=$_\n $dir=$v.DirectoryName\n $stem=[IO.Path]::GetFileNameWithoutExtension($v.Name).ToLowerInvariant()\n $found=$false\n Get-ChildItem -LiteralPath $dir -File -ErrorAction SilentlyContinue | ForEach-Object {\n if(-not $found){\n $oe=$_.Extension.ToLowerInvariant()\n if($sideExt -contains $oe){\n $os=[IO.Path]::GetFileNameWithoutExtension($_.Name).ToLowerInvariant()\n if($os -eq $stem -or $os.StartsWith($stem+'.')){$found=$true}\n }\n }\n }\n if(-not $found){\n $rel=$v.FullName.Substring($root.Length).TrimStart('\\')\n $missing += [pscustomobject]@{relative=$rel;stem=[IO.Path]::GetFileNameWithoutExtension($rel)}\n }\n }\n}\n$py='C:\\ProgramData\\ChirpDirectServer\\runtime\\python\\python.exe'\n$site=@()\nif(Test-Path -LiteralPath $py){\n $sp=Join-Path (Split-Path $py) 'Lib\\site-packages'\n if(Test-Path -LiteralPath $sp){\n foreach($pat in @('faster_whisper*','ctranslate2*','torch*','nvidia*')){\n Get-ChildItem -LiteralPath $sp -Filter $pat -ErrorAction SilentlyContinue | ForEach-Object {\n $site += [pscustomobject]@{name=$_.Name;path=$_.FullName;dir=$_.PSIsContainer}\n }\n }\n }\n}\n$modelRoots=@(\n 'C:\\ProgramData\\AudioProcess',\n 'C:\\ProgramData\\ChirpDirectServer',\n 'C:\\Users\\ash\\.cache\\huggingface\\hub',\n 'C:\\Users\\ash\\AppData\\Local\\huggingface\\hub'\n)\n$modelHits=@()\nforeach($mr in $modelRoots){\n if(Test-Path -LiteralPath $mr){\n Get-ChildItem -LiteralPath $mr -Recurse -File -ErrorAction SilentlyContinue |\n Where-Object {$_.Name -eq 'model.bin' -or $_.Name -like 'ggml-*.bin'} |\n Select-Object -First 30 | ForEach-Object {\n $modelHits += [pscustomobject]@{path=$_.FullName;size=$_.Length}\n }\n }\n}\n[pscustomobject]@{\n missing_count=$missing.Count\n missing=$missing\n python_exists=(Test-Path -LiteralPath $py)\n site_packages=$site\n model_hits=$modelHits\n} | ConvertTo-Json -Compress -Depth 5\n"
Directory: projects
Status: FAILED
Exit code: 1
Cancel Job Rerun Command Refresh
Unexpected token '}' in expression or statement.
Not all parse errors were reported. Correct the reported errors and try again.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : ExpectedExpression
---
Not all parse errors were reported. Correct the reported errors and try again.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : ExpectedExpression
---At line:1 char:233
+ ... ssa','.sub','.txt','.json')\n$root='E:\\Secreto'\n$missing=@()\nif(Te ...
+ ~
An expression was expected after '('.
At line:1 char:703
+ ... if(-not $found){\n $oe=$_.Extension.ToLowerInvariant()\n ...
+ ~
An expression was expected after '('.
At line:1 char:1207
+ ... ta\\ChirpDirectServer\\runtime\\python\\python.exe'\n$site=@()\nif(Te ...
+ ~
An expression was expected after '('.
At line:1 char:1350
+ ... ages'\n if(Test-Path -LiteralPath $sp){\n foreach($pat in @('fast ...
+ ~~
Unexpected token 'in' in expression or statement.
At line:1 char:1349
+ ... ackages'\n if(Test-Path -LiteralPath $sp){\n foreach($pat in @('f ...
+ ~
Missing closing ')' in expression.
At line:1 char:1330
+ ... $py) 'Lib\\site-packages'\n if(Test-Path -LiteralPath $sp){\n fo ...
+ ~
Missing closing '}' in statement block or type definition.
At line:1 char:1240
+ ... thon\\python.exe'\n$site=@()\nif(Test-Path -LiteralPath $py){\n $sp= ...
+ ~
Missing closing '}' in statement block or type definition.
At line:1 char:1407
+ ... at in @('faster_whisper*','ctranslate2*','torch*','nvidia*')){\n ...
+ ~
Unexpected token ')' in expression or statement.
At line:1 char:1613
+ ... Name;path=$_.FullName;dir=$_.PSIsContainer}\n }\n }\n }\n}\n ...
+ ~~
Unexpected token '\n' in expression or statement.
At line:1 char:1617
+ ... e;path=$_.FullName;dir=$_.PSIsContainer}\n }\n }\n }\n}\n$mo ...
+ ~
Unexpected token '}' in expression or statement.
Not all parse errors were reported. Correct the reported errors and try again.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : ExpectedExpression