openai-api-mock 0.1.18 → 0.1.20

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/main.test.js CHANGED
@@ -20,7 +20,7 @@ describe('Mock OpenAI Chat & Image generation API', () => {
20
20
  { role: 'user', content: "Suggest at least 5 recipes" },
21
21
  ]
22
22
  });
23
-
23
+
24
24
  expect(response).toHaveProperty('id');
25
25
  expect(response).toHaveProperty('object', 'chat.completion');
26
26
  expect(response).toHaveProperty('created');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openai-api-mock",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "A Node.js module for mocking OpenAI API responses in a development environment",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -10,6 +10,7 @@ The module supports the following OpenAI API endpoints:
10
10
  - chat completions with functions
11
11
  - image generations
12
12
 
13
+ > This module is powering the sandbox mode for [Aipify](https://aipify.co).
13
14
 
14
15
  ## Installation
15
16