halbot 1990.1.96 → 1990.1.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,9 +28,9 @@ alt="Halbot live demo" width="240" height="180" border="10" /></a>
|
|
|
28
28
|
- [Telegram](https://telegram.org/) Bot (`Telegram Bot` token required)
|
|
29
29
|
- [ChatGPT](https://openai.com/blog/chatgpt) (`OpenAI` API key required)
|
|
30
30
|
- [Bing Chat](https://www.bing.com/) (`Bing Chat` user token required)
|
|
31
|
-
- Speech-to-
|
|
32
|
-
- Text-to-
|
|
33
|
-
- Text-to-
|
|
31
|
+
- Speech-to-Text (`OpenAI` or `Google Cloud` API key required, or your own engine)
|
|
32
|
+
- Text-to-Speech (`OpenAI` or `Google Cloud` API key required, or your own engine)
|
|
33
|
+
- Text-to-Image by DALL·E (`OpenAI` API key required, or your own engine)
|
|
34
34
|
- OCR/OBJECT_DETECT (`Google Cloud` API key required, or your own engine)
|
|
35
35
|
- Feeding webpage and [YouTube](https://www.youtube.com/) to enhance your prompt
|
|
36
36
|
- Custom prompt and [🧠 Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts) at your fingertips
|
|
@@ -43,22 +43,6 @@ alt="Halbot live demo" width="240" height="180" border="10" /></a>
|
|
|
43
43
|
- Code block rendering, developers friendly.
|
|
44
44
|
- ESM from the ground up
|
|
45
45
|
|
|
46
|
-
## ❤️ Become a sponsor to `halbot`
|
|
47
|
-
|
|
48
|
-
[For `$10/month`, you can access the official `halbot` service for a month](https://github.com/sponsors/Leask).
|
|
49
|
-
|
|
50
|
-
You don't need to pay `$20/month` for ChatGPT tokens separately.
|
|
51
|
-
|
|
52
|
-
`halbot` is stable. It has a better user experience than the official web app. You can access `halbot` from your favourite Telegram apps on your phone, tablet and computer.
|
|
53
|
-
|
|
54
|
-
Additionally, `halbot` has a lot of built-in input parsers to maximize the ChatGPT engine's power.
|
|
55
|
-
|
|
56
|
-
`halbot` can now parse webpages, YouTube videos, PDFs, images, Office documents, code files, and text files. And other parsers are coming soon.
|
|
57
|
-
|
|
58
|
-
`halbot` also supports Text-to-Speech and Speech-to-Text. You can `talk` to the AI engines to get help with your job.
|
|
59
|
-
|
|
60
|
-
And remember, you can always use the codes in this repo to build your own `halbot` instant. This project will keep open source forever.
|
|
61
|
-
|
|
62
46
|
## Basic usage
|
|
63
47
|
|
|
64
48
|
### Configuration
|
|
@@ -269,6 +253,24 @@ const config = {
|
|
|
269
253
|
await halbot(config);
|
|
270
254
|
```
|
|
271
255
|
|
|
256
|
+
## ❤️ Become a sponsor to `halbot`
|
|
257
|
+
|
|
258
|
+
[For `$10/month`, you can access the official `halbot` service for a month](https://github.com/sponsors/Leask).
|
|
259
|
+
|
|
260
|
+
You don't need to pay `$20/month` for ChatGPT tokens separately.
|
|
261
|
+
|
|
262
|
+
`halbot` is stable. It's running on top of the latest `GPT-4` model. It has a better user experience than the official web app. You can access `halbot` from your favourite Telegram apps on your phone, tablet and computer.
|
|
263
|
+
|
|
264
|
+
Additionally, `halbot` has a lot of built-in input parsers to maximize the ChatGPT engine's power.
|
|
265
|
+
|
|
266
|
+
`halbot` can now parse webpages, YouTube videos, PDFs, images, Office documents, code files, and text files. And other parsers are coming soon.
|
|
267
|
+
|
|
268
|
+
`halbot` integrates Text-to-Image service by DALL·E 3. You can ask it to draw what you want.
|
|
269
|
+
|
|
270
|
+
`halbot` also supports Text-to-Speech and Speech-to-Text. You can `talk` to the AI engines to get help with your job.
|
|
271
|
+
|
|
272
|
+
And remember, you can always use the codes in this repo to build your own `halbot` instant. This project will keep open source forever.
|
|
273
|
+
|
|
272
274
|
## Foundations
|
|
273
275
|
|
|
274
276
|
- `halbot` uses my other project [utilitas](https://github.com/Leask/utilitas) as the basic framework to handle all the dirty work.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "halbot",
|
|
3
3
|
"description": "Just another ChatGPT/Bing Chat Telegram bob, which is simple design, easy to use, extendable and fun.",
|
|
4
|
-
"version": "1990.1.
|
|
4
|
+
"version": "1990.1.98",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/Leask/halbot",
|
|
7
7
|
"type": "module",
|