mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-22 22:18:09 +00:00
* fix(memory): move local llama.cpp runtime to provider plugin * chore: ignore llama cpp dynamic dependency * test: remove invalid local provider alias fixture * chore: refresh llama cpp shrinkwrap * chore: drop stale memory embedding defaults facade
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { llamaCppEmbeddingProviderAdapter } from "./src/embedding-provider.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "llama-cpp",
|
|
name: "llama.cpp Provider",
|
|
description: "Local GGUF embeddings through node-llama-cpp",
|
|
register(api) {
|
|
api.registerEmbeddingProvider(llamaCppEmbeddingProviderAdapter);
|
|
},
|
|
});
|