@core-ai/azure-openai 0.19.0 → 0.20.0
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.js +4 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -34,6 +34,10 @@ function createAzureOpenAI(options = {}) {
|
|
|
34
34
|
{ client },
|
|
35
35
|
{
|
|
36
36
|
providerId: PROVIDER_ID,
|
|
37
|
+
// Escape-hatch options stay under `providerOptions.openai` (Responses
|
|
38
|
+
// field shapes are shared). Reasoning `providerMetadata` is namespaced
|
|
39
|
+
// by `providerId` (`azure-openai`) so encrypted content is not replayed
|
|
40
|
+
// to first-party OpenAI.
|
|
37
41
|
providerOptionsKey: "openai"
|
|
38
42
|
}
|
|
39
43
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@core-ai/azure-openai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Azure OpenAI provider package for @core-ai/core-ai",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Omnifact (https://omnifact.ai)",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"test:watch": "vitest"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@core-ai/core-ai": "^0.
|
|
50
|
-
"@core-ai/openai": "^0.
|
|
49
|
+
"@core-ai/core-ai": "^0.20.0",
|
|
50
|
+
"@core-ai/openai": "^0.20.0",
|
|
51
51
|
"openai": "^6.46.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|