Progress
-
added: Help Shape our AI Summaries: Participate in Survey #1
- If you have time please have a look at the survey I created!! For me, it's about to know which algorithm produces the best summaries!!
- I made some changes according to the user's feedback and revisiting the survey. It is now much more readable and less suffocating
-
initialised React in a plugin for developing a panel
- good idea to see all summarised notes and notebooks in a panel
- show the summaries for selected notes
- good inputs and resources provided by @muzak:
- clicking on the notes will display the summarised content so users can see/compare with the original note and with an edit button can adjust the summaries.
- improve dialogs layout
- exposing keyboard shortcuts
- search might be an overkill? What do you guys think?
- a progress so far:
Plan
- continuing develop a panel and dialogs for summarisations
- planning to release a plugin if the minimal features are implemented
- planning to look into running Transformers.js in the web worker in the main app after the release so the focus is not divided
Problems
- Opening dialog with multi-selecting text in the rich editor -> the code is stuck at
const dataDir = await joplin.plugins.installationDir();
with using const selectedText = (await joplin.commands.execute('selectedText') as string); text to summarise.- When I use
const selectedNote = await joplin.workspace.selectedNote();
and thenselectedNote['body']
- When I use