0.0.2 • Published 1 year ago

gpt-logic v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

GPT-Logic

The purpose of this package is to translate the natural language generated by OpenAI's GPT models or any other large language models into JavaScript data types like booleans and objects.

Getting started

Install the package from NPM

npm i gpt-logic

How to use

Import the package

const GPTLogic = require('gpt-logic');

Instantiate a GPTLogic object

const gptLogic = new GPTLogic('YOUR_PROVIDER', 'MODEL_NAME', 'CREDENTIAL');

Providers and models

Currently, the following providers and models are supported:

  • OpenAI
    • gpt-3.5-turbo
    • gpt-4

Call functions

This example calls the isTrue function:

const call = async () => {
    const result = await gptLogic.isTrue(`The earth is flat`);
    console.log(JSON.stringify(result));
};
call();

And you will expect the following response:

{ "hasDetermined": true, "result": false }

Available functions

  • isTrue
  • getNumbers
0.0.2

1 year ago

0.0.1

1 year ago