npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@jerrywn/chatgpt-api

v1.0.5

Published

A simple, lightweight, configurable ChatGPT api by nodejs

Downloads

2

Readme

chatgpt-api

Example

import ChatGPT from "@jerrywn/chatgpt-api"

const client = new ChatGPT({
  openaiApiKey: process.env.OPENAI_API_KEY || "",
})

const conv01 = client.newConversation()
const response01 = await client.sendMessage("who are you?")
console.log(response01)

const conv02 = client.newConversation()
const response02 = await client.sendMessage("where are you from?")
console.log(response02)

client.useConversation(conv01)
const response03 = await client.sendMessage("whats my previous question?")
console.log(response03)

output

I am an AI language model designed to assist and provide helpful responses to users. How may I assist you?
As an AI language model developed by OpenAI, I don't have a physical presence, so I'm not really "from" anywhere. However, OpenAI is a research organization based in San Francisco, California.
Your previous question was "who are you?"

Usage

npm install @jerrywn/chatgpt-api

import ChatGPT from "@jerrywn/chatgpt-api"

API

new ChatGPT(): object

params

openaiApiKey: string

your openai api key from openai, required

model: string

model name, optional, default: "gpt-3.5-turbo"

temperature: string or number

model temperature, see openai doc, optional, default: 0.7

maxTokens: string or number

model max_tokens, see openai doc, optional, default: 256

prompt: string

model's first system message, see openai doc, optional, default: "You are a helpful assistant"

functions

newConversation(): string

create a new conversation, represented by uuid

params:

  • none

return:

  • the conversation's uuid

useConversation(conversation)

choice which conversation to send message

params:

  • conversation: string
    • the conversation id returned by newConversation()

return:

  • none

sendMessage(message)

params:

  • message: string

    • the message send to chatgpt

return: string

  • reply message by chatgpt