-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
36 lines (28 loc) · 867 Bytes
/
.gitignore
File metadata and controls
36 lines (28 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Virtual environments and dependencies
.venv/
node_modules/
# Python cache
**/__pycache__/
*.pyc
# Environment variables (contains secrets)
.env
# MLflow tracking data
**/mlruns/*
!**/mlruns/.gitkeep
# Runtime logs (but keep demonstration logs)
conversational_system/*.log
deep_solver_benchmark/*.log
# Temporary code directories (generated during execution)
**/temp_code/*
!**/temp_code/.gitkeep
**/saved_code/*
!**/saved_code/.gitkeep
# Conversational system runtime data
conversational_system/conversations.db
# Benchmark data (users download per README instructions)
benchmark_tasks_and_results/questions_and_answers/
# Benchmark results and logs (generated during testing)
benchmark_tasks_and_results/test_results/*
!benchmark_tasks_and_results/test_results/.gitkeep
benchmark_tasks_and_results/test_log/*
!benchmark_tasks_and_results/test_log/.gitkeep