Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.idea
target
build
cmake-build-*
.DS_Store
.directory
.vscode
Expand Down Expand Up @@ -41,4 +42,4 @@ src/test/resources/**/*.gbnf

**/*.etag
**/*.lastModified
src/main/cpp/llama.cpp/
src/main/cpp/llama.cpp/
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ FetchContent_MakeAvailable(json)

#################### llama.cpp ####################

set(LLAMA_BUILD_COMMON ON)
FetchContent_Declare(
llama.cpp
GIT_REPOSITORY https://github.com/ggerganov/llama.cpp.git
GIT_TAG b3751
GIT_TAG b4513
)
FetchContent_MakeAvailable(llama.cpp)

Expand Down
Loading