17 lines
337 B
Smarty
17 lines
337 B
Smarty
|
|
class LitellmClient < Formula
|
||
|
|
desc "Internal Litellm Client for CSBX"
|
||
|
|
homepage "https://forgejo.csbx.dev/acmcarther/yesod"
|
||
|
|
version "{VERSION}"
|
||
|
|
|
||
|
|
url "{URL}"
|
||
|
|
sha256 "{SHA256}"
|
||
|
|
|
||
|
|
def install
|
||
|
|
bin.install "litellm-client-darwin-arm64" => "litellm-client"
|
||
|
|
end
|
||
|
|
|
||
|
|
test do
|
||
|
|
system "#{bin}/litellm-client", "--help"
|
||
|
|
end
|
||
|
|
end
|