Files
agent-aide/aide-program/aide.bat
2025-12-13 05:01:28 +08:00

17 lines
383 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
setlocal
set SCRIPT_DIR=%~dp0
set PROJECT_ROOT=%SCRIPT_DIR%..
set VENV_PY=%PROJECT_ROOT%\.venv\Scripts\python.exe
set PYTHONPATH=%PROJECT_ROOT%\aide-program;%PYTHONPATH%
if not exist "%VENV_PY%" (
echo ✗ 未找到虚拟环境请先运行uv venv .venv ^&^& uv pip install -r requirements.txt
exit /b 1
)
pushd "%PROJECT_ROOT%"
"%VENV_PY%" -m aide %*
popd