New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

query-gpt

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

query-gpt

Search your json data using natural language

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

QueryGPT

A simple npm package to perform natural language search on JSON data using OpenAI's GPT-3 API.

Installation

You can install the package using npm:

npm install query-gpt

Usage

The package exports a function queryGPT that takes 3 compulsory parameters and 2 optional parameters:

queryGPT(jsonData, queryString, apiKey, maxTokens = 2048, chunks = 100)

The parameters are described below:

  • jsonData: An array of objects that you want to search. Pass only arrays.
  • queryString: The search query string in natural language.
  • apiKey: Your OpenAI API key.
  • maxTokens (optional): The maximum number of characters to generate for each search result. Defaults to 2048.
  • chunks (optional): The number of elements to send in each API request. The default is 100, but you may need to reduce this value if the size of your data is large.
  • Return Type: A promise that resolves to an array of indexes that match the search query.

Here's an example usage:

const queryGPT = require('query-gpt');
//or
import queryGPT from 'query-gpt';

const jsonData = [
  { name: 'Alice', age: 25, city: 'New York' },
  { name: 'Bob', age: 30, city: 'San Francisco' },
  { name: 'Charlie', age: 35, city: 'Chicago' }
];

const queryString = 'find people who live in New York';

const openApiKey = 'YOUR_API_KEY';

queryGPT(jsonData, queryString, openApiKey)
  .then(results => console.log(results))
  .catch(error => console.error(error));
  
//full usage
queryGPT(jsonData, queryString, openApiKey, 2700, 50)
  .then(results => console.log(results))
  .catch(error => console.error(error));

//result: [0]

NOTE: If your getting an empty array as result repeatedly

  • You might have exceeded your max token of 2048, try increasing max tokens and decreasing chunks
  • Please re-verify the Open Apikey that you passed

Limitations

This package is suitable for small JSON data and may not work well for large datasets.

Contributing

Contributions are welcome! If you find a bug or have a feature request, please open an issue or submit a pull request.

License

This package is licensed under the MIT License.

Keywords

natural

FAQs

Package last updated on 27 Mar 2023

Did you know?

Socket

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.

Install

Related posts