@@ -24,12 +24,11 @@ def llm_engine():
24
24
new_git_repository (
25
25
name = "llm_engine" ,
26
26
remote = "https://github.com/openvinotoolkit/openvino.genai" ,
27
- commit = "5dc96ff3ee358a19a8903c489847546095423cb8 " , # master 2025-08-09
27
+ commit = "d6b2e816ba8edc52f3f4ac459240f664df67c1b8 " , # master 2025-08-13
28
28
build_file = "@_llm_engine//:BUILD" ,
29
29
init_submodules = True ,
30
30
recursive_init_submodules = True ,
31
31
patch_args = ["-p1" ],
32
- patches = ["cb.patch" ],
33
32
)
34
33
# when using local repository manually run: git submodule update --recursive
35
34
#native.new_local_repository(
@@ -66,6 +65,9 @@ def _impl(repository_ctx):
66
65
"WIN32": "True",
67
66
"X86_64": "True",
68
67
"BUILD_TOKENIZERS": "OFF",
68
+ "ENABLE_SAMPLES": "OFF",
69
+ "ENABLE_TOOLS": "OFF",
70
+ "ENABLE_TESTS": "OFF",
69
71
"ENABLE_XGRAMMAR": "ON",
70
72
"""
71
73
jobs_param = "\" -j 8\" " # on Windows we do not need to specify number of jobs, it's set to all available cores number
@@ -82,6 +84,9 @@ def _impl(repository_ctx):
82
84
"CMAKE_ARCHIVE_OUTPUT_DIRECTORY": "lib",
83
85
"ENABLE_SYSTEM_ICU": "True",
84
86
"BUILD_TOKENIZERS": "OFF",
87
+ "ENABLE_SAMPLES": "OFF",
88
+ "ENABLE_TOOLS": "OFF",
89
+ "ENABLE_TESTS": "OFF",
85
90
"ENABLE_XGRAMMAR": "ON",
86
91
"""
87
92
jobs_param = "\" -j 8\" " # on Linux we need to specify jobs number, by default it's set to 1
0 commit comments