File size: 277 Bytes
5862322 | 1 2 3 4 5 6 7 8 9 10 11 12 | $ErrorActionPreference = "Stop"
$root = Split-Path -Parent $PSScriptRoot
Set-Location $root
$env:GRADIO_SERVER_NAME = "127.0.0.1"
if (-not $env:GRADIO_SERVER_PORT) {
$env:GRADIO_SERVER_PORT = "7860"
}
& (Join-Path $root ".venv312\python.exe") (Join-Path $root "app.py")
|