-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
run_aethernode_server_windows.bat
36 lines (27 loc) · 1.25 KB
/
run_aethernode_server_windows.bat
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
33
34
35
36
@echo off
REM Change directory to the script's location
cd %~dp0
cd AetherNode
REM Activate the virtual environment
call venv\Scripts\activate.bat
REM Check if the model directory exists and contains the model files
python Download_Model.py
REM Use Python to read "Use_Public_API" value from settings.json
python -c "import json; print(json.load(open('settings.json'))['Use_Public_API'])" > temp.txt
set /p Use_Public_Api=<temp.txt
del temp.txt
REM Start the FastAPI app with uvicorn in the background
REM Make sure to replace 'AetherNode_ExLlama2' with the actual name of your FastAPI app file without the .py extension
REM Also, ensure that uvicorn is installed in your environment
start /b uvicorn AetherNode_ExLlama2:app --host 127.0.0.1 --port 8000
echo AetherNode_ExLlama2.py is now serving the app...
REM Check if Use_Public_API is set to True
if "%Use_Public_Api%"=="True" (
echo Starting ngrok to create a public URL...
REM Start ngrok to expose the FastAPI app to a public URL
REM Ensure ngrok is installed and accessible from the command line
REM The following line will open a new command prompt window running ngrok
start ngrok http 8000
) else (
echo Public API not enabled. Running locally only.
)