2024-10-22 16:41:52 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
2024-02-28 15:47:37 +00:00
|
|
|
|
|
|
|
|
def repo():
|
2024-10-22 16:41:52 +00:00
|
|
|
git_repository(
|
2024-02-28 15:47:37 +00:00
|
|
|
name = "com_google_sentencepiece",
|
|
|
|
|
remote = "https://github.com/google/sentencepiece.git",
|
2024-10-22 16:41:52 +00:00
|
|
|
commit = "273449044caa593c2fd7eb7550cb3ab2cff93f1a",
|
2024-02-28 15:47:37 +00:00
|
|
|
build_file = "//third_party/com_google_sentencepiece:sentencepiece.bazel",
|
|
|
|
|
)
|