2025-01-20 03:28:53 +00:00
export default {
uploadDocument : 'Upload Document' ,
importDocument : 'Import Document' ,
syncDocument : 'Sync Document' ,
selected : 'Selected' ,
items : 'Items' ,
searchBar : {
2025-01-22 07:06:30 +00:00
placeholder : 'Search by document name'
2025-01-20 03:28:53 +00:00
} ,
setting : {
2025-01-21 08:46:18 +00:00
migration : 'Move' ,
2025-01-20 03:28:53 +00:00
cancelGenerateQuestion : 'Cancel Generating Questions' ,
cancelVectorization : 'Cancel Vectorization' ,
cancelGenerate : 'Cancel Generation'
} ,
tip : {
saveMessage : 'Current changes have not been saved. Confirm exit?' ,
2025-02-06 07:15:23 +00:00
cancelSuccess : 'Successful' ,
sendMessage : 'Successful' ,
vectorizationSuccess : 'Successful' ,
2025-01-23 07:06:19 +00:00
nameMessage : 'Document name cannot be empty!' ,
2025-02-06 07:15:23 +00:00
importMessage : 'Successful' ,
migrationSuccess : 'Successful'
2025-01-20 03:28:53 +00:00
} ,
upload : {
selectFile : 'Select File' ,
selectFiles : 'Select Folder' ,
uploadMessage : 'Drag and drop files here to upload or' ,
formats : 'Supported formats:' ,
requiredMessage : 'Please upload a file' ,
2025-01-23 04:10:03 +00:00
errorMessage1 : 'The file size exceeds 100mb' ,
2025-01-20 03:28:53 +00:00
errorMessage2 : 'Unsupported file format' ,
errorMessage3 : 'File cannot be empty' ,
errorMessage4 : 'Up to 50 files can be uploaded at once' ,
template : 'Template' ,
download : 'Download'
} ,
fileType : {
txt : {
label : 'Text File' ,
2025-02-06 07:15:23 +00:00
tip1 : '1. It is recommended to standardize the segment markers in the file before uploading.' ,
2025-01-22 08:46:12 +00:00
tip2 : '2. Up to 50 files can be uploaded at once, with each file not exceeding 100MB.'
2025-01-20 03:28:53 +00:00
} ,
table : {
label : 'Table' ,
tip1 : '1. Click to download the corresponding template and complete the information:' ,
tip2 : '2. The first row must be column headers, and the column headers must be meaningful terms. Each record in the table will be treated as a segment.' ,
tip3 : '3. Each sheet in the uploaded spreadsheet file will be treated as a document, with the sheet name as the document name.' ,
2025-01-22 08:46:12 +00:00
tip4 : '4. Up to 50 files can be uploaded at once, with each file not exceeding 100MB.'
2025-01-20 03:28:53 +00:00
} ,
QA : {
label : 'QA Pairs' ,
2025-01-22 08:46:12 +00:00
tip1 : '1. Click to download the corresponding template and complete the information:' ,
2025-01-20 03:28:53 +00:00
tip2 : '2. Each sheet in the uploaded spreadsheet file will be treated as a document, with the sheet name as the document name.' ,
2025-01-22 08:46:12 +00:00
tip3 : '3. Up to 50 files can be uploaded at once, with each file not exceeding 100MB.'
2025-01-20 03:28:53 +00:00
}
} ,
setRules : {
title : {
setting : 'Set Segment Rules' ,
2025-02-06 07:15:23 +00:00
preview : 'Preview'
2025-01-20 03:28:53 +00:00
} ,
intelligent : {
2025-02-06 07:15:23 +00:00
label : 'Automatic Segmentation (Recommended)' ,
text : 'If you are unsure how to set segmentation rules, it is recommended to use automatic segmentation.'
2025-01-20 03:28:53 +00:00
} ,
advanced : {
label : 'Advanced Segmentation' ,
text : 'Users can customize segmentation delimiters, segment length, and cleaning rules based on document standards.'
} ,
patterns : {
label : 'Segment Delimiters' ,
2025-01-20 06:21:30 +00:00
tooltip :
'Recursively split according to the selected symbols in order. If the split result exceeds the segment length, it will be truncated to the segment length.' ,
2025-01-20 03:28:53 +00:00
placeholder : 'Please select'
} ,
limit : {
label : 'Segment Length'
} ,
with_filter : {
label : 'Auto Clean' ,
2025-01-21 09:57:31 +00:00
text : 'Remove duplicate extra symbols, spaces, blank lines, and tab words.'
2025-01-20 03:28:53 +00:00
} ,
checkedConnect : {
2025-01-20 06:21:30 +00:00
label :
2025-02-05 07:35:25 +00:00
'Add "Related Questions" section for question-based QA pairs during import.'
2025-01-20 03:28:53 +00:00
}
} ,
buttons : {
prev : 'Previous' ,
next : 'Next' ,
import : 'Start Import' ,
2025-02-06 07:15:23 +00:00
preview : 'Apply'
2025-01-20 03:28:53 +00:00
} ,
table : {
2025-01-23 07:06:19 +00:00
name : 'Document Name' ,
2025-02-06 08:13:23 +00:00
char_length : 'Character' ,
2025-01-20 03:28:53 +00:00
paragraph : 'Segment' ,
all : 'All' ,
updateTime : 'Update Time'
} ,
fileStatus : {
label : 'File Status' ,
SUCCESS : 'Success' ,
FAILURE : 'Failure' ,
EMBEDDING : 'Indexing' ,
2025-02-06 07:15:23 +00:00
PENDING : 'Queuing' ,
2025-01-20 03:28:53 +00:00
GENERATE : 'Generating' ,
SYNC : 'Syncing' ,
2025-01-22 08:46:12 +00:00
REVOKE : 'Cancelling' ,
finish : 'Finish'
2025-01-20 03:28:53 +00:00
} ,
enableStatus : {
2025-01-20 10:00:53 +00:00
label : 'Status' ,
2025-01-20 03:28:53 +00:00
enable : 'Enabled' ,
close : 'Disabled'
} ,
sync : {
label : 'Sync' ,
2025-01-22 07:06:30 +00:00
confirmTitle : 'Confirm sync document?' ,
2025-01-20 06:21:30 +00:00
confirmMessage1 :
'Syncing will delete existing data and retrieve new data. Please proceed with caution.' ,
2025-01-20 03:28:53 +00:00
confirmMessage2 : 'Cannot sync, please set the document URL first.' ,
2025-02-06 07:15:23 +00:00
successMessage : 'Successful'
2025-01-20 03:28:53 +00:00
} ,
delete : {
2025-01-22 07:06:30 +00:00
confirmTitle1 : 'Confirm batch deletion of' ,
2025-02-05 07:35:25 +00:00
confirmTitle2 : 'documents?' ,
2025-01-20 06:21:30 +00:00
confirmMessage :
'Segments within the selected documents will also be deleted. Please proceed with caution.' ,
2025-02-06 07:15:23 +00:00
successMessage : 'Successful' ,
2025-01-22 07:06:30 +00:00
confirmTitle3 : 'Confirm deleting document:' ,
2025-01-21 11:24:56 +00:00
confirmMessage1 : 'Under this document' ,
confirmMessage2 : 'All segments will be deleted, please operate with caution. '
2025-01-20 03:28:53 +00:00
} ,
form : {
source_url : {
label : 'Document URL' ,
2025-01-22 07:06:30 +00:00
placeholder : 'Enter document URL, one per line. Incorrect URL will cause import failure.' ,
2025-01-20 03:28:53 +00:00
requiredMessage : 'Please enter a document URL'
} ,
selector : {
label : 'Selector' ,
placeholder : 'Default is body, you can input .classname/#idname/tagname'
} ,
hit_handling_method : {
2025-02-05 07:35:25 +00:00
label : 'Retrieve-Respond' ,
2025-01-20 03:28:53 +00:00
tooltip : 'When user asks a question, handle matched segments according to the set method.'
} ,
similarity : {
label : 'Similarity Higher Than' ,
placeholder : 'Directly return segment content' ,
requiredMessage : 'Please enter similarity value'
} ,
selectVectorization : {
label : 'Select Vectorization Content' ,
error : 'Segments that failed vectorization' ,
all : 'All Segments'
}
2025-01-20 06:21:30 +00:00
} ,
hitHandlingMethod : {
optimization : 'Model optimization' ,
2025-02-06 07:15:23 +00:00
directly_return : 'Respond directly'
2025-01-20 06:21:30 +00:00
} ,
generateQuestion : {
title : 'Generate Questions' ,
2025-02-06 07:15:23 +00:00
successMessage : 'Successful' ,
2025-01-20 06:21:30 +00:00
tip1 : 'The {data} in the prompt is a placeholder for segmented content, which is replaced by the segmented content when executed and sent to the AI model;' ,
2025-01-21 11:24:56 +00:00
tip2 : 'The AI model generates relevant questions based on the segmented content. Please place the generated questions within the' ,
2025-02-08 09:13:28 +00:00
tip3 : 'tags, and the system will automatically relate the questions within these tags;' ,
2025-01-21 11:24:56 +00:00
tip4 : 'The generation effect depends on the selected model and prompt. Users can adjust to achieve the best effect.' ,
prompt1 :
'Content: {data}\n \n Please summarize the above content and generate a summary based on the content 5 a question. \nAnswer requirements: \n - Please output only questions; \n - Please place each question in' ,
prompt2 : 'tag.'
2025-01-20 03:28:53 +00:00
}
}