contort

0.0.13 • Public • Published

Contortionist

Latest Contortionist NPM Version License for contortionist Downloads per week on NPM for contortionist Status of tests for contortionist repository Code Coverage for contortionist DeepSource issues for contortionist

Control what LLMs can, and can't, say.

Install

npm install contortionist

Usage

import Contortionist from 'contortionist';
const grammar = 'root ::= "foo"';
const contortionist = new Contortionist({
  grammar,
  model: {
    protocol: 'llama.cpp',
    endpoint: 'http://localhost:4445',
  },
});

const result = await contortionist.execute(prompt, {
  n: 40,
  stream: true,
  callback: ({ partial }) => {
    output.textContent = partial;
  }
});

Package Sidebar

Install

npm i contort

Weekly Downloads

38

Version

0.0.13

License

MIT

Unpacked Size

1.02 MB

Total Files

102

Last publish

Collaborators

  • thekevinscott