Skip to content

Commit 0a929e1

Browse files
authored
Merge branch 'main' into main
2 parents 025e7fa + b1d23df commit 0a929e1

File tree

5 files changed

+285
-29
lines changed

5 files changed

+285
-29
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.9]
11+
12+
- feat: Update llama.cpp to ggerganov/llama.cpp@8733e0cf6eefc7c7752297cc22d0836706f4222c
13+
1014
## [0.3.8]
1115

1216
- feat: Update llama.cpp to ggerganov/llama.cpp@7841fc723e059d1fd9640e5c0ef19050fcc7c698

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ if (LLAMA_BUILD)
6262
# Enable building of the common library
6363
set(LLAMA_BUILD_COMMON ON CACHE BOOL "Build llama.cpp common library" FORCE)
6464

65+
# Disable building curl support
66+
set(LLAMA_CURL OFF CACHE BOOL "llama.cpp: enable curl" FORCE)
67+
6568
# Architecture detection and settings for Apple platforms
6669
if (APPLE)
6770
# Get the target architecture
@@ -143,7 +146,7 @@ if (LLAMA_BUILD)
143146
endif()
144147

145148
# Building llava
146-
add_subdirectory(vendor/llama.cpp/examples/llava)
149+
add_subdirectory(vendor/llama.cpp/tools/mtmd)
147150
set_target_properties(llava_shared PROPERTIES OUTPUT_NAME "llava")
148151

149152
if (WIN32)

llama_cpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .llama_cpp import *
22
from .llama import *
33

4-
__version__ = "0.3.8"
4+
__version__ = "0.3.9"

0 commit comments

Comments
 (0)