Socket
Socket
Sign inDemoInstall

fxnjs

Package Overview
Dependencies
72
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fxnjs

Run AI prediction functions in your JavaScript and Node.js apps.


Version published
Weekly downloads
2
decreased by-86.67%
Maintainers
1
Install size
184 MB
Created
Weekly downloads
 

Readme

Source

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]);

Function is a product of NatML Inc.

Keywords

FAQs

Last updated on 09 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc