1.1.5 • Published 6 months ago

edenai-node v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

EdenAI-Node

A Node.js module for seamless interaction with Eden AI's API, enabling easy GET requests for various functionalities.

How to install

To install this module, use the npm package manager. Run the following command in the terminal:

npm install edenai-node

How to use

Check out our public installable module for typescript / javascript: https://www.npmjs.com/package/edenai-node

API key is required to get the response from AI.

import { EdenAINode } from "edenai-node";

const edenAI = new EdenAINode("api_key");

const getApiResponse = () => {
  edenAI
    .getChatResponse("Can you help me?", "openai")
    .then((response) => console.log(response))
    .catch(console.error);
};

getApiResponse();

Other informations

The module requires the following:

ParametersDescription
apikeyYou can get it from: https://www.edenai.co/
providersThe following providers are available: openai, google

Roadmap

TaskStatus
Chat AI✔️ Done
Voice AI❌ Pending
Speech To Text❌ Pending
Text To Speech❌ Pending
Image AI❌ Pending

Contribution

If you want to contribute to this project, please consult the contribution guide.

1.1.5

6 months ago

1.1.4

6 months ago

1.1.3

6 months ago

1.1.2

6 months ago

1.1.1

6 months ago

1.1.0

6 months ago

1.0.9

6 months ago

1.0.8

6 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago