__version__

This commit is contained in:
Daniel Han-Chen 2024-02-07 03:19:33 +11:00
commit 9e2b00e167
3 changed files with 3 additions and 1 deletions

View file

@ -23,7 +23,7 @@ classifiers = [
]
[tool.setuptools.dynamic]
version = {attr = "unsloth.models._utils.__version__"}
version = {attr = "unsloth.__version__"}
[tool.setuptools]
include-package-data = false

View file

@ -81,4 +81,5 @@ except:
pass
from .models import *
from .models import __version__
from .save import *

View file

@ -16,3 +16,4 @@ from .loader import FastLanguageModel
from .llama import FastLlamaModel
from .mistral import FastMistralModel
from .dpo import PatchDPOTrainer
from ._utils import __version__