Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SutaLXY
/
internlm_lagent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c2461d2
internlm_lagent
/
lagent
/
utils
/
package.py
SutaLXY
Upload 188 files
861dfcc
verified
4 months ago
raw
Copy download link
history
blame
Safe
188 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