Peer Instruction: Fix sync peer chat send button being disabled + resolve async LLM course token lookup#1151
Merged
bnmnetp merged 5 commits intoRunestoneInteractive:mainfrom Feb 17, 2026
Merged
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
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.
Sync chat fix
Fixes the issue where the Send button in sync peer instruction was stuck disabled, preventing students from clicking to send messages.
We now explicitly remove the disabled class on page load when not in LLM mode, so sync chat behaves normally. Async LLM restrictions remain scoped to async mode only.
Async LLM Fix
Async peer LLM mode was incorrectly returning “missing api key” even when a valid course-wide token existed.
The issue was a course ID mismatch in _get_course_openai_key(). It now resolves the course by course_name and uses the correct course.id when fetching the token. Also ensures all services share the same FERNET_SECRET so tokens decrypt correctly.
This should address the disabled send button and the async token issue. If you’re seeing anything different, let me know.