feat(ai_assistant): add ask doubt chat experience#39
feat(ai_assistant): add ask doubt chat experience#39Gowreesh-A-M wants to merge 2 commits intofeat/lms-ai-support-dashboardfrom
Conversation
Gowreesh-A-M
commented
Mar 18, 2026
- add the Ask Doubt route from the AI Assistant hub with a dedicated chat screen
- build localized chat UI with empty state, composer, history drawer, overlays, and message bubbles
- add Riverpod session state for chats, pinning, renaming, deletion, mock replies, and image placeholder messages
- update shared l10n strings and core surfaces used by the Ask Doubt experience
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request delivers the foundational 'Ask Doubt' chat experience for the AI Assistant. It provides students with a dedicated, interactive interface to engage with an AI study assistant, complete with a localized and visually consistent chat UI. The implementation focuses on a smooth user flow, from initial navigation and quick suggestions to managing chat history and handling various message types, all backed by a robust state management system. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
e2e6a55 to
b7bbc5b
Compare
|
Warning Gemini is experiencing higher than usual traffic and was unable to create the review. Please try again in a few hours by commenting |
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request introduces the 'Ask Doubt' feature, a complete chat experience within the AI Assistant. The changes are extensive, including new screens, widgets, state management with Riverpod, and localization strings. The implementation is well-structured, with clear separation of concerns into different widgets and providers. I've identified a few issues: a potential race condition in the state provider when handling async responses, a memory leak due to improper FocusNode management, and a need for more robust unique ID generation. I've also pointed out some missing translations. Overall, this is a solid implementation of a complex feature.