mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
Fix sending file attachments in save_to_conversation method
- When files attached but upload fails, don't update the state variables - Make removing null characters in pdf extraction more space efficient
This commit is contained in:
parent
ba2471dc02
commit
dd36303bb7
3 changed files with 26 additions and 26 deletions
|
@ -237,6 +237,7 @@ export const ChatInputArea = forwardRef<HTMLTextAreaElement, ChatInputProps>((pr
|
|||
? Array.from(nonImageFiles).concat(Array.from(attachedFiles || []))
|
||||
: Array.from(attachedFiles || []);
|
||||
|
||||
if (newFiles.length > 0) {
|
||||
// Ensure files are below size limit (10 MB)
|
||||
for (let i = 0; i < newFiles.length; i++) {
|
||||
if (newFiles[i].size > 10 * 1024 * 1024) {
|
||||
|
@ -249,13 +250,14 @@ export const ChatInputArea = forwardRef<HTMLTextAreaElement, ChatInputProps>((pr
|
|||
|
||||
const dataTransfer = new DataTransfer();
|
||||
newFiles.forEach((file) => dataTransfer.items.add(file));
|
||||
setAttachedFiles(dataTransfer.files);
|
||||
|
||||
// Extract text from files
|
||||
extractTextFromFiles(dataTransfer.files).then((data) => {
|
||||
props.setUploadedFiles(data);
|
||||
setAttachedFiles(dataTransfer.files);
|
||||
setConvertedAttachedFiles(data);
|
||||
});
|
||||
}
|
||||
|
||||
// Set focus to the input for user message after uploading files
|
||||
chatInputRef?.current?.focus();
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import logging
|
||||
import tempfile
|
||||
from io import BytesIO
|
||||
from typing import Dict, List, Tuple
|
||||
from typing import Dict, Final, List, Tuple
|
||||
|
||||
from langchain_community.document_loaders import PyMuPDFLoader
|
||||
|
||||
|
@ -15,6 +14,9 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
|
||||
class PdfToEntries(TextToEntries):
|
||||
# Class-level constant translation table
|
||||
NULL_TRANSLATOR: Final = str.maketrans("", "", "\x00")
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
|
@ -112,8 +114,6 @@ class PdfToEntries(TextToEntries):
|
|||
|
||||
@staticmethod
|
||||
def clean_text(text: str) -> str:
|
||||
# Remove null bytes
|
||||
text = text.replace("\x00", "")
|
||||
# Replace invalid Unicode
|
||||
text = text.encode("utf-8", errors="ignore").decode("utf-8")
|
||||
return text
|
||||
"""Clean PDF text by removing null bytes and invalid Unicode characters."""
|
||||
# Use faster translation table instead of replace
|
||||
return text.translate(PdfToEntries.NULL_TRANSLATOR)
|
||||
|
|
|
@ -1133,7 +1133,6 @@ async def chat(
|
|||
online_results=online_results,
|
||||
query_images=uploaded_images,
|
||||
train_of_thought=train_of_thought,
|
||||
attached_file_context=attached_file_context,
|
||||
raw_query_files=raw_query_files,
|
||||
tracer=tracer,
|
||||
)
|
||||
|
@ -1194,7 +1193,6 @@ async def chat(
|
|||
online_results=online_results,
|
||||
query_images=uploaded_images,
|
||||
train_of_thought=train_of_thought,
|
||||
attached_file_context=attached_file_context,
|
||||
raw_query_files=raw_query_files,
|
||||
tracer=tracer,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue