Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nlux/core

Package Overview
Dependencies
Maintainers
1
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlux/core

NLUX is Javascript and React library for building conversational AI interfaces, with support for OpenAI, Hugging Face, and more.

  • 0.10.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6.3K
increased by16.68%
Maintainers
1
Weekly downloads
 
Created
Source

NLUX JS ✨💬

Conversational AI UI Library For ChatGPT And Other LLMs

NLUX (for Natural Language User Experience) is an open-source Javascript library that makes it simple to integrate powerful large language models (LLMs) like ChatGPT into your web app or website. With just a few lines of code, you can add conversational AI capabilities and interact with your favourite LLM.

Key Features 🌟

  • Build AI Chat Interfaces In Minutes - High quality conversational AI interfaces with just a few lines of code.
  • Flexible LLM Adapters - ChatGPT HuggingFace and an API to Create Your Own Adapter for any LLM.
  • Bot and User Personas - Customize the bot and user personas with names, images, and descriptions.
  • Streaming LLM Output - Streamed the chat response to the UI as it's being generated.
  • Syntax Highlighting - Color code snippets in the response. Copy And Paste code into your editor.
  • Personalized Conversation - Provide context using system messages, and instruct the LLM how to behave.
  • Customizable Theme - Easily customize the look and feel of the chat interface using CSS variables.
  • Event Listeners - Listen to messages, errors, and other events to customize the UI and behaviour.
  • Zero Dependencies - Lightweight codebase, with zero-dependencies except for LLM front-end libraries.

Docs Website 📖

Please visit docs.nlux.ai for the full documentation and examples.

Vanilla JS 🟨 vs React JS ⚛️

This package @nlux/core is the Vanilla JS version of NLUX. If you're looking for the React JS version, please check the @nlux/react package.

Get Started With NLUX and ChatGPT 🚀

To get started with NLUX JS and ChatGPT, install the @nlux/core and @nlux/openai packages:

npm install @nlux/core @nlux/openai

Configure the OpenAI adapter with your API key:
(You can get an API key from your OpenAI dashboard)

import {createAiChat} from '@nlux/core';
import {createAdapter} from '@nlux/openai';

const chatGptAdapter = createAdapter()
    .withApiKey('YOUR_OPEN_AI_API_KEY')
    // 👇 Instruct ChatGPT how to behave (optional)
    .withSystemMessage(
        'Give sound, tailored financial advice. Explain concepts simply. When unsure, ask questions. ' +
        'Only recommend legal, ethical practices. Be friendly. Write concise answers under 5 sentences.'
    );

Then render the AiChat component into your web page:

const aiChat = createAiChat()
    .withAdapter(chatGptAdapter)
    .withConversationOptions({
        scrollWhenGenerating: true,
    })
    .withPromptBoxOptions({placeholder: 'How can I help you today?'})

aiChat.mount(document.getElementById('root'));

You should also include the NLUX theme CSS file in your HTML page.

And The Result Is ✨

An AI chatbot, experienced in personal finance, that can give your users sound, tailored financial advice:

NLUX AiChat Component

Theme File and CSS 🎨

You should include a theme CSS file into your HTML page.
You can download and host the Nova Theme CSS file from @nlux/themes or use the CDN hosted version from below:

<link rel="stylesheet" href="https://themes.nlux.ai/v0.10.1/nova.css"/>

This CDN is provided for demo purposes only and it's not scalable. Please download and host the theme files on your own for production use.

Keywords

FAQs

Package last updated on 28 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc