Skip to content

Commit

Permalink
include __version__ in all
Browse files Browse the repository at this point in the history
  • Loading branch information
Eitan Turok committed Jul 31, 2024
1 parent ac1dd82 commit 0b84d4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llmfoundry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@

logger.addFilter(new_files_warning_filter)

from llmfoundry._version import __version__
from llmfoundry import (
algorithms,
callbacks,
Expand All @@ -51,6 +50,7 @@
tokenizers,
utils,
)
from llmfoundry._version import __version__
from llmfoundry.data import StreamingFinetuningDataset, StreamingTextDataset
from llmfoundry.eval import InContextLearningDataset, InContextLearningMetric
from llmfoundry.models.hf import ComposerHFCausalLM
Expand All @@ -64,6 +64,7 @@
from llmfoundry.optim import DecoupledLionW

__all__ = [
'__version__',
'StreamingFinetuningDataset',
'StreamingTextDataset',
'InContextLearningDataset',
Expand Down

0 comments on commit 0b84d4c

Please sign in to comment.