breakroom 2.1.3 → 2.1.4
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/bin/setup.js +3 -0
- package/package.json +1 -1
package/bin/setup.js
CHANGED
|
@@ -237,6 +237,7 @@ const ALL_BASE_URL_VARS = [
|
|
|
237
237
|
'AI21_BASE_URL',
|
|
238
238
|
'XAI_BASE_URL', 'XAI_API_BASE',
|
|
239
239
|
'REPLICATE_API_BASE',
|
|
240
|
+
'HERMES_API_BASE', 'HERMES_BASE_URL',
|
|
240
241
|
'OPENAI_LIKE_API_BASE',
|
|
241
242
|
'LLM_BASE_URL', 'LLM_API_BASE', 'OPENAI_API_BASE',
|
|
242
243
|
];
|
|
@@ -256,10 +257,12 @@ const ALL_BASE_URL_KEYS = [
|
|
|
256
257
|
'AI21_BASE_URL',
|
|
257
258
|
'XAI_BASE_URL',
|
|
258
259
|
'REPLICATE_API_BASE',
|
|
260
|
+
'HERMES_API_BASE', 'HERMES_BASE_URL',
|
|
259
261
|
'OPENAI_LIKE_API_BASE',
|
|
260
262
|
'LLM_BASE_URL', 'OPENAI_API_BASE',
|
|
261
263
|
'openAiBaseUrl', 'anthropicBaseUrl',
|
|
262
264
|
'openAiBaseURL', 'anthropicBaseURL',
|
|
265
|
+
'hermesApiBase', 'hermesBaseUrl',
|
|
263
266
|
];
|
|
264
267
|
|
|
265
268
|
function buildPatch(filePath, proxyUrl) {
|