-
Notifications
You must be signed in to change notification settings - Fork 135
feat: RAG memory graph with interlinked traversal #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -158,7 +158,7 @@ export default async function Home() { | |||||
| }} | ||||||
| > | ||||||
| Context+ is an MCP server designed for developers who demand 99% | ||||||
| accuracy. By combining Tree-sitter AST parsing & Spectral | ||||||
| accuracy. By combining RAG, Treesitter AST & Spectral | ||||||
|
||||||
| accuracy. By combining RAG, Treesitter AST & Spectral | |
| accuracy. By combining RAG, Tree-sitter AST & Spectral |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -314,6 +314,63 @@ export default function ToolDiagram() { | |||||
| </div> | ||||||
| ))} | ||||||
| </div> | ||||||
| <div style={{ marginTop: 16, position: "relative" }}> | ||||||
| <div | ||||||
| style={{ | ||||||
| height: 100, | ||||||
| borderRadius: 20, | ||||||
| overflow: "hidden", | ||||||
| position: "relative", | ||||||
| background: "var(--panel-bg)", | ||||||
| }} | ||||||
| > | ||||||
| <svg | ||||||
| style={{ position: "absolute", inset: 0, width: "100%", height: "100%" }} | ||||||
| xmlns="http://www.w3.org/2000/svg" | ||||||
| > | ||||||
| <defs> | ||||||
| <pattern | ||||||
| id={`diag-rag-bg-${isDark ? "dark" : "light"}`} | ||||||
| width="6" | ||||||
| height="6" | ||||||
| patternUnits="userSpaceOnUse" | ||||||
| patternTransform="rotate(45)" | ||||||
| > | ||||||
| <line | ||||||
| x1="0" | ||||||
| y1="0" | ||||||
| x2="0" | ||||||
| y2="6" | ||||||
| stroke={isDark ? "#000000" : "#000000"} | ||||||
|
||||||
| stroke={isDark ? "#000000" : "#000000"} | |
| stroke="#000000" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling/branding inconsistency: the project uses “Tree-sitter” elsewhere, but this copy uses “Treesitter”. Consider standardizing to “Tree-sitter” for consistency and searchability.