Skip to content

Commit 89c1d84

Browse files
committed
Add RAG pipeline for code analysis and architecture insights
1 parent aa7ce20 commit 89c1d84

24 files changed

Lines changed: 4710 additions & 0 deletions

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,24 @@ site-content
2323
# NetBeans files
2424
nb-configuration.xml
2525
nbactions.xml
26+
27+
# Python
28+
__pycache__/
29+
*.py[cod]
30+
*$py.class
31+
*.so
32+
.Python
33+
venv/
34+
.venv/
35+
ENV/
36+
env/
37+
*.egg-info/
38+
.eggs/
39+
dist/
40+
build/
41+
42+
# RAG index files (large, can be regenerated)
43+
rag/index/
44+
45+
# Pytest
46+
.pytest_cache/

0 commit comments

Comments
 (0)