Step 1
Visit Basic Info and you can find Strategy Flow showing you the Source and Destination

Step 2
Click on Add Source+ and select ML Model

Step 3
Choose a unique name and upload the model. Make sure that the model is trained with sciket-learn==1.0.2
, lightgbm==3.3.2
, and xgboost==1.6.1
. Dump the model with joblib==1.1.0
and upload the pkl to the strategy
import joblib
joblib.dump(model, 'model.pkl')

Step 4
Access and use the model in the strategy
model = CA.get_source("my first model")
model.predict(...)