feat: 초기 프로젝트 구조 설정 및 소스 코드 추가
This commit is contained in:
28
config/settings.json
Normal file
28
config/settings.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"models": {
|
||||
"translation": "facebook/nllb-200-3.3B",
|
||||
"summarization": "ainize/kobart-news",
|
||||
"embedding": "nomic-embed-text"
|
||||
},
|
||||
"translation": {
|
||||
"max_length": 512,
|
||||
"num_beams": 4,
|
||||
"early_stopping": true,
|
||||
"batch_size": 4
|
||||
},
|
||||
"summarization": {
|
||||
"max_length": 150,
|
||||
"min_length": 30,
|
||||
"num_beams": 4
|
||||
},
|
||||
"processing": {
|
||||
"chunk_size": 500,
|
||||
"overlap": 50,
|
||||
"concurrent_chunks": 3
|
||||
},
|
||||
"output": {
|
||||
"html_template": "modern",
|
||||
"include_toc": true,
|
||||
"include_summary": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user