__version__

This commit is contained in:
Daniel Han 2025-03-04 02:57:54 -08:00
commit 20482bf9d6
2 changed files with 2 additions and 1 deletions

View file

@ -212,6 +212,7 @@ except:
pass
from .models import *
from .models import __version__
from .save import *
from .chat_templates import *
from .tokenizer_utils import *

View file

@ -19,5 +19,5 @@ from .llama import FastLlamaModel
from .mistral import FastMistralModel
from .qwen2 import FastQwen2Model
from .dpo import PatchDPOTrainer, PatchKTOTrainer
from ._utils import is_bfloat16_supported
from ._utils import is_bfloat16_supported, __version__
from .rl import PatchFastRL, vLLMSamplingParams