-
Notifications
You must be signed in to change notification settings - Fork 1
Module llama cpp Changelog
github-actions[bot] edited this page Aug 31, 2026
·
2 revisions
β οΈ Historisches Changelog β EintrΓ€ge beschreiben den Stand zum Zeitpunkt der Erstellung.
All notable changes to the llama_cpp LLM backend plugin are documented here. The format is based on Keep a Changelog.
- True parallel
generateBatch()when real llama.cpp multi-sequence batching is available - SHA-256 model digest (replace FNV-64 placeholder with OpenSSL
EVP_DigestFinal)
-
std::atomic<uint64_t>counters:inference_count_,error_count_,stream_retry_count_are now lock-free atomics;getPerformanceStats()exposes all three includingstream_retry_count. -
Stream-callback retry:
generate()wraps everystream_callbackinvocation ininvokeStreamCallback()with up to 3 transient-exception retries;std::bad_allocis non-retryable;stream_retry_count_tracks retries for observability. -
Join-hardening review: removed the unused
joinWithTimeouthelper after review because its detached monitor thread lifetime was unsafe; the module keeps no owned join sites and the originalthread_join_no_timeoutfindings remain triaged as false positives. -
importLoRAsecurity hardening: GGUF magic-bytes validation (0x47 0x47 0x55 0x46) and 2 GB size bound enforced before any delegation toLlamaWrapper; fail-closed. -
loadModelintegrity gate: opt-in FNV-64 digest check via"verify_model_digest": true-
"expected_model_digest"config keys; fails closed on mismatch. Upgrade path to SHA-256 documented in header.
-
-
setPolicyFn(PolicyFn): pluggable inference policy hook;generate()andgenerateRAG()gate on the functor result before dispatching inference; denial returnssuccess=falsewith the caller-supplied reason. -
LlamaCppPluginRegistrar::initFromServerConfig(server_config): server-startup integration point; readsconfig["llm"]["model_path"]and delegates toregisterWithLLMManager(). -
defaultReloadCallback()fix: now callsplugin.loadModel(path, config)whenmodel_pathis present; returnstrue(stub mode) for empty path. -
generateRAG() data-race fix: shared state (
model_loaded_,context_length_) is snapshotted undermutex_at entry; subsequent work is lock-free. -
LLCPG-1..4 release gate benchmarks: TTFT stub baseline, 100-doc batch-embedding
throughput, LoRA-load P99, and regression-baseline snapshot (all with
UseRealTime()). - 21 new tests β Groups U (concurrency Γ4), V (security Γ6), W (registrar integration Γ8), X (retry/join Γ3).
-
generateRAG(): CRITICAL data-race onmodel_loaded_/context_length_reads outside mutex. -
defaultReloadCallback(): previously contained a stub comment that prevented real model reload. -
getPerformanceStats(): now uses explicit.load()for all atomic reads.
-
importLoRA: GGUF magic + 2 GB size-bound prevent heap-exhaustion and deserialization attacks. -
loadModel: opt-in model-file digest gate prevents tampered GGUF models from being loaded. -
setPolicyFn: inference can be gated by an external governance policy without modifying the plugin.
-
Function / tool calling:
LlamaCppPlugin::getCapabilities().supports_function_callis nowtrue. WhenInferenceRequest::toolsis non-empty:- With
THEMIS_LLM_ENABLED+ a loadedLlamaWrapper: tool-call grammar constraint andJsonSchemaConverter::parseToolCall()are already handled insideLlamaWrapper::generate(). - With an injected
generate_fn_bridge: tools are forwarded unchanged in the request; bridge-producedtool_callspass through untouched. - In stub / test mode (
THEMIS_LLAMA_CPP_STUB_MODE): a minimal JSON tool-call for the first tool definition is synthesised, parsed, and stored inInferenceResponse::tool_callsso callers and tests can exercise the path without a real model.
- With
-
Per-request cancellation token:
InferenceRequestgains astd::shared_ptr<std::atomic<bool>> cancellation_tokenfield (default:nullptr= no cancellation).LlamaCppPlugin::generate()checks the token immediately after state acquisition; if already set totruethe call returnssuccess=false+error_message="Request cancelled"without starting inference. - 5 new unit tests (groups S1βS3, T1βT2) covering tool calling and cancellation.
- Streaming token output:
LlamaCppPlugin::generate()now callsInferenceRequest::stream_callback(when set) with the generated text. In stub mode the full response text is delivered as a single callback invocation so callers always receive at least one token event. -
LlamaCppPlugin::generateStream(request, callback)convenience method that injects the callback intoInferenceRequest::stream_callbackand delegates togenerate(). -
LlamaCppPlugin::generateBatch(requests)batch inference method that processes requests sequentially and returns a same-size response vector. Per-request errors are propagated individually without aborting the batch. -
LlamaCppPluginRegistrar(include/llama_cpp/llama_cpp_registrar.h+src/llama_cpp/llama_cpp_registrar.cpp): factory and registration helper for PluginManager hot-plug integration. ProvidescreatePlugin(),createAdapter(),registerWithLLMManager(), anddefaultReloadCallback(). - 20 new unit tests (groups KβM) covering streaming, batch inference, capabilities v2.1.0, and PluginManager registration.
-
getCapabilities().supports_streamingset totrue. -
getCapabilities().supports_batchingset totrue. -
getCapabilities().plugin_versionbumped to"2.1.0". -
plugins/llama_cpp/plugin.json.in:supports_streamingandsupports_batchingupdated totrue. -
InferenceResponse::tokens_generatednow set from stub text length. -
InferenceResponse::trace_id/span_idechoed from request.
-
getPluginVersion()returns"2.1.0". -
src/llama_cpp/CMakeLists.txt: version bumped to 2.1.0; registrar source added.
-
LlamaCppPlugin : ILLMPluginβ full interface implementation for dynamic loading -
loadModel/unloadModelwith stub mode (no model file required for tests) -
getModelInfo()returningstd::optional<ModelInfo>(nullopt when not loaded) -
generate(InferenceRequest)β stub returns echo response; error when not loaded -
generateRAG(InferenceRequest, context_docs)β prepends context docs and delegates togenerate() -
embed(text)β returns 384-dim zero vector when loaded, empty when not loaded -
loadLoRA/unloadLoRA/listLoRAsβ full LoRA registry with duplicate-id replacement and thread-safe access viastd::mutex -
getCapabilities()βsupports_lora=true,supports_embeddings=true,plugin_version="2.0.0" -
getMemoryStats()/getPerformanceStats()β JSON stats withinference_count,error_count,model_loaded,lora_count -
exportLoRA/importLoRAβ stub implementations (return empty / false) -
THEMIS_LLM_PLUGIN()export macro ininclude/llm/llm_plugin_interface.h -
themis_llm_create/themis_llm_destroyC-linkage entry points - 30 unit tests (
LlamaCppPluginFocusedTests, groups AβJ) -
plugins/llama_cpp/plugin.json.inβ plugin manifest -
src/llama_cpp/CMakeLists.txtβ build target -
tests/CMakeLists.txtβLlamaCppPluginFocusedTestsregistered -
plugins/CMakeLists.txtβTHEMIS_PLUGIN_LLAMA_CPPoption added
ThemisDB 1.9.0-beta Β· Home Β· Module-Index Β· GitHub Β· Issues
ThemisDB 1.9.0-beta Β· Home Β· Wiki-Index Β· Module-Index Β· FAQ Β· Quick-Reference Β· GitHub Β· Issues Β· Discussions Β· License
- Batch Operations
- Best Practices
- CRUD Tutorial
- Custom Document Ingestion
- Getting Started Tutorial
- Interactive Examples
- Schema Design
- Video Tutorials
- AQL Reference
- AQL Examples
- AQL Overview
- AQL Feature Roadmap
- AQL Geospatial Guide
- AQL LLM Migration Guide
- AQL API
- AQL Grammar (EBNF)
- AQL Root Overview
- AQL Examples (root)
- API Reference
- API Module README
- OpenAPI Overview
- Client SDK Overview
- SDK Overview
- Operations
- Operations Overview
- Operations Runbook
- Operations Handbook
- ThemisCtl Admin Guide
- Pipeline E2E SOPs
- Deploy Overview
- Docker Overview
- Docker Hub README
- Helm Overview
- Packaging Overview
- Operator Overview
- Security Policy
- Production Hardening Checklist
- Security Hardening Guide
- Encryption Key Management
- Access Control Framework
- Zero Trust Policy
- API Authentication & Authorization
- HSM Production Setup
- PKCS11 Integration
- DSGVO / SOC2 Checklist
- Access Model Runbooks
- Access Model Dashboard
- Maturity Automation Runbook
- Access Review Automation
- Access Model Dashboard
- Access Model Runbooks
- Rights Revocation
- Dr Checklists
- Dr Testing
- Incident Response Playbook
- Incident Response Testing
- GPU Oom Recovery
- Grammar Debugging
- Metrics Scrape Troubleshooting
- Model Swap Procedure
- Quota Tuning
- Subagent Deployment
- Logging Configuration
- Content Model
- Crypto & Keys
- Feature Flags Reference
- Modular Architecture Roadmap
- Modularization Guide
- Module Architecture Index
- PostgreSQL Wire Protocol
- Query Scheduling
- Raft Consensus Design
- Resource Pooling
- Source Directory Guide
- Unified Access Model
- E1 001 Layered Retrieval Design
- E1 002 Ann Abstraction Strategy
- E1 003 Tensor Summary Types
- E1 004 Lora Package Distinction
- E1 005 Model Switch Compatibility
- E1 006 Federated Tensor Summaries
- E2 001 Evaluation Framework Design
- E2 002 Hardware Profile Strategy
- E2 003 Query Planner Routing Model
- E2 004 Approximation Governance Rules
- E2 005 Cross Layer Fallback Confidence Policy
- E3 001 Distributed Tensor Design
- E3 002 Manifest Coordination Strategy
- E3 003 Recovery And Erasure Choice
- E3 004 Tensor Fabric Infrastructure
- Contributing
- Contributing (root)
- Code of Conduct
- Support
- Maintainers
- CTest Guide
- Build Quick Reference
- Developer Wiki Index
- Build / Test / CI
- Module Index
- Branching Strategy
- Disabled Stub Policy
- Docs PR Policy
- GA Promotion Sign Off
- Github Milestones Setup
- Maturity Claim Verification Checklist
- Maturity Evidence Registry
- Merge Gate Bot Config
- Merge Gate Status Live
- Phase 1 Closure Report
- Phase Closure Policy
- Phase Dependency Graph
- Phase3 Enforcement Runbook
- Plugin Submodule Rollback
- PR Version Targeting
- PR Version Targeting Backfill
- Production Ready 2026 Delivery Plan
- Query Module Status
- Readme
- Release Promotion Gate Policy
- Release Validation Checklist
- Security Module 5671 Evidence Summary
- Sharding P6 Residual Risk Acceptance
- Sourcecode Compliance Governance
- Updates Development Status Sign Off
- Wave C Implementation Complete
- Blob Storage
- Cuda
- Ethics Ai
- Exporters
- Huggingface
- Image Analysis
- Importers
- RPC
- Scraper
- Themisdb Ai Watermark Detector
- User Storage Encrypted
- Chimera Architecture
- Chimera Future
- Chimera Readme
- Chimera Roadmap
- Covina Fastapi Ingestion Architecture
- Covina Fastapi Ingestion Future
- Covina Fastapi Ingestion Roadmap
- Vcc Base Architecture
- Vcc Base Future
- Vcc Base Roadmap
- Vcc Clara Ingestion Architecture
- Vcc Clara Ingestion Future
- Vcc Clara Ingestion Roadmap
- Vcc Veritas Architecture
- Vcc Veritas Future
- Vcc Veritas Roadmap
- 01 Hello World
- 02 Todo App
- 03 Contact Manager
- 04 Inventory System
- 05 Time Series Monitor
- 06 Graph Social Network
- 07 Vector Search Documents
- 08 Dms Erp System
- 09 Iot Sensor Network
- 10 Drone Image Analysis
- 11 Blog Wiki
- 12 Expense Tracker
- 13 Recipe Manager
- 14 Ecommerce Catalog
- 15 Event Management
- 16 Kanban Board
- 17 Crm
- 18 Realtime Chat
- 19 Recommendation Engine
- 20 Smart Home
- 21 Coding Platform
- 22 AQL Diagram Tool
- 23 Traveling Salesman
- 24 Moral Philosophy Debates
- API Versioning
- Distributed Sharding
- Feedback Plugins
- Geo
- Gnn
- Image Analysis
- Legal Lora Training
- LLM
- Lora Sync
- Migration
- Nlp
- Performance
- Railway
- Replication
- Rope Visualization
- Sample Product Config
- Security
- Client SDK Overview
- Quickstart
- Sdk Enhancements
- Sdk Implementation Summary
- Test Suite Readme
- Go
- Java
- Javascript
- Php
- Python
- Ruby
- Rust
- Typescript
- 01 Grundlegende Operationen
- 02 AQL Queries
- 03 Graph Daten
- 04 Multimodell Anwendung
- 01 Quickstart Guide
- 02 AQL Referenz Kurzuebersicht
- 03 Datenmodellierung Guide
- 04 Uebungsaufgaben
- 05 Best Practices Guide
- Training Documents
- Training Overview
- 01 Einfuehrung Und Uebersicht
- 02 Datenmodelle Und Architektur
- 03 AQL Abfragesprache
- 04 Installation Und Setup
- 05 Anwendungsbeispiele
- Training Presentations
- Dependencies Readme
- Processmonitor Readme
- Themis.admintools.shared Readme
- Themis.aqlquerybuilder Readme
- Themis.aqlquerybuilder Roadmap
- Themis.auditlogviewer Readme
- Themis.auditlogviewer Roadmap
- Themis.classificationdashboard Readme
- Themis.classificationdashboard Roadmap
- Themis.compliancereports Readme
- Themis.compliancereports Roadmap
- Themis.gisviewer.controlpanel Readme
- Themis.gisviewer.controlpanel Roadmap
- Themis.impactanalysisviewer Readme
- Themis.impactanalysisviewer Roadmap
- Themis.ingestiontool Readme
- Themis.ingestiontool Roadmap
- Themis.keyrotationdashboard Readme
- Themis.keyrotationdashboard Roadmap
- Themis.piimanager Readme
- Themis.piimanager Roadmap
- Themis.retentionmanager Readme
- Themis.retentionmanager Roadmap
- Themis.sagaverifier Readme
- Themis.sagaverifier Roadmap
- Themis.usbadmintool Readme
- Themis.usbadmintool Roadmap
- CI Readme
- CI Roadmap
- Compiler Diagnostics Readme
- Compiler Diagnostics Roadmap
- Completion Readme
- Copilot Ollama Router Readme
- Copilot Ollama Router Roadmap
- Gnn Readme
- Gnn Roadmap
- Rope Visualizer Readme
- Rope Visualizer Roadmap
- Tco Calculator Readme
- Tco Calculator Roadmap
- Tests Readme
- Tests Roadmap
- Themis Config Wx Readme
- Themis Docs Builder Readme
- Wikipedia Ingestion Readme