d93385b373
CI / Check / macos-latest (push) Waiting to run
CI / Check / ubuntu-latest (push) Waiting to run
CI / Check / windows-latest (push) Waiting to run
CI / Test / macos-latest (push) Waiting to run
CI / Test / ubuntu-latest (push) Waiting to run
CI / Test / windows-latest (push) Waiting to run
CI / Clippy (push) Waiting to run
CI / Format (push) Waiting to run
CI / Security Audit (push) Waiting to run
CI / Secrets Scan (push) Waiting to run
CI / Install Script Smoke Test (push) Waiting to run
13 lines
480 B
Batchfile
13 lines
480 B
Batchfile
@echo off
|
|
set HTTPS_PROXY=
|
|
set HTTP_PROXY=
|
|
set GOOGLE_APPLICATION_CREDENTIALS=C:\Users\at384\Downloads\osc\dbg-grcit-dev-e1-c79e5571a5a7.json
|
|
set RUST_LOG=openfang_runtime::drivers::vertex=debug,openfang=info
|
|
set RUST_BACKTRACE=full
|
|
cd /d C:\Users\at384\Downloads\osc\dllm\openfang
|
|
echo Getting access token...
|
|
for /f "tokens=*" %%a in ('gcloud auth print-access-token') do set VERTEX_AI_ACCESS_TOKEN=%%a
|
|
echo Token set, starting OpenFang...
|
|
target\debug\openfang.exe start
|
|
pause
|