feat(Processor): support setting extension to empty to indicate no extension restriction

This commit is contained in:
shiyu
2025-09-27 14:11:59 +08:00
parent 0da64b8d9c
commit 7f33eb85ba
2 changed files with 6 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ def _compress_image_for_embedding(input_bytes: bytes) -> Tuple[bytes, Dict[str,
class VectorIndexProcessor:
name = "向量索引"
supported_exts = ["jpg", "jpeg", "png", "bmp", "txt", "md"]
supported_exts: List[str] = [] # 留空表示不限扩展名
config_schema = [
{
"key": "action", "label": "操作", "type": "select", "required": True, "default": "create",