17 lines
518 B
Text
17 lines
518 B
Text
|
|
load(":formula.bzl", "homebrew_formula")
|
||
|
|
|
||
|
|
homebrew_formula(
|
||
|
|
name = "generate_tts_client_rb",
|
||
|
|
src = "tts-client.rb.tpl",
|
||
|
|
binary = "//experimental/users/acmcarther/llm/tts_grpc:tts_client_go",
|
||
|
|
out = "tts-client.rb",
|
||
|
|
visibility = ["//visibility:public"],
|
||
|
|
)
|
||
|
|
|
||
|
|
homebrew_formula(
|
||
|
|
name = "generate_litellm_client_rb",
|
||
|
|
src = "litellm-client.rb.tpl",
|
||
|
|
binary = "//experimental/users/acmcarther/llm/litellm_grpc:client_go",
|
||
|
|
out = "litellm-client.rb",
|
||
|
|
visibility = ["//visibility:public"],
|
||
|
|
)
|