edgegptjs
v1.0.9
Published
English | [简体中文](./README.zh-CN.md) [![npm version](https://img.shields.io/npm/v/edgegptjs)](https://www.npmjs.com/package/edgegptjs) [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
Downloads
3
Readme
EdgeGPTJs
English | 简体中文
Welcome to EdgeGPTJs, a Node.js package inspired by the Python version EdgeGPT repository. This package allows you to reverse engineer the chat feature of the new version of Bing, making it easier than ever to leverage the power of Bing's chat capabilities within your own projects.
Table of Contents
Features
- Reverse engineer the chat feature of the new version of Bing
- Easy-to-use API with thorough documentation
- Highly customizable and extendable
Roadmap
- [x] CLI tools by demo
- [x] exportable api by npm package
- [ ] one-click remote deployment inspired by ChatGPT-Next-Web
- [ ] integrate it with ChatGPT-Next-Web
Requirements
- A Microsoft Account with early access to https://bing.com/chat (Required)
- Required in a supported country with New Bing (Chinese mainland VPN required)
Checking access (Required)
Getting authentication (Required)
Go to
bing.com
Open the extension
Click "Export" on the bottom right, then "Export as JSON" (This saves your cookies to clipboard)
Paste your cookies into a file
cookies.json
Prompt Tool Usage
use ENVIRONMENT_VARIABLE to pass cookie jar file.
export COOKIE_FILE=/path/to/cookie.json
npx edgegptjs
or use
npx edgegptjs --cookie-file=cookie.json
Library Usage
To get started with EdgeGPTJs, import the package and create a new instance of Chatbot
:
const { Chatbot } = require('edgegptjs');
const bot = new Chatbot(args.cookiePath);
await bot.chatHubInitialization;
const response = await bot.ask("What's the result of 1+1?");
console.log(`Bot: ${response}`);
For a detailed explanation of the API and available methods, please refer to the documentation.
Contributing
We welcome contributions from the community. If you'd like to contribute to EdgeGPTJs, please read our contributing guidelines to get started.
License
EdgeGPTJs is released under the MIT License.