clarifai-javascript icon indicating copy to clipboard operation
clarifai-javascript copied to clipboard

Official Clarifai JavaScript client for browsers and node.js

Results 5 clarifai-javascript issues
Sort by recently updated
recently updated
newest added

Hi, I installed clarify with `npm install clarifai`. However I get the following error in my project. - `TypeError: clarifai__WEBPACK_IMPORTED_MODULE_8___default.a.app is not a constructor` ![image](https://user-images.githubusercontent.com/21084320/100356621-23928100-2ffc-11eb-98e6-ad3317b1f857.png) - I have these packages...

Used React js for sending request. ``` app.models .predict( Clarifai.DEMOGRAPHICS_MODEL, this.state.input) .then(response => console.log(response)) .catch(err => console.log(err)) ``` The above code work correctly with FACE_DETECT_MODEL.

I kept experiencing this error: **Error: Request failed with status code 400** ``` const Clarifai = require('clarifai') const clarifai = new Clarifai.App({ apiKey: "[]" }); function log(d) { try {...

I'm using Clarifai in my React Native project. Essentially, I'm using react-native-camera to take a picture and then passing it to the Clarifai model to predict/identify objects in the picture....

Import Clarifai doesn't work as the npm package is depreciated