1.0.1 • Published 7 months ago

questgpt-js v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

The official QuestGPT AI Javascript SDK

npm version

Introduction

This is the official QuestGPT AI Javascript SDK. It allows you to easily integrate QuestGPT AI into your Javascript projects.

Installation

npm install questgpt

Usage

Importing the SDK

import { QuestGPT } from "questgpt";

Creating a QuestGPT instance

const questGpt = new QuestGpt("<YOUR_QUESTGPT_API_KEY>");

Asking a question

const question = "What is the meaning of life?";
const response = await questGpt.query({
  query: question,
});

Sample response

{
  "metadata": {
    "sources": [
      "https://en.wikipedia.org/wiki/Meaning_of_life"
    ]
  }
  "response": "The meaning of life is to live a life of meaning."
}
1.0.1

7 months ago

1.0.0

7 months ago