mirror of
https://github.com/Mintplex-Labs/vector-admin.git
synced 2026-07-18 18:14:31 -04:00
28 lines
971 B
Python
28 lines
971 B
Python
import os
|
|
from slugify import slugify
|
|
from ..utils import tokenize, guid, file_creation_time, move_source
|
|
|
|
# Process all text-related documents.
|
|
def as_text(**kwargs):
|
|
parent_dir = kwargs.get('directory', 'hotdir')
|
|
filename = kwargs.get('filename')
|
|
ext = kwargs.get('ext', '.txt')
|
|
remove = kwargs.get('remove_on_complete', False)
|
|
fullpath = f"{parent_dir}/{filename}{ext}"
|
|
content = open(fullpath).read()
|
|
|
|
print(f"-- Working {fullpath} --")
|
|
data = {
|
|
'id': guid(),
|
|
'url': "file://"+os.path.abspath(f"{parent_dir}/processed/{filename}{ext}"),
|
|
'title': f"{filename}{ext}",
|
|
'description': "a custom file uploaded by the user.",
|
|
'published': file_creation_time(fullpath),
|
|
'wordCount': len(content),
|
|
'pageContent': content,
|
|
'token_count_estimate': len(tokenize(content))
|
|
}
|
|
|
|
move_source(parent_dir, f"{filename}{ext}", remove=remove)
|
|
print(f"[SUCCESS]: {filename}{ext} converted & ready for embedding.\n")
|
|
return [data] |