Feature/dual engine ai explorer - #1588
Open
roshankumar0036singh wants to merge 2 commits into
Open
Conversation
…raphViewer - Ported glowing connection-aware node visualization from the experimental KnowledgeGraph into the main CodeGraphViewer (Classic/Curvy modes). - Deleted redundant UnderstandPage, UnderstandSection, and knowledge-graph directory. - Integrated summary-engine.ts into CodeGraphViewer's side panel to display Architecture Component Role and Dependency Impact. - Cleaned up ComparisonTable.tsx and RepositorySummary.tsx UI. - Fixed TypeScript union error on VisualizationMode.
|
@roshankumar0036singh is attempting to deploy a commit to the shashankss1205's projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Feature: Implement Dual-Engine AI Knowledge Explorer for Static Web Mode
This PR addresses the "405 Method Not Allowed" server errors encountered in the static web deployment when using the AI Knowledge Explorer. Previously, the AI Explorer relied entirely on the Neo4j backend to process queries, which is unavailable in the static web export.
This PR introduces a "Dual-Engine Model":
Changes
executeClientAIQueryinsrc/lib/summary-engine.tsto construct the prompt and handle JSON-mode LLM execution.handleAIQuerySubmitinCodeGraphViewer.tsxto intelligently toggle between the backend API fetch and the browser-based client-side execution.