Lagent / lagent /utils /package.py
minimum-generated-pig's picture
Add files
5e2128f
raw
history blame
179 Bytes
from importlib.util import find_spec
def is_module_exist(module_name):
spec = find_spec(module_name)
if spec is None:
return False
else:
return True