-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.13 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": "ai.undream.ragsearchunity",
"version": "1.0.1",
"displayName": "RAGSearchUnity",
"description": "RAGSearchUnity implements semantic search in the Unity engine.",
"unity": "2022.3",
"unityRelease": "16f1",
"documentationUrl": "https://github.com/undreamai/RAGSearchUnity",
"dependencies": {
"com.unity.sentis": "1.2.0-exp.2",
"com.unity.nuget.newtonsoft-json": "3.2.1"
},
"testables": [
"undream.RAGSearchUnity.Runtime.Tests"
],
"keywords": [
"search",
"semantic search",
"similarity search",
"embedding search",
"search engine",
"RAG",
"Retrieval Augmented Generation",
"embeddings",
"AI"
],
"samples": [
{
"displayName": "HamletSearch",
"description": "Example demonstrating search of relevant text in the Hamlet play.",
"path": "Samples~/HamletSearch"
},
{
"displayName": "MysteryOfTheThreeBots",
"description": "Example game using a RAG system.",
"path": "Samples~/MysteryOfTheThreeBots"
}
],
"author": {
"name": "Undream AI",
"email": "hello@undream.ai",
"url": "https://undream.ai"
}
}