-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 879 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "openai-training",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"train": "bin/train.js",
"do:format-data": "openai tools fine_tunes.prepare_data -f $NAME",
"do:upload": "npm run train --task=upload",
"do:fine-tune": "npm run train --task=fineTuneModel",
"do:list": "npm run train --task=listFineTuneModel",
"do:completion": "npm run train --task=createCompletion",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playground/gpt-training.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/playground/gpt-training/issues"
},
"homepage": "https://github.com/playground/gpt-training#readme",
"dependencies": {
"openai": "^3.2.1",
"rxjs": "^7.8.0"
}
}