-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode_Compiler.yml
More file actions
78 lines (78 loc) · 1.05 KB
/
Code_Compiler.yml
File metadata and controls
78 lines (78 loc) · 1.05 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
config_path: Code_Compiler.yml
exclude_folders:
- .venv
- dify
- .tmp
- .git
- .next
- node_modules
flask_settings:
debug: true
include_folders: []
logging:
console_level: INFO
file_level: DEBUG
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
max_file_size: 10000000
max_token_count: 10000
repo_dir: repos
report_types:
'1':
file_types:
- py
- ts
- tsx
- js
- jsx
- md
- txt
- json
- yaml
- yml
- toml
- ini
- sol
- rs
name: All Supported File Types
'2':
file_types:
- py
- ts
- js
- sol
- rs
name: Python, TypeScript, JavaScript
'3':
file_types:
- md
- txt
- json
- yaml
- yml
- toml
- ini
- sol
- rs
name: Markdown, Text, JSON, YAML, TOML, INI
required_packages:
Flask: flask
GitPython: git
PyYAML: yaml
aiofiles: aiofiles
rich: rich
streamlit: streamlit
tiktoken: tiktoken
results_dir: output
supported_types:
- .py
- .ts
- .js
- .md
- .txt
- .json
- .yaml
- .yml
- .toml
- .ini
- .sol
- .rs