-
Notifications
You must be signed in to change notification settings - Fork 9
/
PacletInfo.wl
59 lines (59 loc) · 2.14 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
57
58
59
PacletObject[ <|
"Name" -> "Wolfram/Chatbook",
"PublisherID" -> "Wolfram",
"Version" -> "1.5.2",
"WolframVersion" -> "14.1+",
"Description" -> "Wolfram Notebooks + LLMs",
"License" -> "MIT",
"Creator" -> "Connor Gray, Theodore Gray, Richard Hennigan, Kevin Daily",
"Icon" -> "Assets/Images/PacletIcon.png",
"ReleaseID" -> "$RELEASE_ID$",
"ReleaseDate" -> "$RELEASE_DATE$",
"ReleaseURL" -> "$RELEASE_URL$",
"ActionURL" -> "$ACTION_URL$",
"CommitURL" -> "$COMMIT_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" -> {
{ "AIAssistant" , "AIAssistant" },
{ "DisplayFunctions", "DisplayFunctions.wxf" },
{ "Icons" , "Icons.wxf" },
{ "SandboxMessages" , "SandboxMessages.wl" },
{ "Tokenizers" , "Tokenizers" }
}
},
{ "LLMConfiguration",
"Personas" -> {
"PlainChat",
"CodeAssistant",
"CodeWriter",
"NotebookAssistant",
"RawModel",
"Wolfie",
"Birdnardo"
}
},
{ "FrontEnd",
"Prepend" -> True
}
}
|> ]