-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (47 loc) · 1.18 KB
/
.gitignore
File metadata and controls
56 lines (47 loc) · 1.18 KB
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
# macOS system files
.DS_Store
# Python cache and temporary files
__pycache__/
*.pyc
*.npy
*.index
# VSCode editor configuration
.vscode/
# Runtime and download caches
.infinity_cache/
pretrained_models/
embedding/
index/
output/
logs/
test/
corpora/
data/
# Environment variables and secrets
.env
# UI storage directories
ui/storage/db/
ui/storage/chat_sessions/
ui/storage/knowledge_base/
ui/storage/memory/
ui/storage/ext/*
!ui/storage/ext/.gitkeep
# Example configuration files
examples/experiments/parameter/*.yaml
examples/experiments/server/*.yaml
examples/demos/parameter/*.yaml
examples/demos/server/*.yaml
!examples/experiments/parameter/sayhello_parameter.yaml
!examples/experiments/server/sayhello_server.yaml
!examples/demos/parameter/build_text_corpus_parameter.yaml
!examples/demos/server/build_text_corpus_server.yaml
!examples/demos/parameter/corpus_chunk_parameter.yaml
!examples/demos/server/corpus_chunk_server.yaml
!examples/demos/parameter/milvus_index_parameter.yaml
!examples/demos/server/milvus_index_server.yaml
# Server configuration files for each server module
servers/*/server.yaml
# Python package metadata
src/*.egg-info/
# JavaScript frontend artifacts
**/node_modules/