JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 39
  • Score
    100M100P100Q60452F
  • License MIT

NovaQore Private LLM client.

Package Exports

  • @novaqore/ai
  • @novaqore/ai/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@novaqore/ai) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

NovaQore AI

NovaQore AI

@novaqore/ai
Private LLM client.

npm version license node version Discord

πŸ”‘ Get Your API Keys  |  🌐 Website  |  πŸ—ΊοΈ Roadmap  |  πŸ“„ White Papers


Install

npm install @novaqore/ai
// CommonJS
const NovaQoreAI = require("@novaqore/ai");

// ES Module
import NovaQoreAI from "@novaqore/ai";

Quick Start

Get your API keys from the developer dashboard.

Streaming

const { chat } = new NovaQoreAI();

const messages = [
    {role: "system", content: "Your name is Atom"}
]

const { stream } = await chat(messages);

for await (const chunk of stream) {
      const delta = chunk.choices[0]?.delta;
      console.log(delta)
}

Call stop() at any time to abort the stream (e.g. wire it to a stop button in your UI).

Options

Option Type Default Description
tools array - Tool definitions

Roadmap

We are actively building the next generation of private AI infrastructure. Multi-model support, streaming improvements, and more.

View the Roadmap

Community

We are building this in the open. Join us.

Discord  |  X (Twitter)  |  TikTok  |  YouTube

Disclaimer

NovaQore AI is provided as-is. We do not store your conversations, log your prompts or responses, or use your data to train models. We do not keep copies of your requests.

We built NovaQore AI to give people and businesses a genuinely private way to use AI. That said, NovaQore AI is not a tool for illegal activity. We do not tolerate unlawful use of our service. While we cannot see your data, we will cooperate with law enforcement when presented with a valid legal order as required by law.

By using NovaQore AI, you agree to use it responsibly and in compliance with all applicable laws.

License

MIT


πŸ’¬ Start Chat β€” Private AI

Powered by NovaQore Tech