Coverage for src / lilbee / providers / llama_cpp / __init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-05-15 20:55 +0000

1"""Llama.cpp provider package. 

2 

3The public surface is :class:`LlamaCppProvider`. Internal helpers 

4(``load_llama``, ``resolve_model_path``, ``read_gguf_metadata``, the 

5log dispatcher, batching primitives) live in their host submodules and 

6must be imported from there directly. 

7""" 

8 

9from __future__ import annotations 

10 

11from lilbee.providers.llama_cpp.provider import LlamaCppProvider 

12 

13__all__ = ["LlamaCppProvider"]