To have the client run a custom behavior script, add a Python file to scripts/custom/filename.py, add any pip requirements to scripts/custom/requirements.txt, and configure the behavior to be "custom/filename.py".
Example:
# scripts/custom/euler.py
import numpy as np
print(np.real(np.exp(1j * np.pi)))
To have the client run a custom behavior script, add a Python file to
scripts/custom/filename.py
, add any pip requirements toscripts/custom/requirements.txt
, and configure the behavior to be"custom/filename.py"
.Example: