-
Notifications
You must be signed in to change notification settings - Fork 50
Plugin to summarize event minutes with an LLM #279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zeynepcaysar
wants to merge
82
commits into
indico:master
Choose a base branch
from
zeynepcaysar:summary-rebase
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
ThiefMaster
reviewed
Aug 20, 2025
tomasr8
reviewed
Aug 21, 2025
Member
tomasr8
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're gonna stick with AI Summary as the name, I'd change the folder/plugin name to ai_summary instead of the current aisummary which is IMO a bit less readable. For URL endpoints, I'd also use /ai-summary instead of /aisummary.
tomasr8
reviewed
Aug 21, 2025
tomasr8
reviewed
Aug 25, 2025
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
tomasr8
reviewed
Aug 27, 2025
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/prompt_selector.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/prompt_selector.jsx
Outdated
Show resolved
Hide resolved
tomasr8
reviewed
Aug 27, 2025
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
tomasr8
reviewed
Aug 27, 2025
2f700a3 to
c4d3812
Compare
a550e97 to
445b5bb
Compare
ThiefMaster
reviewed
Oct 21, 2025
ai_summary/indico_ai_summary/client/components/PromptManagerField.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
215addc to
e79554c
Compare
6ad7c40 to
1d7b4a9
Compare
ThiefMaster
reviewed
Nov 11, 2025
ThiefMaster
reviewed
Nov 11, 2025
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
ai_summary/indico_ai_summary/client/components/ind_summarize_button.jsx
Outdated
Show resolved
Hide resolved
As well as tidy up a few things
* Use generic llm class for all requests * Add model temperature and system prompt settings * Make save button more prominent on summarizer UI * Tidy up some files
* Replaced with a standard fetch() (as IndicoAxios isn't as smooth) * Split main stylesheet across components * Add i18n to prompt management components * Use `load_default` in webargs * Use indico-url imports
As well as address more comments
c59373f to
c8040d0
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This plugin adds a summarize button added to the event page's dropdown menu. It summarizes the meeting minutes(contribution notes) with an LLM - qwen2.5 32b model which is hosted in CERN kubeflow platform. User can select/edit the prompt from predefined ones or can write their own custom prompt and save it. Finally, there is a save summary button to save the summary to the event's note.
uses indico/indico#7032