Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Change Log
Unreleased
**********

3.8.2 - 2025-05-14
**********************************************
* Fixed bug where necessary class variables were not set on the AiAsideCourseApp class

3.8.1 - 2025-05-13
**********************************************
* Bumped ubuntu version to latest for the PyPi publishing job
Expand Down
2 changes: 1 addition & 1 deletion ai_aside/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
A plugin containing xblocks and apps supporting GPT and other LLM use on edX.
"""

__version__ = '3.8.1'
__version__ = '3.8.2'

default_app_config = "ai_aside.apps.AiAsideConfig"
8 changes: 8 additions & 0 deletions ai_aside/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ class AiAsideCourseApp(CourseApp):
Please see the associated ADR for more details.
"""

app_id = 'xpert-unit-summary'
name = 'Xpert unit summaries'
description = 'Use generative AI to summarize course content and reinforce learning.'
documentation_links = {
'learn_more_openai': 'https://openai.com/',
'learn_more_openai_data_privacy': 'https://openai.com/api-data-privacy',
}

@classmethod
def is_available(cls, course_key): # pylint: disable=unused-argument
"""
Expand Down
Loading