Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
bing-chat-patch
Advanced tools
Node.js client for the unofficial Bing Chat API. It's like ChatGPT on steroids 🔥
This package is a Node.js wrapper around Bing Chat by Microsoft. TS batteries included. ✨
Warning This package is a reverse-engineered hack. I do not expect it to continue working long-term, and it is not meant for use in production. I'm building this in public, and you can follow the progress on Twitter @transitive_bs.
(30s conversation demo)
npm install bing-chat
Make sure you're using node >= 18
so fetch
is available.
npm install bing-chat-patch
#Create your bing proxy, see https://github.com/adams549659584/go-proxy-bingai
export BING_HOST=<your_bing_host> #Please do not include https/http.
import { BingChat } from 'bing-chat-patch';
import dotenv from 'dotenv';
dotenv.config();
You need access to Bing Chat OR a valid cookie from someone who has access.
The cookie you need from Bing is the _U
cookie (or just all of the cookies concatenated together; both will work).
import { BingChat } from 'bing-chat'
async function example() {
const api = new BingChat({
cookie: process.env.BING_COOKIE
})
const res = await api.sendMessage('Hello World!')
console.log(res.text)
}
You can follow-up messages to continue the conversation. See demos/demo-conversation.ts
for an example.
Note that Bing Chat conversations expire after about 20 minutes, so they're not meant to be long-term objects.
You can add streaming via the onProgress
handler:
const res = await api.sendMessage('Write a 500 word essay on frogs.', {
// print the partial response as the AI is "typing"
onProgress: (partialResponse) => console.log(partialResponse.text)
})
// print the full text at the end
console.log(res.text)
See demos/demo-on-progress.ts
for a full example of streaming support.
You can also add the the parameter variant
to the sendMessage
function to change the variant of the AI. The default is Balanced
, but you can also use Precise
or Creative
.
const res = await api.sendMessage('Write a 500 word essay on frogs.', {
// change the variant to 'Precise'
variant: 'Creative'
})
If you create a cool integration, feel free to open a PR and add it to the list.
node >= 18
.fetch
is installed globally.bing-chat
, we recommend using it only from your backend APIMIT © Travis Fischer
If you found this project interesting, please consider sponsoring me or following me on twitter
FAQs
Node.js client for the unofficial Bing Chat API.
The npm package bing-chat-patch receives a total of 1 weekly downloads. As such, bing-chat-patch popularity was classified as not popular.
We found that bing-chat-patch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.