Shreyas1441AI's picture
Create app.py
bd74d38 verified
raw
history blame contribute delete
214 Bytes
import os
# Retrieve the saved code from environment variables
app_code = os.getenv("PI_SEQ_PRED")
if not app_code:
raise ValueError("PI_SEQ_PRED is Missing!!!")
# Execute the code dynamically
exec(app_code)