node-gpt-api
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

node-gpt-api

Typescript / Javascript client sdk to access GPT's AI-powered conversational functionality (without OpenAI API key nor VPN).

npm Package Version

Details refer to https://github.com/beenotung/gpt-api

Remarks

The spirit of this library is to enable developers to use the Platform for Open Exploration (Poe) via API. It's designed to empower integration and application development within the terms of service of Poe, which specifically disallow any form of automation that exceeds the set rate limits. Please use this library responsibly and within the provided guidelines.

Features

  • Intuitive API: Make conversation with GPT models via simple and developer-friendly API.

  • Programming Language Agnostic: Designed to work with any programming language. Integrate GPT-powered conversational functionalities into your existing projects with ease.

  • Responsible Usage: Encourages users to respect the guidelines and rate limits set by Poe.

Installation

npm install node-gpt-api

You can also install with pnpm, yarn or slnpm.

Usage Examples

import { ask } from 'node-gpt-api'
import { writeFileSync } from 'fs'

async function main() {
  // ask GPT a question and wait for complete response
  let task = await ask('Can I call GPT API from Typescript?')
  console.log(task.text)
  writeFileSync(`task-${task.id}.html`, task.html)

  // ask GPT a question and process the partial response in realtime
  task = await ask('What can I do with GPT?', task => {
    console.clear()
    console.log(task.question)
    console.log('='.repeat(32))
    console.log(task.text)
  })
  console.log('text:', task.text.length, 'html:', task.html.length)
}
main()

Detail example can refer to the demo cli.ts

Proper Use

It's important to note that Poe's terms of service disallow any form of automation that exceeds the rate limits set forth by Poe. Please ensure to use this library responsibly and within the limits set by Poe. Improper use may lead to suspension of your access to the services.

Potential Use Cases

(This section is generated by GPT-4 itself)

GPT (Generative Pre-trained Transformer) models are powerful language models capable of generating human-like text. They can be used to enable a wide range of functionalities:

  • Chatbots and Conversational Agents: GPT models can be used to create chatbots that can carry on human-like conversations. These chatbots can answer questions, provide recommendations, and even have friendly chats with users.

  • Text Generation and Completion: Given a prompt, GPT models can generate coherent and contextually relevant text. This can be used for tasks such as writing essays, generating code, creating poetry, and much more.

  • Translation: While not specifically trained for translation, GPT models have shown reasonable performance in translating text between languages.

  • Summarization: GPT models can be used to summarize long pieces of text, providing a condensed version while preserving the original meaning.

  • Question Answering: Given a context and a question, GPT models can provide accurate answers, making them useful for tasks like customer support, tutoring, and knowledge extraction.

  • Sentiment Analysis: While not a primary use case, GPT models can be used to analyze the sentiment of a piece of text, identifying whether the sentiment is positive, negative, or neutral.

  • Content Moderation: GPT models can help moderate content, identifying inappropriate or offensive text.

  • Personal Assistants: GPT models can be used to create personal assistants that can schedule appointments, send messages, set reminders, and more.

  • Tutoring: GPT can provide detailed explanations on a wide range of topics, making it a useful tool for education and tutoring.

These applications can be integrated into various software applications, websites, and services to provide a more interactive and personalized user experience.

However, it's important to note that while GPT models are powerful, they are not perfect. They can sometimes generate incorrect or inappropriate responses, and should not be relied upon for critical decision-making without human supervision.

License

This project is licensed with BSD-2-Clause

This is free, libre, and open-source software. It comes down to four essential freedoms [ref]:

  • The freedom to run the program as you wish, for any purpose
  • The freedom to study how the program works, and change it so it does your computing as you wish
  • The freedom to redistribute copies so you can help others
  • The freedom to distribute copies of your modified versions to others

Package Sidebar

Install

npm i node-gpt-api

Weekly Downloads

1

Version

1.0.2

License

BSD-2-Clause

Unpacked Size

12.3 kB

Total Files

6

Last publish

Collaborators

  • beenotung