-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy path.gitignore
73 lines (59 loc) · 1.57 KB
/
.gitignore
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
__pycache__
.DS_Store
.idea
.ipynb_checkpoints
.pytest_cache
.ruff_cache
.vscode/
.ruff_cache/
poetry.lock
.hf_cache/
llama.cpp
*.ipynb
data/db/*
data/chroma_db/*
lpm_kernel/L2/base_model/
lpm_kernel/L2/data_pipeline/output/
lpm_kernel/L2/data_pipeline/graphrag_indexing/cache/
lpm_kernel/L2/data_pipeline/raw_data/*
!lpm_kernel/L2/data_pipeline/raw_data/.gitkeep
lpm_kernel/L2/data_pipeline/tmp/
lpm_kernel/L2/output_models/
data/sqlite/*
data/uploads/*
data/progress/*
lpm_frontend/node_modules
# L2 Model Storage
resources/model/output/merged_model/*
!resources/model/output/merged_model/.gitkeep
resources/model/output/personal_model/*
!resources/model/output/personal_model/.gitkeep
resources/model/output/*.json
resources/model/output/*.gguf
!resources/model/output/.gitkeep
resources/L1/processed_data/subjective/*
!resources/L1/processed_data/subjective/.gitkeep
resources/L1/processed_data/objective/*
!resources/L1/processed_data/objective/.gitkeep
resources/L1/graphrag_indexing_output/report/*
resources/L1/graphrag_indexing_output/subjective/*
resources/raw_content/*
!resources/raw_content/.gitkeep
# Base model storage address
resources/L2/base_model/*
!resources/L2/base_model/.gitkeep
resources/L2/data_pipeline/raw_data/*
!resources/L2/data_pipeline/raw_data/.gitkeep
resources/model/processed_data/L1/processed_data/objective/*
resources/model/processed_data/L1/processed_data/subjective/*
resources/L2/data/*
!resources/L2/data/.gitkeep
resources/model/output/gguf/*
resources/L2/base_models/*
logs/*.log
# Runtime files
run/*
!run/.gitkeep
#config
.backend.pid
.frontend.pid