Add context compression mechanism

This commit is contained in:
2025-02-09 12:05:41 +08:00
parent 32e61b8d24
commit 6a0cab65d1
4 changed files with 76 additions and 41 deletions

9
audit/language.py Normal file
View File

@@ -0,0 +1,9 @@
LANGUAGE = {
'c': ['.c'],
'c++': ['.cc', '.cpp'],
'go': ['.go'],
'php': ['php', 'php3', 'php4', 'php5', 'phtml'],
'java': ['.java'],
'python': ['.py'],
'javascript': ['.js'],
}