Skip to content

Commit a1fc626

Browse files
author
Chris Warren-Smith
committed
LLAMA: nitro - partial fix for RAG handling
1 parent 7ecac60 commit a1fc626

7 files changed

Lines changed: 458 additions & 139 deletions

File tree

llama/CMakeLists.txt

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ add_subdirectory(${LLAMA_DIR})
113113
set(PLUGIN_SOURCES
114114
main.cpp
115115
llama-sb.cpp
116-
llama-sb-rag.cpp
117116
../include/param.cpp
118117
../include/hashmap.cpp
119118
../include/apiexec.cpp
@@ -237,6 +236,7 @@ if(NC_FOUND)
237236
message(STATUS "notcurses found — building nitro")
238237
add_executable(nitro
239238
nitro.cpp
239+
llama-sb-rag.cpp
240240
)
241241
target_include_directories(nitro PRIVATE
242242
${LLAMA_DIR}/include
@@ -262,17 +262,6 @@ else()
262262
message(STATUS "notcurses not found — skipping nitro (set -DNOTCURSES_DIR=... to enable)")
263263
endif()
264264

265-
# -----------------------------
266-
# Header preparation for RAG indexer
267-
# -----------------------------
268-
add_executable(chunk_headers
269-
chunk_headers.cpp
270-
)
271-
272-
set_target_properties(chunk_headers PROPERTIES
273-
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
274-
)
275-
276265
# ------------------------------------------------------------------
277266
# Android native library
278267
# ------------------------------------------------------------------

0 commit comments

Comments
 (0)