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
30 changes: 30 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,36 @@ Unreleased

*

1.0.0 – 2025-12-24
**********************************************

Added
=====

* Prompt template model for reusable AI prompts across profiles
* Custom prompt support via Django admin interface
* Async task orchestrator for long-running AI workflows with Celery
* Session metadata support for task status tracking
* Documentation: comprehensive configuration guide and usage guide
* Support for provider-specific configuration overrides via "options" key
* Base models for workflows, profiles, scopes, and prompt templates

Changed
=======

* **BREAKING**: Renamed "config" key to "provider" in profile configurations
* Improved streaming response handling to eliminate double messages
* Enhanced test coverage across all major features
* Moved PromptModel to top-level models to avoid circular imports

Fixed
=====

* Validation errors now trigger on clean() instead of save()
* Faster mocked streaming for testing
* Double streaming message bug resolved
* Various QA and test coverage improvements

0.1.0 – 2025-04-11
**********************************************

Expand Down
2 changes: 1 addition & 1 deletion backend/openedx_ai_extensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
A experimental plugin for Open edX designed to explore AI extensibility.
"""

__version__ = "0.1.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion tutor/openedx_ai_extensions/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "20.0.0"
__version__ = "1.0.0"