-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
64 lines (64 loc) · 1.8 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ai.undream.llm",
"version": "2.3.0",
"displayName": "LLM for Unity",
"description": "LLM for Unity allows to run and distribute Large Language Models (LLMs) in the Unity engine.",
"unity": "2022.3",
"unityRelease": "16f1",
"documentationUrl": "https://undream.ai/LLMUnity",
"testables": [
"undream.llmunity.Runtime.Tests"
],
"keywords": [
"llm",
"large language model",
"Llama",
"GPT",
"ChatGPT",
"artificial intelligence",
"AI",
"NPC",
"conversation",
"dialogue",
"chat",
"chatbot",
"generative"
],
"samples": [
{
"displayName": "SimpleInteraction",
"description": "Simple interaction with an AI character",
"path": "Samples~/SimpleInteraction"
},
{
"displayName": "MultipleCharacters",
"description": "Simple interaction using multiple AI characters",
"path": "Samples~/MultipleCharacters"
},
{
"displayName": "KnowledgeBaseGame",
"description": "Simple detective game using a knowledge base to provide information to the LLM.",
"path": "Samples~/KnowledgeBaseGame"
},
{
"displayName": "ChatBot",
"description": "Interaction between a player and a AI with a UI similar to a messaging app",
"path": "Samples~/ChatBot"
},
{
"displayName": "AndroidDemo",
"description": "Example Android app with an initial screen with model download progress",
"path": "Samples~/AndroidDemo"
},
{
"displayName": "RAG",
"description": "Semantic search using a Retrieval Augmented Generation (RAG) system. Includes example using a RAG to feed information to a LLM.",
"path": "Samples~/RAG"
}
],
"author": {
"name": "Undream AI",
"email": "[email protected]",
"url": "https://undream.ai"
}
}