Skip to content

muna-ai/muna-js

Repository files navigation

Muna for JavaScript

Muna logo

Dynamic JSON Badge

Run AI functions anywhere.

Caution

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

Installing Muna

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

# Run this in Terminal
$ npm install muna

Retrieving your Access Key

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

generate access key

Making a Prediction

First, create a Muna client, specifying your access key:

import { Muna } from "muna"

// 💥 Create a Muna client
const muna = new Muna({ accessKey: "<ACCESS KEY>" });

Next, make a prediction:

// 🔥 Make a prediction
const prediction = await muna.predictions.create({
    tag: "@fxn/greeting",
    inputs: { name: "Rhea" }
});

Finally, use the results:

// 🚀 Use the results
console.log(prediction.results[0]);

Useful Links

Muna is a product of NatML Inc.

About

Run AI models anywhere. https://muna.ai/explore

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •