rename LLModel -> ModelBackend, EmbLLModel -> EmbCapableBackend

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel
2024-08-07 17:44:34 -04:00
parent bafbed9c6b
commit 5be5314ace
13 changed files with 45 additions and 45 deletions

View File

@@ -55,7 +55,7 @@ def copy_prebuilt_C_lib(src_dir, dest_dir, dest_build_dir):
# NOTE: You must provide correct path to the prebuilt llmodel C library.
# Specifically, the llmodel.h and C shared library are needed.
# Specifically, the model_backend.h and C shared library are needed.
copy_prebuilt_C_lib(SRC_CLIB_DIRECTORY,
DEST_CLIB_DIRECTORY,
DEST_CLIB_BUILD_DIRECTORY)

View File

@@ -1,4 +1,4 @@
#include "llmodel.h"
#include "model_backend.h"
#include "llmodel_c.h"
#include "prompt.h"
#include <atomic>

View File

@@ -1,7 +1,7 @@
#ifndef PREDICT_WORKER_H
#define PREDICT_WORKER_H
#include "llmodel.h"
#include "model_backend.h"
#include "llmodel_c.h"
#include "napi.h"
#include <atomic>