From 50c64e0541ce59fe2c398210346fc3bcee20a743 Mon Sep 17 00:00:00 2001 From: Gregor Klevze Date: Mon, 13 Apr 2026 18:28:08 +0200 Subject: [PATCH] Fixed LLM --- commit_output.txt | 9 --------- llm/Dockerfile | 2 ++ 2 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 commit_output.txt diff --git a/commit_output.txt b/commit_output.txt deleted file mode 100644 index b883543..0000000 --- a/commit_output.txt +++ /dev/null @@ -1,9 +0,0 @@ -On branch main -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) - -Untracked files: - (use "git add ..." to include in what will be committed) - commit_output.txt - -nothing added to commit but untracked files present (use "git add" to track) diff --git a/llm/Dockerfile b/llm/Dockerfile index a2dbada..bd536dd 100644 --- a/llm/Dockerfile +++ b/llm/Dockerfile @@ -33,6 +33,8 @@ COPY llm/requirements.txt /app/requirements.txt RUN pip install --no-cache-dir -r /app/requirements.txt COPY --from=builder /src/llama.cpp/build/bin/llama-server /usr/local/bin/llama-server +COPY --from=builder /src/llama.cpp/build/bin/*.so* /usr/local/lib/ +RUN ldconfig COPY llm/main.py /app/main.py COPY llm/entrypoint.sh /entrypoint.sh