You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure why, but after this commit, the application is using the file-uploader located in the "cl" directory instead of its own. This seems to be where the issue lies. personal (Workspace)/e:\Workspace\AI\llm\rag\chat-llamaindex\app\components\ui\file-uploader.tsx:61
consthandleUpload=async(file: FileWrap)=>{
personal (Workspace)\Workspace\AI\llm\rag\chat-llamaindex\cl\app\components\ui\file-uploader.tsx:62
consthandleUpload=async(file: File)=>{constonFileUploadError=onFileError||window.alert;constfileExtension=file.name.split(".").pop()||"";constextensionFileError=checkExtension(fileExtension);if(extensionFileError){returnonFileUploadError(extensionFileError);}if(isFileSizeExceeded(file)){returnonFileUploadError(`File size exceeded. Limit is ${fileSizeLimit/1024/1024} MB`,);}awaitonFileUpload(file);};
The text was updated successfully, but these errors were encountered:
@hkvincent file upload is now implemented in #101 - it's not working on https://chat.llamaindex.ai/ at the moment though as it's requires a dedicated vector store (coming soon)
After the commit below, the upload button only works for CSV and image files.
feat: use create-llama chat session (https://github.com/run-llama/chat-llamaindex/pull/94[)](https://github.com/run-llama/chat-llamaindex/commit/5c16a343eab3daaefa363a8d450df972757f64ff)
I'm not sure why, but after this commit, the application is using the file-uploader located in the "cl" directory instead of its own. This seems to be where the issue lies.
personal (Workspace)/e:\Workspace\AI\llm\rag\chat-llamaindex\app\components\ui\file-uploader.tsx:61
personal (Workspace)\Workspace\AI\llm\rag\chat-llamaindex\cl\app\components\ui\file-uploader.tsx:62
The text was updated successfully, but these errors were encountered: