-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
package.json
44 lines (44 loc) · 1.14 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
43
44
{
"name": "com.srcnalt.openai-unity",
"version": "0.2.2",
"displayName": "OpenAI Unity",
"description": "An unofficial OpenAI Unity package that aims to help you use OpenAI API directly in Unity game engine.",
"unity": "2020.3",
"unityRelease": "0f1",
"dependencies": {
"com.unity.nuget.newtonsoft-json": "3.2.1"
},
"keywords": [
"openai",
"chatgpt",
"dalle",
"ai",
"whisper"
],
"author": {
"name": "Sercan (Sarge) Altundas",
"url": "https://github.com/srcnalt"
},
"samples": [
{
"displayName": "ChatGPT",
"description": "ChatGPT example using chat completion API.",
"path": "Samples~/ChatGPT"
},
{
"displayName": "Stream Response",
"description": "An example that shows how to stream text and chat completion responses.",
"path": "Samples~/Stream Response"
},
{
"displayName": "DallE",
"description": "A DALL.E text to image generation example.",
"path": "Samples~/DallE"
},
{
"displayName": "Whisper",
"description": "A Whisper audio to text generation example.",
"path": "Samples~/Whisper"
}
]
}