openai-api-mock 0.1.14 → 0.1.15

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.js CHANGED
@@ -3,7 +3,6 @@ const nock = require('nock');
3
3
 
4
4
  const { getChatResponce } = require('./src/chat.js');
5
5
  const { createChatStream } = require('./src/chat.stream.js');
6
-
7
6
  const { getImageResponce } = require('./src/image.js');
8
7
 
9
8
  const OPEN_AI_BASE_URL = 'https://api.openai.com';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openai-api-mock",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "A Node.js module for mocking OpenAI API responses in a development environment",
5
5
  "repository": {
6
6
  "type": "git",
package/renovate.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:recommended"
5
+ ]
6
+ }