1.0.4 • Published 1 year ago

nurmonic v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

NPM version

Nurmonic

Nurmonic is a Node.js client library for interacting with the Nurmonic chat API, making it easier to integrate AI-powered chat functionalities into your applications. This library simplifies the process of sending messages and receiving chat completions from the Nurmonic API.

Installation

npm install nurmonic
# or
yarn add nurmonic

Usage

To use Nurmonic, you need to have an API key from Nurmonic on Official Website. Once you have it, you can start making API requests to chat with Nurmonic's AI.

const Nurmonic = require("nurmonic");


const nurmo = new Nurmonic({
  apiKey: process.env['NURMONIC_KEY'], // This is the default and can be omitted
});

async function Main() {
  const aiResponse = await nurmo.createCompletion({
    messages: [{ role: "user", content: "Say this is a test" }],
    model: "gpt-3.5-turbo",
  });

  console.log(aiResponse);
}
 Main()

Features

  • Easy initialization and configuration with environment variables or direct options
  • Much Cheaper than Official API
  • Fast 1ms responses for most requests
  • Simplified method to create chat completions with the Nurmonic API

Documentation

For more information about the Nurmonic API and its capabilities, please visit the Nurmonic API Page in Official Website.

Price

Get access to high messages per minute for as cheap as 5$ per month at Premium Page

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago