190proof 1.0.40 → 1.0.41
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -31580,7 +31580,12 @@ async function callOpenAIStream(identifier, openAiPayload, openAiConfig, chunkTi
|
|
|
31580
31580
|
);
|
|
31581
31581
|
}
|
|
31582
31582
|
const azureConfig = openAiConfig.modelConfigMap[model];
|
|
31583
|
-
|
|
31583
|
+
let endpoint;
|
|
31584
|
+
if (azureConfig.endpoint) {
|
|
31585
|
+
endpoint = `${azureConfig.endpoint}/${azureConfig.deployment}/chat/completions?api-version=${azureConfig.apiVersion}`;
|
|
31586
|
+
} else {
|
|
31587
|
+
endpoint = `${openAiConfig.baseUrl}/azure-openai/${azureConfig.resource}/${azureConfig.deployment}/chat/completions?api-version=${azureConfig.apiVersion}`;
|
|
31588
|
+
}
|
|
31584
31589
|
try {
|
|
31585
31590
|
const stringifiedPayload = JSON.stringify({
|
|
31586
31591
|
...openAiPayload,
|