added issue with path fixes

This commit is contained in:
vasilije 2025-09-06 04:08:45 -07:00
parent aaa1776293
commit fc8a6d704e

View file

@ -75,5 +75,16 @@ async def data_item_to_text_file(
else:
raise IngestionError(message="Local files are not accepted.")
# data is a relative file path (e.g., "file.json", "data/file.txt")
else:
# This is a relative file path - check if it exists and can be loaded
if settings.accept_local_file_path:
loader = get_loader_engine()
return await loader.load_file(data_item_path, preferred_loaders), loader.get_loader(
data_item_path, preferred_loaders
)
else:
raise IngestionError(message="Local files are not accepted.")
# data is not a supported type
raise IngestionError(message=f"Data type not supported: {type(data_item_path)}")