docuking-mcp 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -40,8 +40,8 @@ import crypto from 'crypto';
|
|
|
40
40
|
// 환경변수에서 API 엔드포인트 설정 (키는 로컬 config에서 읽음)
|
|
41
41
|
const API_ENDPOINT = process.env.DOCUKING_API_ENDPOINT || 'https://docuking.ai/api';
|
|
42
42
|
|
|
43
|
-
// 파일 크기 제한 (
|
|
44
|
-
const MAX_FILE_SIZE_MB =
|
|
43
|
+
// 파일 크기 제한 (150MB) - Base64 인코딩 시 약 200MB, 서버 제한 200MB와 일치
|
|
44
|
+
const MAX_FILE_SIZE_MB = 150;
|
|
45
45
|
const MAX_FILE_SIZE_BYTES = MAX_FILE_SIZE_MB * 1024 * 1024;
|
|
46
46
|
|
|
47
47
|
/**
|