diff --git a/src/langbot/__init__.py b/src/langbot/__init__.py index f6a113544..272d8db55 100644 --- a/src/langbot/__init__.py +++ b/src/langbot/__init__.py @@ -1,3 +1,5 @@ """LangBot - Production-grade platform for building agentic IM bots""" -__version__ = '4.10.2' +from importlib.metadata import version + +__version__ = version('langbot')