0.0.31 • Published 10 days ago

fxnjs v0.0.31

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 days ago

Function for JavaScript

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:

!CAUTION Never embed access keys client-side (i.e. in the browser). Instead, create a proxy URL in your backend.

Installing Function

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

npm install fxnjs

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 "fxnjs"

// 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: "@samplefxn/greeting",
    inputs: {
        name: "Rhea"
    }
});
// Log the result
console.log(prediction.results[0]);

Useful Links

Function is a product of NatML Inc.

0.0.31

10 days ago

0.0.30

1 month ago

0.0.29

1 month ago

0.0.28

2 months ago

0.0.27

2 months ago

0.0.26

2 months ago

0.0.25

2 months ago

0.0.24

3 months ago

0.0.23

6 months ago

0.0.22

8 months ago

0.0.20

9 months ago

0.0.21

9 months ago

0.0.19

9 months ago

0.0.14

11 months ago

0.0.15

11 months ago

0.0.16

10 months ago

0.0.17

10 months ago

0.0.18

10 months ago

0.0.13

11 months ago

0.0.12

11 months ago

0.0.11

11 months ago

0.0.10

11 months ago

0.0.9

11 months ago

0.0.8

11 months ago

0.0.7

11 months ago

0.0.6

11 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

12 months ago

0.0.2

12 months ago

0.0.1

12 months ago