Open
Description
Add a mechanism that allows calling RedisAI commands (especially MODELRUN) from within torchscript. These commands shouldn't run in a background thread as they usually do, but from the calling thread (which is a background thread by itself).
Motivation: Being able to run a torchdrift model from a torchscript and saving its output to redis as one operation, instead of splitting it into 3 steps (running a script for prepossessing, running the drift model, and then running a script again for saving the result in redis)