diff options
author | M. Yusuf Sarıgöz <yusufsarigoz@gmail.com> | 2023-08-25 12:43:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 12:43:41 +0300 |
commit | 8194cd8772c58b8a43aa07a2fc468f5366d7e320 (patch) | |
tree | c62a966e124425428d1c076429f09835fca26af1 | |
parent | 6bbc598a632560cb45dd2c51ad403bda8723b629 (diff) |
gguf : export objects to user code (#2780)
* gguf export more objects to user code
* gguf export all objects to user code for now
* gguf : bump version
-rw-r--r-- | gguf-py/gguf/__init__.py | 2 | ||||
-rw-r--r-- | gguf-py/pyproject.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gguf-py/gguf/__init__.py b/gguf-py/gguf/__init__.py index 718ea71e..f9b70a85 100644 --- a/gguf-py/gguf/__init__.py +++ b/gguf-py/gguf/__init__.py @@ -1 +1 @@ -from .gguf import GGUFWriter +from .gguf import * diff --git a/gguf-py/pyproject.toml b/gguf-py/pyproject.toml index a6bce946..cc70e28b 100644 --- a/gguf-py/pyproject.toml +++ b/gguf-py/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gguf" -version = "0.2.0" +version = "0.2.1" description = "Write ML models in GGUF for GGML" authors = ["GGML <ggml@ggml.ai>"] packages = [ |