patch: increasing MAX_REPETITION_THRESHOLD to allow complex agentic workflows

This commit is contained in:
Donato Capitella
2026-03-25 09:23:03 +00:00
parent eb03432a50
commit ca84f4cbf3
6 changed files with 32 additions and 6 deletions
+3 -2
View File
@@ -59,9 +59,10 @@ RUN git clone -b ${BRANCH} --single-branch --recursive ${REPO} . \
&& git clean -xdf \
&& git submodule update --recursive
COPY llama-grammar.patch /tmp/llama-grammar.patch
RUN cmake -S . -B build \
RUN patch -p1 < /tmp/llama-grammar.patch \
&& cmake -S . -B build \
-DGGML_HIP=ON \
-DAMDGPU_TARGETS=gfx1151 \
-DCMAKE_BUILD_TYPE=Release \