6 lines
243 B
Bash
6 lines
243 B
Bash
#!/usr/bin/env bash
|
|
# The FreeLLMAPI installer moved to https://freellmapi.co/install.sh
|
|
# This shim keeps old `curl ... github.io ... | bash` one-liners working.
|
|
set -euo pipefail
|
|
exec bash -c "$(curl -fsSL https://freellmapi.co/install.sh)"
|