Merge branch 'main' into feature/file-json

This commit is contained in:
JeevaRamanathan
2024-10-25 16:47:09 +05:30
committed by GitHub
5 changed files with 7 additions and 4 deletions

View File

@@ -340,7 +340,8 @@ class UploadFile(Resource):
".epub", ".epub",
".html", ".html",
".mdx", ".mdx",
".json" ".json",
".xlsx",
], ],
job_name, job_name,
final_filename, final_filename,

View File

@@ -86,7 +86,7 @@
"start": "Start Chatting", "start": "Start Chatting",
"name": "Name", "name": "Name",
"choose": "Choose Files", "choose": "Choose Files",
"info": "Please upload .pdf, .txt, .rst, .csv, .xlsx, .docx, .md, .json, .zip limited to 25mb", "info": "Please upload .pdf, .txt, .rst, .csv, .xlsx, .docx, .md, .html, .epub, .json, .zip limited to 25mb",
"uploadedFiles": "Uploaded Files", "uploadedFiles": "Uploaded Files",
"cancel": "Cancel", "cancel": "Cancel",
"train": "Train", "train": "Train",

View File

@@ -86,7 +86,7 @@
"start": "Empezar a chatear", "start": "Empezar a chatear",
"name": "Nombre", "name": "Nombre",
"choose": "Seleccionar Archivos", "choose": "Seleccionar Archivos",
"info": "Por favor, suba archivos .pdf, .txt, .rst, .docx, .md, .json, .zip limitados a 25 MB", "info": "Por favor, suba archivos .pdf, .txt, .rst, .csv, .xlsx, .docx, .md, .html, .epub, .json, .zip limitados a 25 MB",
"uploadedFiles": "Archivos Subidos", "uploadedFiles": "Archivos Subidos",
"cancel": "Cancelar", "cancel": "Cancelar",
"train": "Entrenar", "train": "Entrenar",

View File

@@ -86,7 +86,7 @@
"start": "开始聊天", "start": "开始聊天",
"name": "名称", "name": "名称",
"choose": "选择文件", "choose": "选择文件",
"info": "请上传 .pdf, .txt, .rst, .docx, .md, .json, .zip 文件,限 25MB", "info": "请上传 .pdf, .txt, .rst, .csv, .xlsx, .docx, .md, .html, .epub, .json, .zip 文件,限 25MB",
"uploadedFiles": "已上传文件", "uploadedFiles": "已上传文件",
"cancel": "取消", "cancel": "取消",
"train": "训练", "train": "训练",

View File

@@ -316,6 +316,8 @@ function Upload({
['.docx'], ['.docx'],
'application/json': ['.json'], 'application/json': ['.json'],
'text/csv': ['.csv'], 'text/csv': ['.csv'],
'text/html': ['.html'],
'application/epub+zip': ['.epub'],
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': [ 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': [
'.xlsx', '.xlsx',
], ],