remix-nlux
Version:
Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.
79 lines (55 loc) • 1.81 kB
text/mdx
Getting started with _NLUX_ is easy.<br />
**Choose your preferred way to get started:**
<div style={{
display: 'grid',
gridTemplateColumns: '1fr 1fr',
gap: '1rem',
padding: '0 1rem',
}}>
<div style={{
padding: '1rem',
border: '1px solid #e0e0e0',
borderRadius: '5px',
}}>
For the users of LangChain, the popular LLM framework.
We use LangServe to connect to LangChain runnables.
</div>
<div style={{
padding: '1rem',
border: '1px solid #e0e0e0',
borderRadius: '5px',
}}>
Quick and easy setup. Not suitable for production environments though, as it exposes the API key.
Use this guide for prototyping and testing.
</div>
<div style={{
padding: '1rem',
border: '1px solid #e0e0e0',
borderRadius: '5px',
}}>
In this guide, you will learn how to properly set up a Node.js server to use _NLUX_ with ChatGPT.
We use the _nlbridge_ package for quick and easy integration.
</div>
<div style={{
padding: '1rem',
border: '1px solid #e0e0e0',
borderRadius: '5px',
}}>
We use _NLUX_ to a LLMA2 model hosted on Hugging Face Inference.
This guide is for you if you want to use _NLUX_ with Hugging Face models.
</div>
<div style={{
padding: '1rem',
border: '1px solid #e0e0e0',
borderRadius: '5px',
}}>
If you have a custom backend and would like to use _NLUX_ with it, this guide is for you.
We will build an adapter for a custom backend and use it with _NLUX_.
</div>
</div>