lit_ollama.store
[docs]
package
lit_ollama.store
1
2
3
4
5
6
7
8
9
10
11
12
13 | """Local on-disk storage primitives.
This package groups together the local filesystem stores used by the API:
- `BlobStore`: content-addressed blob storage for the `/api/blobs` endpoints.
- `ModelStore`: checkpoint discovery + simple filesystem operations.
- `LocalStore`: a small façade that composes both.
"""
from lit_ollama.store.blobs import BlobStore
from lit_ollama.store.local import LocalStore
from lit_ollama.store.models import ModelStore
__all__ = ["BlobStore", "LocalStore", "ModelStore"]
|