[Feature]: Unstructured File Loader Support - USF (#815)

This commit is contained in:
Muhammad Muzammil
2023-10-19 04:43:41 +05:00
committed by GitHub
parent c8846e0e93
commit 8b64deab40
5 changed files with 70 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ class IndirectDataType(Enum):
CSV = "csv"
MDX = "mdx"
IMAGES = "images"
UNSTRUCTURED = 'unstructured'
JSON = "json"
@@ -50,4 +51,5 @@ class DataType(Enum):
MDX = IndirectDataType.MDX.value
QNA_PAIR = SpecialDataType.QNA_PAIR.value
IMAGES = IndirectDataType.IMAGES.value
UNSTRUCTURED = IndirectDataType.UNSTRUCTURED.value
JSON = IndirectDataType.JSON.value