TaoNet-mini-T2 / run_chat_fixed.ps1
StarMist0012's picture
Add files using upload-large-folder tool
388fd6e verified
$ErrorActionPreference = "Stop"
$Root = Split-Path -Parent $MyInvocation.MyCommand.Path
$VenvPython = Join-Path $Root ".venv\Scripts\python.exe"
if (Test-Path $VenvPython) {
& $VenvPython "$Root\chat_ssm_fixed.py" --interactive
} else {
python "$Root\chat_ssm_fixed.py" --interactive
}