Skip to content
Snippets Groups Projects
Unverified Commit c011455d authored by Huu Le's avatar Huu Le Committed by GitHub
Browse files

fix cannot upload file (#286)

parent 38a8be8d
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ import mimetypes ...@@ -3,7 +3,7 @@ import mimetypes
import os import os
from io import BytesIO from io import BytesIO
from pathlib import Path from pathlib import Path
from typing import Any, List, Tuple from typing import List, Optional, Tuple
from app.engine.index import IndexConfig, get_index from app.engine.index import IndexConfig, get_index
from llama_index.core import VectorStoreIndex from llama_index.core import VectorStoreIndex
...@@ -72,7 +72,12 @@ class PrivateFileService: ...@@ -72,7 +72,12 @@ class PrivateFileService:
return documents return documents
@staticmethod @staticmethod
def process_file(file_name: str, base64_content: str, params: Any) -> List[str]: def process_file(
file_name: str, base64_content: str, params: Optional[dict] = None
) -> List[str]:
if params is None:
params = {}
file_data, extension = PrivateFileService.preprocess_base64_file(base64_content) file_data, extension = PrivateFileService.preprocess_base64_file(base64_content)
# Add the nodes to the index and persist it # Add the nodes to the index and persist it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment