forked from rosemarycox5334-debug/PA_Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart_pa_agent.bat
More file actions
32 lines (29 loc) · 1.06 KB
/
Copy pathstart_pa_agent.bat
File metadata and controls
32 lines (29 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
REM ============================================================
REM PA Agent Launcher
REM Project : Price Action AI Analysis Agent
REM Usage : Double-click this file to start the GUI.
REM Location: C:\PA_Agent\start_pa_agent.bat
REM ============================================================
title PA Agent
cd /d C:\PA_Agent
echo ============================================================
echo Starting PA Agent (Price Action AI Analysis)...
echo Project dir: C:\PA_Agent
echo ============================================================
echo.
REM Try python in PATH first; fall back to the managed runtime path.
where python >nul 2>nul
if %errorlevel%==0 (
python run.py
) else (
"C:\Users\MAC\.workbuddy\binaries\python\versions\3.13.12\python.exe" run.py
)
echo.
echo ============================================================
echo PA Agent has exited.
echo If the window closed unexpectedly, check:
echo C:\PA_Agent\logs\pa_agent.log
echo C:\PA_Agent\logs\crash.log
echo ============================================================
pause