@shipworthy/ai-sdk-llama-cpp 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,8 +5,8 @@ set(CMAKE_CXX_STANDARD 17)
5
5
  set(CMAKE_CXX_STANDARD_REQUIRED ON)
6
6
  set(CMAKE_POSITION_INDEPENDENT_CODE ON)
7
7
 
8
- # Build llama.cpp as a static library
9
- set(LLAMA_STATIC ON CACHE BOOL "Build llama.cpp as static library" FORCE)
8
+ # Build llama.cpp as static libraries (not shared/dynamic)
9
+ set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build static libraries" FORCE)
10
10
  set(LLAMA_BUILD_TESTS OFF CACHE BOOL "Disable llama.cpp tests" FORCE)
11
11
  set(LLAMA_BUILD_EXAMPLES OFF CACHE BOOL "Disable llama.cpp examples" FORCE)
12
12
  set(LLAMA_BUILD_SERVER OFF CACHE BOOL "Disable llama.cpp server" FORCE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipworthy/ai-sdk-llama-cpp",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A minimal llama.cpp provider for the Vercel AI SDK implementing LanguageModelV3 and EmbeddingModelV3",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",