chainlit--chainlit
7 行
236 B
Python
7 行
236 B
Python
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`"
|
|
)
|