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

@nlux/nlux

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlux/nlux

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

  • 0.4.3
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

NLUX JS

Build ChatGPT-powered Conversational AI UI ✨💬

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 Custom ChatGPT Interfaces In Minutes - Easily build chatbot and conversational interfaces with just a few lines of code.
  • Flexible LLM Adapters - Provided adapter for ChatGPT. More coming soon.
  • Zero Dependencies - Lightweight codebase, with zero-dependencies except for LLM front-end libraries.
  • ChatGPT System Messages - Instruct ChatGPT to "act as" a specific persona, give it more context, and get more personalized responses to all your prompts.
  • Streaming Responses - The response will be streamed to the UI for a more natural conversation flow.

Vanilla JS 🟨 vs React JS ⚛️

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

Get Started With NLUX and ChatGPT 🚀

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

npm install @nlux/nlux @nlux/openai

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

import {createNluxConvo} from '@nlux/nlux';
import {createAdapter} from '@nlux/openai';

const chatGptAdapter = createAdapter('openai/gpt')
    .withApiKey('YOUR_OPEN_AI_API_KEY')
    // 👇 Instruct ChatGPT how to behave (optional)
    .withInitialSystemMessage(
        'Act as a Nobel Prize in Physics winner who is ' +
        'helping a PHD student in their research. Write short answers. Be funny!'
    );

Then render the NLUX UI component Nlux Convo into your web page:

const nluxConvo = createNluxConvo()
    .withAdapter(chatGptAdapter)
    .withConversationOptions({
        scrollWhenGenerating: true,
    })
    .withPromptBoxOptions({placeholder: 'Ask me anything about nuclear physics!'});

nluxConvo.mount(document.getElementById('chatroom-div'));

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

And The Result Is ✨

A fully functional chatbot UI that can advise you on nuclear physics, coding, and even tell you a joke or two!

Nlux Convo

Theme File and CSS 🎨

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

<link rel="stylesheet" href="https://themes.nlux.ai/v0.4.3/kensington.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 20 Nov 2023

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