halbot 1990.1.41 → 1990.1.42
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 +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -164,21 +164,21 @@ const config = {
|
|
|
164
164
|
|
|
165
165
|
// OPTIONAL, object (key renderd as name) or array (name ignored).
|
|
166
166
|
ai: {
|
|
167
|
-
[[aiNameA]]: [[aiClientA]]
|
|
167
|
+
[[aiNameA]]: [[aiClientA]],
|
|
168
168
|
[[aiNameB]]: [[aiClientB]],
|
|
169
169
|
},
|
|
170
170
|
|
|
171
171
|
// OPTIONAL, object.
|
|
172
172
|
// Your own speech-to-text and text-to-speech engine.
|
|
173
173
|
speech: {
|
|
174
|
-
stt: [[
|
|
175
|
-
tts: [[
|
|
174
|
+
stt: [[sttApi]],
|
|
175
|
+
tts: [[ttsApi]],
|
|
176
176
|
},
|
|
177
177
|
|
|
178
178
|
// OPTIONAL, object.
|
|
179
179
|
// Your own computer-vision engine.
|
|
180
180
|
vision {
|
|
181
|
-
see: [[
|
|
181
|
+
see: [[OcrObjectDetectApi]],
|
|
182
182
|
},
|
|
183
183
|
|
|
184
184
|
// OPTIONAL, string.
|
|
@@ -219,14 +219,14 @@ const config = {
|
|
|
219
219
|
args: {
|
|
220
220
|
[[argA]]: {
|
|
221
221
|
type: 'string',
|
|
222
|
-
short: [[
|
|
223
|
-
default: [[
|
|
222
|
+
short: [[shortCut]],
|
|
223
|
+
default: [[defaultValue]],
|
|
224
224
|
desc: [[description]],
|
|
225
225
|
},
|
|
226
226
|
[[argB]]: {
|
|
227
227
|
type: 'binary',
|
|
228
|
-
short: [[
|
|
229
|
-
default: [[
|
|
228
|
+
short: [[shortCut]],
|
|
229
|
+
default: [[defaultValue]],
|
|
230
230
|
desc: [[description]],
|
|
231
231
|
},
|
|
232
232
|
...[[OTHER ARGS]],
|
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.42",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/Leask/halbot",
|
|
7
7
|
"type": "module",
|