You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This will be used by every Clarifai endpoint call.constmetadata=newgrpc.Metadata()metadata.set('authorization','Key XXXXX')stub.PostInputs({inputs: [{data: {image: {url: "https://samples.clarifai.com/puppy.jpeg",allow_duplicate_url: true},metadata: {id: "id001",type: "animal",size: 100}}}]},metadata,(err,response)=>{if(err){thrownewError(err);}if(response.status.code!==10000){thrownewError("Post inputs failed, status: "+response.status.description);}});
Metadata is not attached to the input when you check via the Portal or any other method. This seems to happen only with this gRPC client.
The text was updated successfully, but these errors were encountered:
Using a similar call:
Metadata is not attached to the input when you check via the Portal or any other method. This seems to happen only with this gRPC client.
The text was updated successfully, but these errors were encountered: