Huhu-Agent-Demo / app.py
zxin-huhu's picture
initial commit
dfabe94
raw
history blame contribute delete
152 Bytes
import os
import types
app_code = os.environ.get("APP_CODE", "")
module = types.ModuleType("dynamic_app")
exec(app_code, module.__dict__)
module.main()