5 lines
271 B
PowerShell
5 lines
271 B
PowerShell
# The FreeLLMAPI Windows installer lives at https://freellmapi.co/install.ps1
|
|
# This shim keeps old `iwr ... github.io ... | iex` one-liners working.
|
|
$ErrorActionPreference = 'Stop'
|
|
Invoke-Expression (Invoke-RestMethod -UseBasicParsing https://freellmapi.co/install.ps1)
|