npm.io
0.2.0 • Published 3 years ago

langchain-text-generation-webui

Licence
MIT
Version
0.2.0
Deps
3
Size
13 kB
Vulns
2
Weekly
0
Stars
2
DeprecatedThis package is deprecated

langchain-text-generation-webui

This package still in development and maybe not ready for production use, use it at your own risk.

Overview

This is a oobabooga/text-generation-webui integration for hwchase17/langchainjs to generate text from the text-generation-webui api.

Installation

npm install langchain-text-generation-webui langchain

Usage

import { TextGenerationWebUi } from 'langchain-text-generation-webui';

const textGenerationWebUi = new TextGenerationWebUi({
  url: 'http://localhost:5005',
});

const prompt = 'Hello, my name is'

 const res = await textGenerationWebUi.call(prompt, {
  temperature: 0.5
 })

 console.log(res) // John Doe...