New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

azure-openai

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azure-openai - npm Package Compare versions

Comparing version

to
0.0.13

2

package.json
{
"name": "azure-openai",
"version": "0.0.12",
"version": "0.0.13",
"description": "Node.js library for the Azure OpenAI API",

@@ -5,0 +5,0 @@ "repository": {

@@ -37,2 +37,3 @@ # Azure OpenAI Node.js Library

apiKey: this.apiKey,
// add azure info into configuration
azure: {

@@ -49,3 +50,18 @@ apiKey: {your-azure-openai-resource-key},

5. optional, if you use stream = true. you may need to change response
```
// Azure OpenAI donot response delta data, so you need to change the response to text
// const delta = parsed.choices[0].delta.content;
const delta = parsed.choices[0].text;
```
## Test
Currently, only "gpt-3.5-turbo" API has been tested. Please feel free to submit your issues or pull requests to support other APIs.
| API | Test Status |
| --- | --- |
| createChatCompletion | Pass |
| createCompletion | Pass |
| createEmbedding | Pass |
| createImage | Not Support |
Please feel free to submit your issues or pull requests to support other APIs.

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display