Hi @Rene
The new update contains a breaking change for our applications (you should have received a warning for this when clicking the upgrade button).
New agent will not be responsible for starting the application anymore. It will just call
python app.py . This means, our applications need to contain:
if __name__ == "__main__":
app = App()
app.run()
where App() needs to be adjusted based on the name of his class which inherits from the robothub base class.
Without this, the app will not get started.
as per our examples here:
luxonis/robothub-examplesblob/main/Luxonis%20Apps/Depth%20%26%20Detection%20Live%20View/app.py
here is the app etrypoint defined:
luxonis/robothub-examplesblob/7ca7cd442fd45ccb6099b11319d1fd44265ade80/Luxonis%20Apps/Depth%20%26%20Detection%20Live%20View/robotapp.toml#L8
Thanks,
Jaka