1.0.1 • Published 1 year ago

nurmoai v1.0.1

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

NPM version

NurmoAI

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

Installation

npm install nurmoai
# or
yarn add nurmoai

Usage

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

const NurmoAI = require("nurmoai");


const nurmo = new NurmoAI({
  apiKey: process.env['NurmoAI_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: "nurmo-3",
    character: "Batman"
  });

  console.log(aiResponse);
}
 Main()

Features

  • Easy initialization and configuration with pre-made and your Characters
  • Much Cheaper than Official API
  • Fast 1ms responses for most requests
  • Simplified method to create chat completions with the NurmoAI API

Documentation

For more information about the NurmoAI API and its capabilities, please visit the NurmoAI Official Docs.

Price

Get access to high messages per minute for as cheap as 5$ per month at Official Website

1.0.1

1 year ago

1.0.0

1 year ago