-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add announcement for semantics plugin
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...ueakInboxTalk.package/TalkInboxBrowser.class/class/announcement20241121SemanticsPlugin.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
announcements | ||
announcement20241121SemanticsPlugin | ||
<talkAnnouncement> | ||
|
||
^ TalkInboxBrowserAnnouncement | ||
selector: #announcement20241121SemanticsPlugin | ||
date: '2024-11-18' asDate asDateAndTime | ||
subject: ('Try out new AI tools for {1}' format: {self appName}) | ||
content: ('Big news! {appName} now offers an optional {plugin} that helps you search, navigate, and survey the mailing list. The {plugin} uses <a href="{semanticTextUrl}">{semanticText}</a>, a new framework for generative AI in Squeak. | ||
You can read more about the new features here: | ||
<a href="{annUrl}">{annSubject}</a> | ||
To use the plugin, enable the {preference} setting in the preference browser.' | ||
format: | ||
(Dictionary new | ||
at: #appName put: self appName; | ||
at: #plugin put: 'Semantics Plugin'; | ||
at: #semanticText put: 'SemanticText'; | ||
at: #semanticTextUrl put: 'https://github.com/hpi-swa-lab/Squeak-SemanticText'; | ||
at: #annSubject put: '[squeak-dev] [ANN] SemanticText: ChatGPT, embedding search, and retrieval-augmented generation for Squeak' escapeEntities; | ||
at: #annUrl put: 'code:// (TalkInbox squeakDev messageForId: ''<ffab8136-dea2-41d1-993c-61251f1333bc@MX2018-DAG1.hpi.uni-potsdam.de>'') browse'; flag: #todo "update"; | ||
at: #preference put: | ||
('Semantic search in Squeak Inbox Talk' asText | ||
addAttribute: (PluggableTextAttribute evalBlock: [PreferenceBrowser open searchPattern: 'enableSemanticSearch']); | ||
yourself); | ||
yourself)) | ||
talkAsTextFromHtmlWithCRs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters