diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4f280e6..3e796f6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 diff --git a/ai_aside/__init__.py b/ai_aside/__init__.py index 8a347ea..15c838b 100644 --- a/ai_aside/__init__.py +++ b/ai_aside/__init__.py @@ -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" diff --git a/ai_aside/plugins.py b/ai_aside/plugins.py index c3135e1..7249dfa 100644 --- a/ai_aside/plugins.py +++ b/ai_aside/plugins.py @@ -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 """