-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@gradientai/nodejs-sdk-typescript-example",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"blocks": "ts-node -r dotenv/config src/blocks.ts",
"embeddings": "ts-node -r dotenv/config src/embeddings.ts",
"fine-tune": "ts-node -r dotenv/config src/fineTune.ts",
"guidance": "ts-node -r dotenv/config src/guidance.ts",
"rag": "ts-node -r dotenv/config src/rag.ts",
"test": "true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Preemo-Inc/gradient-sdk-typescript-example.git"
},
"keywords": [
"llm",
"gradient.ai",
"ai",
"large language models",
"gradient",
"machine learning",
"typescript"
],
"author": "gradient.ai developers",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Preemo-Inc/gradient-sdk-typescript-example/issues"
},
"homepage": "https://github.com/Preemo-Inc/gradient-sdk-typescript-example#readme",
"devDependencies": {
"@types/node": "^18.17.11",
"dotenv": "^16.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@gradientai/nodejs-sdk": "^1.2.0"
}
}