Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions chapters/en/chapter2/8.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,9 @@ First, install and build llama.cpp:
git clone https://github.com/ggerganov/llama.cpp
cd llama.cpp

# Build the project
make
# Build the project
cmake -B build
cmake --build build --config Release

# Download the SmolLM2-1.7B-Instruct-GGUF model
curl -L -O https://huggingface.co/HuggingFaceTB/SmolLM2-1.7B-Instruct-GGUF/resolve/main/smollm2-1.7b-instruct.Q4_K_M.gguf
Expand Down