mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Refactor UI text (#3911)
### What problem does this PR solve? Refactor UI text ### Type of change - [x] Documentation Update - [x] Refactoring Signed-off-by: jinhai <haijin.chn@gmail.com>
This commit is contained in:
@ -99,9 +99,9 @@ export default {
|
||||
disabled: 'Disable',
|
||||
action: 'Action',
|
||||
parsingStatus: 'Parsing Status',
|
||||
processBeginAt: 'Process Begin At',
|
||||
processDuration: 'Process Duration',
|
||||
progressMsg: 'Progress Msg',
|
||||
processBeginAt: 'Begin at',
|
||||
processDuration: 'Duration',
|
||||
progressMsg: 'Progress',
|
||||
testingDescription:
|
||||
'Conduct a retrieval test to check if RAGFlow can recover the intended content for the LLM.',
|
||||
similarityThreshold: 'Similarity threshold',
|
||||
@ -151,7 +151,7 @@ export default {
|
||||
chunk: 'Chunk',
|
||||
bulk: 'Bulk',
|
||||
cancel: 'Cancel',
|
||||
rerankModel: 'Rerank Model',
|
||||
rerankModel: 'Rerank model',
|
||||
rerankPlaceholder: 'Please select',
|
||||
rerankTip: `If left empty, RAGFlow will use a combination of weighted keyword similarity and weighted vector cosine similarity; if a rerank model is selected, a weighted reranking score will replace the weighted vector cosine similarity.`,
|
||||
topK: 'Top-K',
|
||||
@ -337,7 +337,7 @@ When you want to search the given knowledge base at first place, set a higher pa
|
||||
chat: 'Chat',
|
||||
newChat: 'New chat',
|
||||
send: 'Send',
|
||||
sendPlaceholder: 'Message the Assistant...',
|
||||
sendPlaceholder: 'Message the assistant...',
|
||||
chatConfiguration: 'Chat Configuration',
|
||||
chatConfigurationDescription:
|
||||
' Here, dress up a dedicated assistant for your special knowledge bases! 💕',
|
||||
@ -351,7 +351,7 @@ When you want to search the given knowledge base at first place, set a higher pa
|
||||
setAnOpener: 'Set an opener',
|
||||
setAnOpenerInitial: `Hi! I'm your assistant, what can I do for you?`,
|
||||
setAnOpenerTip: 'How do you want to welcome your clients?',
|
||||
knowledgeBases: 'Knowledgebases',
|
||||
knowledgeBases: 'Knowledge bases',
|
||||
knowledgeBasesMessage: 'Please select',
|
||||
knowledgeBasesTip: 'Select knowledgebases associated.',
|
||||
system: 'System',
|
||||
@ -389,21 +389,21 @@ When you want to search the given knowledge base at first place, set a higher pa
|
||||
topPMessage: 'Top P is required',
|
||||
topPTip:
|
||||
'Also known as “nucleus sampling,” this parameter sets a threshold to select a smaller set of words to sample from. It focuses on the most likely words, cutting off the less probable ones.',
|
||||
presencePenalty: 'Presence Penalty',
|
||||
presencePenaltyMessage: 'Presence Penalty is required',
|
||||
presencePenalty: 'Presence penalty',
|
||||
presencePenaltyMessage: 'Presence penalty is required',
|
||||
presencePenaltyTip:
|
||||
'This discourages the model from repeating the same information by penalizing words that have already appeared in the conversation.',
|
||||
frequencyPenalty: 'Frequency Penalty',
|
||||
frequencyPenaltyMessage: 'Frequency Penalty is required',
|
||||
frequencyPenalty: 'Frequency penalty',
|
||||
frequencyPenaltyMessage: 'Frequency penalty is required',
|
||||
frequencyPenaltyTip:
|
||||
'Similar to the presence penalty, this reduces the model’s tendency to repeat the same words frequently.',
|
||||
maxTokens: 'Max Tokens',
|
||||
maxTokensMessage: 'Max Tokens is required',
|
||||
maxTokens: 'Max tokens',
|
||||
maxTokensMessage: 'Max tokens is required',
|
||||
maxTokensTip:
|
||||
'This sets the maximum length of the model’s output, measured in the number of tokens (words or pieces of words).',
|
||||
maxTokensInvalidMessage: 'Please enter a valid number for Max Tokens.',
|
||||
maxTokensMinMessage: 'Max Tokens cannot be less than 0.',
|
||||
quote: 'Show Quote',
|
||||
quote: 'Show quote',
|
||||
quoteTip: 'Should the source of the original text be displayed?',
|
||||
selfRag: 'Self-RAG',
|
||||
selfRagTip: 'Please refer to: https://huggingface.co/papers/2310.11511',
|
||||
@ -461,7 +461,7 @@ When you want to search the given knowledge base at first place, set a higher pa
|
||||
password: 'Password',
|
||||
passwordDescription:
|
||||
'Please enter your current password to change your password.',
|
||||
model: 'Model Providers',
|
||||
model: 'Model providers',
|
||||
modelDescription: 'Set the model parameter and API KEY here.',
|
||||
team: 'Team',
|
||||
system: 'System',
|
||||
@ -476,7 +476,7 @@ When you want to search the given knowledge base at first place, set a higher pa
|
||||
colorSchemaPlaceholder: 'select your color schema',
|
||||
bright: 'Bright',
|
||||
dark: 'Dark',
|
||||
timezone: 'Timezone',
|
||||
timezone: 'Time zone',
|
||||
timezoneMessage: 'Please input your timezone!',
|
||||
timezonePlaceholder: 'select your timezone',
|
||||
email: 'Email address',
|
||||
@ -518,7 +518,7 @@ When you want to search the given knowledge base at first place, set a higher pa
|
||||
sequence2txtModel: 'Sequence2txt model',
|
||||
sequence2txtModelTip:
|
||||
'The default ASR model all the newly created knowledgebase will use. Use this model to translate voices to corresponding text.',
|
||||
rerankModel: 'Rerank Model',
|
||||
rerankModel: 'Rerank model',
|
||||
rerankModelTip: `The default rerank model is used to rerank chunks retrieved by users' questions.`,
|
||||
ttsModel: 'TTS Model',
|
||||
ttsModelTip:
|
||||
|
||||
Reference in New Issue
Block a user