questgpt-js
v1.0.1
Published
The official QuestGPT API wrapper for Javascript.
Downloads
3
Readme
The official QuestGPT AI Javascript SDK
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."
}