forked from nisalgunawardhana/Github-models-starter-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (22 loc) · 693 Bytes
/
package.json
File metadata and controls
23 lines (22 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "github-models-gpt4o-starter",
"version": "1.0.0",
"description": "Starter repository for demonstrating GitHub Marketplace-hosted AI models (GPT-4o) using Node.js",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node sample-basic.js",
"basic": "node sample-basic.js",
"multiturn": "node sample-multiturn.js",
"stream": "node sample-stream.js",
"image": "node sample-image.js",
"tools": "node sample-tools.js",
"reasoning": "node sample-reasoning.js",
"creative": "node sample-creative-writing.js",
"codereview": "node sample-code-review.js"
},
"dependencies": {
"dotenv": "^16.0.3",
"openai": "^5.6.0"
}
}