forked from WolframResearch/Chatbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PacletInfo.wl
56 lines (56 loc) · 1.98 KB
/
PacletInfo.wl
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
PacletObject[ <|
"Name" -> "Wolfram/Chatbook",
"PublisherID" -> "Wolfram",
"Version" -> "1.1.3",
"WolframVersion" -> "13.2+",
"Description" -> "Wolfram Notebooks + LLMs",
"License" -> "MIT",
"Creator" -> "Connor Gray, Theodore Gray, Richard Hennigan",
"Icon" -> "Assets/Images/PacletIcon.png",
"ReleaseID" -> "$RELEASE_ID$",
"ReleaseDate" -> "$RELEASE_DATE$",
"ReleaseURL" -> "$RELEASE_URL$",
"ActionURL" -> "$ACTION_URL$",
"Loading" -> "Startup",
"PrimaryContext" -> "Wolfram`Chatbook`",
"Extensions" -> {
(* NOTE: The BeginStartup and EndStartup contexts are special, and need to
be listed first and last, respectively, among all contexts provided by
this paclet. This is a workaround used to prevent the contexts from this
paclet from being present in $ContextPath post Kernel-startup. *)
{ "Kernel",
"Root" -> "Source/Startup/Begin",
"Context" -> "Wolfram`Chatbook`BeginStartup`"
},
{ "Kernel",
"Root" -> "Source/Chatbook",
"Context" -> "Wolfram`Chatbook`"
},
{ "Kernel",
"Root" -> "Source/Startup/End",
"Context" -> "Wolfram`Chatbook`EndStartup`"
},
{ "Asset",
"Root" -> "Assets",
"Assets" -> {
{ "Icons" , "Icons.wxf" },
{ "FullIcons" , "FullIcons.wxf" },
{ "AIAssistant" , "AIAssistant" },
{ "SandboxMessages", "SandboxMessages.wl" }
}
},
{ "LLMConfiguration",
"Personas" -> {
"PlainChat",
"CodeAssistant",
"CodeWriter",
"RawModel",
"Wolfie",
"Birdnardo"
}
},
{ "FrontEnd",
"Prepend" -> True
}
}
|> ]