Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@nlux/react
Advanced tools
nlux React is a library for building conversational AI interfaces, with support for OpenAI, HuggingFace, and more.
NLUX
(for Natural Language User Experience) is an open-source React and Javascript library that makes it super
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.
<AiChat />
for UI and useChatAdapter
hook for easy integration.ChatGPT
/ LangChain
🦜 LangServe / HuggingFace
🤗 Inference.Developer portal ― nlux.dev
Examples and live code playgrounds ― nlux.dev/examples
NLUX React
🚀The example below demonstrates how to create an AI chat interface using NLUX React
and LangChain
, the open source
framework for building LLM backends. But you can use NLUX
with any LLM ― either
via the standard adapters provided, or
by creating your own adapter.
To get started with NLUX React
and LangChain, install the @nlux/react
and @nlux/langchain-react
packages:
npm install @nlux/react @nlux/langchain-react
Then include <AiChat />
in your React app to get started.
Use the useChatAdapter
hook to configure an adapter for your LLM.
import {AiChat} from '@nlux/react';
import {useChatAdapter} from '@nlux/langchain-react';
const App = () => {
const gptAdapter = useChatAdapter({
url: 'https://<Your LangServe Runnable URL>'
});
return (
<AiChat
adapter={gptAdapter}
promptBoxOptions={{
placeholder: 'How can I help you today?'
}}
conversationOptions={{
historyPayloadSize: 'max'
}}
/>
);
}
You should also include the NLUX theme CSS file in your HTML page or import it in your React app.
An AI chatbot, powered by LangChain, that can understand and respond to user messages:
You should include a theme CSS file into your HTML page.
The recommended way for React developers is to install @nlux/themes
npm install @nlux/themes
Then import the theme CSS file into your app or component as follows:
import '@nlux/themes/luna.css';
This requires that your bundler is configured to load CSS files.
FAQs
nlux React is a library for building conversational AI interfaces, with support for OpenAI, HuggingFace, and more.
The npm package @nlux/react receives a total of 2,179 weekly downloads. As such, @nlux/react popularity was classified as popular.
We found that @nlux/react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.