ai-station/.venv/lib/python3.12/site-packages/chainlit/teams/__init__.py

7 lines
236 B
Python
Raw Normal View History

import importlib.util
if importlib.util.find_spec("botbuilder") is None:
raise ValueError(
"The botbuilder-core package is required to integrate Chainlit with a Slack app. Run `pip install botbuilder-core --upgrade`"
)