Open
Conversation
Member
|
Hi Jinha! Thanks for the PR! |
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.
Adds OpenAI helper widget that takes into context the current page and uses user-specified API key that is stored in local storage. Can be extended to be specifically for image generation of useful diagrams or demonstrations of concepts along with the RunLLM widget. Ideally in the future, API key and requests to OpenAI API should be made on server side not directly via browser for security. (Technically keys when stored in local storage is limited to one origin but if there's XSS vulnerabilities it might be exposed)
OpenAI helper widget:
openai-widget.html, rendering a floating “OpenAI Helper” panel injected site-wide via
_quarto.yml. The widget lets readers ask OpenAI questions about the current page, automatically appending the page URL to every query.
Local API key storage: Stores and masks the user-supplied OpenAI API key in localStorage, with inline warnings about local-only persistence and options to save or clear the key.
Improved UX: Provides quick actions for page-context prompts, a scrollable response area, and layout tweaks so the panel is horizontally resizable and doesn’t clip long answers.
Configuration:
_quarto.yml
includes the widget after the body to ensure it appears on all rendered pages.