Skip to content

Commit 806ccac

Browse files
committed
chore: add gitignore file - Exclude Python cache files - Ignore Gradio generated files - Exclude embeddings and database files - Ignore generatedJSON outputs
1 parent 18a1013 commit 806ccac

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

agentic_rag/.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Virtual Environment
7+
venv/
8+
env/
9+
.env
10+
11+
# IDE
12+
.vscode/
13+
.idea/
14+
15+
# Gradio
16+
.gradio/
17+
18+
# Generated files
19+
embeddings/
20+
chroma_db/
21+
docs/*.json
22+
23+
# Distribution / packaging
24+
dist/
25+
build/
26+
*.egg-info/
27+
28+
# Logs
29+
*.log

0 commit comments

Comments
 (0)