i got this error and therefore there is no data coming from clarifai
errors encountered while discovering extensions: Error Domain=PlugInKit Code=13 "query cancelled" UserInfo={NSLocalizedDescription=query cancelled}
when i am trying to app?.getModelByName("face-v1.3", completion: { (model, error) in
let app = ClarifaiApp(apiKey: "384e93daf0af43a6a8cb44685c6ae8be")
app?.getModelByName("face-v1.3", completion: { (model, error) in
let caiImage = ClarifaiImage(url: "https://samples.clarifai.com/face-det.jpg")
model?.predict(on: [caiImage!], completion: { (outputs, error) in
print("%@", error ?? "no error")
print(outputs)
guard let caiOuputs = outputs
else {
print("Predict failed")
return
}
})
})