An open API service indexing awesome lists of open source software.

https://github.com/perongh/deno-bing-chat

Easy-to-use Bing Chat API for Deno
https://github.com/perongh/deno-bing-chat

Last synced: about 2 months ago
JSON representation

Easy-to-use Bing Chat API for Deno

Awesome Lists containing this project

README

        

# Deno Bing Chat

## Example

```ts
import { BingChatSession } from '../mod.ts'

const session = new BingChatSession(Deno.env.get('BING_COOKIE')!, 'Creative')

console.log('Bing:', await session.send('list 10 words'))
await session.send('which word above is negative?', (p) => console.log(p.text))

```

## Credits

This project is based on the [bing-chat](https://github.com/transitive-bullshit/bing-chat).