Files
openclaw/extensions/llama-cpp/openclaw.plugin.json
T
Peter Steinberger 1348387076 refactor(plugins): replace node-llama-cpp with managed llama-server (#123105)
Move llama.cpp chat and local embeddings onto a verified externally managed llama-server runtime. Remove the in-process native runtime, forked embedding workers, and node-llama-cpp dependency while preserving guided setup, local GGUF models, tool-capable agent runs, diagnostics, and operator docs.
2026-08-13 16:58:20 -07:00

52 lines
1.2 KiB
JSON

{
"id": "llama-cpp",
"name": "llama.cpp Provider",
"description": "Managed local llama.cpp server for GGUF chat and embeddings.",
"doctorContract": {
"configRepair": true
},
"activation": {
"onStartup": false
},
"enabledByDefault": true,
"providers": ["llama-cpp"],
"providerRequest": {
"providers": {
"llama-cpp": {
"family": "llama-cpp"
}
}
},
"modelPricing": {
"providers": {
"llama-cpp": {
"external": false
}
}
},
"syntheticAuthRefs": ["llama-cpp"],
"nonSecretAuthMarkers": ["llama-cpp-local"],
"providerAuthChoices": [
{
"provider": "llama-cpp",
"method": "local",
"choiceId": "llama-cpp",
"appGuidedDiscovery": true,
"appGuidedActionLabel": "Set up model",
"choiceLabel": "llama.cpp",
"choiceHint": "Install a verified llama.cpp server and run a private GGUF model managed by OpenClaw",
"groupId": "llama-cpp",
"groupLabel": "Local llama.cpp",
"groupHint": "No API key required"
}
],
"contracts": {
"embeddingProviders": ["local"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {}
}
}