0.0.1 • Published 1 year ago

react-native-fxn v0.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Function for React Native

function logo

Dynamic JSON Badge

Run AI prediction functions (a.k.a "predictors") in the browser and Node.js. With Function, you can build AI-powered apps by creating and composing GPU-accelerated predictors that run in the cloud. In a few steps:

Installing Function

Function is distributed on NPM. Open a terminal and run the following command:

# Install Function for React Native
$ npm install fxn-react-native

Retrieving your Access Key

Head over to fxn.ai to create an account by logging in. Once you do, generate an access key:

generate access key

Making a Prediction

First, create a Function client and specify your access key:

import { Function } from "react-native-fxn"

// Create a Function client
const fxn = new Function({ accessKey: "<ACCESS KEY>" });

Then make a prediction:

// Make a prediction
const prediction = await fxn.predictions.create({
    tag: "@samples/greeting",
    inputs: {
        name: "Muna"
    }
});
// Log the result
console.log(prediction.results[0]);

!TIP Explore public predictors on Function or create your own.


Supported Platforms

  • Android API Level 24+
  • iOS 14+

Useful Links

Function is a product of NatML Inc.