halbot 1993.2.70 → 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.
Files changed (2) hide show
  1. package/README.md +25 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -83,9 +83,9 @@ All supported configuration fields:
83
83
  // OPTIONAL, string.
84
84
  "openaiEndpoint": "[[Custom OpenAI API endpoint]]",
85
85
  // OPTIONAL, string, default: "gpt-3.5-turbo".
86
- "chatGptModel": "[[Custom ChatGPT Model ID]]",
86
+ "openaiModel": "[[Custom OpenAI Model ID]]",
87
87
  // OPTIONAL, integer.
88
- "chatGptPriority": "[[Custom ChatGPT Priority]]",
88
+ "openaiPriority": "[[Custom OpenAI Priority]]",
89
89
 
90
90
  // Set some of these fields if you need Google's Gemini, TTS, STT, OCR, OBJECT_DETECT, Embedding features.
91
91
  // OPTIONAL, string.
@@ -97,15 +97,23 @@ All supported configuration fields:
97
97
 
98
98
  // Set some of these fields if you need Anthropic's Claude features.
99
99
  // OPTIONAL, string.
100
- "claudeApiKey": "[[Anthropic API Key]]",
100
+ "anthropicApiKey": "[[Anthropic API Key]]",
101
101
  // OPTIONAL, string.
102
- "credentials": "[[Vertex Anthropic Credentials]]",
102
+ "anthropicCredentials": "[[Vertex Anthropic Credentials]]",
103
103
  // OPTIONAL, string.
104
- "projectId": "[[Vertex Anthropic Credentials]]",
104
+ "anthropicProjectId": "[[Vertex Anthropic Project Id]]",
105
105
  // OPTIONAL, string, default: `latest claude model`.
106
- "claudeModel": "[[Custom Claude Model ID]]",
106
+ "anthropicModel": "[[Custom Anthropic Model ID]]",
107
107
  // OPTIONAL, integer.
108
- "claudePriority": "[[Custom Claude Priority]]",
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]]",
109
117
 
110
118
  // Set some of these fields if you need Azure's AI features.
111
119
  // OPTIONAL, string.
@@ -117,6 +125,16 @@ All supported configuration fields:
117
125
  // OPTIONAL, integer.
118
126
  "azurePriority": "[[Custom Azure Priority]]",
119
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
+
120
138
  // Set some of these fields if you need Ollama features.
121
139
  // OPTIONAL, boolean.
122
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.70",
4
+ "version": "1993.2.71",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/halbot",
7
7
  "type": "module",