Hi Erik,thanks for your reply
I confirm that I usedSDK for Roboflow, but it generated the following error

This is the code I’m running
from depthai_sdk import OakCamera
with OakCamera() as oak:
color = oak.create_camera('color')
model_config = {
'source': 'roboflow', # Specify that we are downloading the model from Roboflow
'model':'trabajo-de-grado-final/2',
'key':'aDBlDcA4YIxszVDvS6WH' # Fake API key, replace with your own!
}
nn = oak.create_nn(model_config, color)
oak.visualize(nn, fps=True)
oak.start(blocking=True)
