Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waylaidwanderer/chatgpt-io-api
An API layer for ChatGPT, powered by chatgpt-io.
https://github.com/waylaidwanderer/chatgpt-io-api
api api-rest chatgpt chatgpt-io gpt3 node nodejs openai server
Last synced: 10 days ago
JSON representation
An API layer for ChatGPT, powered by chatgpt-io.
- Host: GitHub
- URL: https://github.com/waylaidwanderer/chatgpt-io-api
- Owner: waylaidwanderer
- License: mit
- Created: 2023-01-06T00:26:57.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-13T21:42:17.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T15:48:23.198Z (26 days ago)
- Topics: api, api-rest, chatgpt, chatgpt-io, gpt3, node, nodejs, openai, server
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/chatgpt-io-api
- Size: 18.6 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## ChatGPT API
This repository contains an API layer for [ChatGPT](https://chat.openai.com), powered by [chatgpt-io](https://github.com/PawanOsman/chatgpt-io). It allows users to send questions to a chatbot and receive responses in real-time.
To use this API, you will need to have a session token from ChatGPT. Set this token in the `CHATGPT_SESSION_TOKEN` environment variable. You can do this by creating a `.env` file in the root of the project and adding the line `CHATGPT_SESSION_TOKEN=YOUR_TOKEN_HERE`.
To start the API, run the following command:
```bash
npm start
```The API will be listening on the `CHATGPT_PORT` environment variable (defaults to 3000). You can send a POST request to `/ask` with a `message` and optional `conversation_id` in the request body to ask the chatbot a question. The response will contain a `response` field with the chatbot's response.
Example request:
```bash
POST /ask
Content-Type: application/json{
"message": "What is your name?",
"conversation_id": "abc123"
}
```Example response:
```bash
Status: 200 OK
Content-Type: application/json{
"response": "My name is ChatGPT."
}
```If the chatbot is not yet ready, the API will return a 503 status code and an `error` field with the message "Chatbot is not ready yet".