Download for Linux x64
CLI gateway
Download the gateway package for your operating system. Use it to apply configured policy in your development environment.
Choose your operating system. Install verdictan. Create policy-config.yaml. Validate it. Then start the gateway.
Download for Linux x64
Download the gateway package for your operating system. Use it to apply configured policy in your development environment.
After you install verdictan, use a shell or script to complete each setup step.
curl -fsSLO https://dl.eu.verdictan.com/releases/latest/verdictan-linux-x86_64.debFollow the platform steps. Verify verdictan. Then send your first governed request through the gateway.
Setup steps
Download the universal disk image for a Mac with Apple silicon or an Intel processor.
Download the disk image. Mount it. Copy verdictan to /usr/local/bin. Then unmount the image.
curl -fsSLO https://dl.eu.verdictan.com/releases/latest/verdictan-macos-universal.dmg
hdiutil attach verdictan-macos-universal.dmg
sudo cp /Volumes/Verdictan\ Gateway/verdictan /usr/local/bin/verdictan
hdiutil detach /Volumes/Verdictan\ GatewayRun verdictan --version. Then run verdictan doctor to check the workstation.
verdictan --version
verdictan doctorRun verdictan init to create policy-config.yaml. Review the file before you route traffic.
verdictan initLint policy-config.yaml. Test the policy configuration. Export the runtime and upstream settings. Then start the gateway.
verdictan policy lint --file policy-config.yaml
verdictan policy test --json
export VERDICTAN_API_TOKEN="vdt_your_gateway_runtime_token"
export VERDICTAN_UPSTREAM_URL="https://api.openai.com"
export VERDICTAN_UPSTREAM_API_KEY="sk-..."
verdictan gateway run --listen 0.0.0.0:41002 --agent local-evaluation --policy-config policy-config.yamlChoose the Debian or RPM package that matches your Linux x64 system.
Install the Debian or RPM package that matches your Linux distribution.
# Debian / Ubuntu
curl -fsSLO https://dl.eu.verdictan.com/releases/latest/verdictan-linux-x86_64.deb
sudo dpkg -i verdictan-linux-x86_64.deb
# RHEL / Fedora
curl -fsSLO https://dl.eu.verdictan.com/releases/latest/verdictan-linux-x86_64.rpm
sudo rpm -i verdictan-linux-x86_64.rpmRun verdictan --version. Then run verdictan doctor to check the host.
verdictan --version
verdictan doctorRun verdictan init to create policy-config.yaml. Review the file before you route traffic.
verdictan initLint policy-config.yaml. Test the policy configuration. Export the runtime and upstream settings. Then start the gateway.
verdictan policy lint --file policy-config.yaml
verdictan policy test --json
export VERDICTAN_API_TOKEN="vdt_your_gateway_runtime_token"
export VERDICTAN_UPSTREAM_URL="https://api.openai.com"
export VERDICTAN_UPSTREAM_API_KEY="sk-..."
verdictan gateway run --listen 0.0.0.0:41002 --agent local-evaluation --policy-config policy-config.yamlDownload the archive for ARM64 Linux systems.
Extract verdictan from the ARM64 archive into /usr/local/bin.
curl -fsSL https://dl.eu.verdictan.com/releases/latest/verdictan-linux-aarch64.tar.gz \
| sudo tar xz -C /usr/local/bin verdictanRun verdictan --version. Then run verdictan doctor to check the host.
verdictan --version
verdictan doctorRun verdictan init to create policy-config.yaml. Review the file before you route traffic.
verdictan initLint policy-config.yaml. Test the policy configuration. Export the runtime and upstream settings. Then start the gateway.
verdictan policy lint --file policy-config.yaml
verdictan policy test --json
export VERDICTAN_API_TOKEN="vdt_your_gateway_runtime_token"
export VERDICTAN_UPSTREAM_URL="https://api.openai.com"
export VERDICTAN_UPSTREAM_API_KEY="sk-..."
verdictan gateway run --listen 0.0.0.0:41002 --agent local-evaluation --policy-config policy-config.yamlDownload the Windows x64 ZIP package. Then expand it with PowerShell.
Use PowerShell to download the ZIP package. Expand it into your local application-data directory.
Invoke-WebRequest -Uri "https://dl.eu.verdictan.com/releases/latest/verdictan-windows-x86_64.zip" -OutFile verdictan-windows-x86_64.zip
Expand-Archive verdictan-windows-x86_64.zip -DestinationPath "$env:LOCALAPPDATA\verdictan"Add the installation directory to PATH for this session. Run verdictan --version. Then run verdictan doctor.
$env:PATH += ";$env:LOCALAPPDATA\verdictan"
verdictan --version
verdictan doctorRun verdictan init to create policy-config.yaml. Review the file before you route traffic.
verdictan initLint policy-config.yaml. Test the policy configuration. Export the runtime and upstream settings. Then start the gateway.
verdictan policy lint --file policy-config.yaml
verdictan policy test --json
$env:VERDICTAN_API_TOKEN = "vdt_your_gateway_runtime_token"
$env:VERDICTAN_UPSTREAM_URL = "https://api.openai.com"
$env:VERDICTAN_UPSTREAM_API_KEY = "sk-..."
verdictan gateway run --listen 0.0.0.0:41002 --agent local-evaluation --policy-config policy-config.yamlAfter you install verdictan
Validate a configuration. Then send your first governed request through the gateway.
Start the quickstartReview configurable controls for data protection, safety, compliance workflows, routing and human review.
Review policy controlsFollow the complete installation and configuration instructions for each supported platform.
Read the installation guideGo to the complete documentation at docs.verdictan.com.