azure-openai
Advanced tools
Comparing version
{ | ||
"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
492448
0.24%9822
0.12%66
34.69%