halbot 1993.2.69 → 1993.2.71
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 +26 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ alt="Halbot live demo" width="240" height="180" border="10" /></a>
|
|
|
38
38
|
- OCR/OBJECT_DETECT (`OpenAI` or Google `Gemini` API key required, or your own engine)
|
|
39
39
|
- DeepSearch (`Jina` API Key required)
|
|
40
40
|
- Feeding webpage and [YouTube](https://www.youtube.com/) to enhance your prompt
|
|
41
|
+
- Support Tools (Function Calls)
|
|
41
42
|
- Custom prompt at your fingertips
|
|
42
43
|
- Support `private` and `public` mode, with multiple authenticate methods.
|
|
43
44
|
- `Middleware` style workflow, easy to extend.
|
|
@@ -82,9 +83,9 @@ All supported configuration fields:
|
|
|
82
83
|
// OPTIONAL, string.
|
|
83
84
|
"openaiEndpoint": "[[Custom OpenAI API endpoint]]",
|
|
84
85
|
// OPTIONAL, string, default: "gpt-3.5-turbo".
|
|
85
|
-
"
|
|
86
|
+
"openaiModel": "[[Custom OpenAI Model ID]]",
|
|
86
87
|
// OPTIONAL, integer.
|
|
87
|
-
"
|
|
88
|
+
"openaiPriority": "[[Custom OpenAI Priority]]",
|
|
88
89
|
|
|
89
90
|
// Set some of these fields if you need Google's Gemini, TTS, STT, OCR, OBJECT_DETECT, Embedding features.
|
|
90
91
|
// OPTIONAL, string.
|
|
@@ -96,15 +97,23 @@ All supported configuration fields:
|
|
|
96
97
|
|
|
97
98
|
// Set some of these fields if you need Anthropic's Claude features.
|
|
98
99
|
// OPTIONAL, string.
|
|
99
|
-
"
|
|
100
|
+
"anthropicApiKey": "[[Anthropic API Key]]",
|
|
100
101
|
// OPTIONAL, string.
|
|
101
|
-
"
|
|
102
|
+
"anthropicCredentials": "[[Vertex Anthropic Credentials]]",
|
|
102
103
|
// OPTIONAL, string.
|
|
103
|
-
"
|
|
104
|
+
"anthropicProjectId": "[[Vertex Anthropic Project Id]]",
|
|
104
105
|
// OPTIONAL, string, default: `latest claude model`.
|
|
105
|
-
"
|
|
106
|
+
"anthropicModel": "[[Custom Anthropic Model ID]]",
|
|
106
107
|
// OPTIONAL, integer.
|
|
107
|
-
"
|
|
108
|
+
"anthropicPriority": "[[Custom Anthropic Priority]]",
|
|
109
|
+
|
|
110
|
+
// Set some of these fields if you need Jina's DeepSearch features.
|
|
111
|
+
// OPTIONAL, string.
|
|
112
|
+
"jinaApiKey": "[[Jina API Key]]",
|
|
113
|
+
// OPTIONAL, string.
|
|
114
|
+
"jinaModel": "[[Custom Jina Model ID]]",
|
|
115
|
+
// OPTIONAL, integer.
|
|
116
|
+
"jinaPriority": "[[Custom Jina Priority]]",
|
|
108
117
|
|
|
109
118
|
// Set some of these fields if you need Azure's AI features.
|
|
110
119
|
// OPTIONAL, string.
|
|
@@ -116,6 +125,16 @@ All supported configuration fields:
|
|
|
116
125
|
// OPTIONAL, integer.
|
|
117
126
|
"azurePriority": "[[Custom Azure Priority]]",
|
|
118
127
|
|
|
128
|
+
// Set some of these fields if you nee Azure OpenAI's AI features.
|
|
129
|
+
// OPTIONAL, string.
|
|
130
|
+
"azureOpenaiApiKey": "[[Azure OpenAI API Key]]",
|
|
131
|
+
// OPTIONAL, string.
|
|
132
|
+
"azureOpenaiEndpoint": "[[Azure OpenAI API Endpoint]]",
|
|
133
|
+
// OPTIONAL, string.
|
|
134
|
+
"azureOpenaiModel": "[[Custom Azure OpenAI Model ID]]",
|
|
135
|
+
// OPTIONAL, integer.
|
|
136
|
+
"azureOpenaiPriority": "[[Custom Azure OpenAI Priority]]",
|
|
137
|
+
|
|
119
138
|
// Set some of these fields if you need Ollama features.
|
|
120
139
|
// OPTIONAL, boolean.
|
|
121
140
|
"ollamaEnabled": "[[Enable Ollama API]]",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "halbot",
|
|
3
3
|
"description": "Just another `ChatGPT` / `Gemini` / `Claude` / `Azure` / `Jina` / `Ollama` Telegram bob, which is simple design, easy to use, extendable and fun.",
|
|
4
|
-
"version": "1993.2.
|
|
4
|
+
"version": "1993.2.71",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/Leask/halbot",
|
|
7
7
|
"type": "module",
|