mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-08-17 13:07:42 +00:00
7 lines
155 B
Python
7 lines
155 B
Python
from importlib import metadata
|
|
|
|
try:
|
|
__version__ = str(metadata.version("haystack-ai"))
|
|
except metadata.PackageNotFoundError:
|
|
__version__ = "main"
|