Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Pluto0616
/
L2_Agent
like
0
Model card
Files
Files and versions
xet
Community
main
L2_Agent
/
lagent
/
utils
/
package.py
Pluto0616
L2_agent
499a238
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
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