This commit is contained in:
Lukian LEIZOUR 2022-11-27 22:31:52 +01:00
parent b9e306320c
commit 943ecc44c1
79 changed files with 15959 additions and 1 deletions

31
node_modules/openai/package.json generated vendored Normal file
View file

@ -0,0 +1,31 @@
{
"name": "openai",
"version": "3.1.0",
"description": "Node.js library for the OpenAI API",
"repository": {
"type": "git",
"url": "git@github.com:openai/openai-node.git"
},
"keywords": [
"openai",
"open",
"ai",
"gpt-3",
"gpt3"
],
"author": "OpenAI",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/"
},
"dependencies": {
"axios": "^0.26.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^12.11.5",
"typescript": "^3.6.4"
}
}