33 lines
1016 B
TypeScript
33 lines
1016 B
TypeScript
export default {
|
|
noHistory: 'No History',
|
|
createChat: 'Create New Chat',
|
|
history: 'History',
|
|
only20history: 'Only showing the last 20 conversations',
|
|
question_count: 'Questions',
|
|
exportRecords: 'Export Chat Records',
|
|
chatId: 'Chat ID',
|
|
userInput: 'User Input',
|
|
passwordValidator: {
|
|
title: 'Enter password to open the link',
|
|
errorMessage1: 'Password cannot be empty',
|
|
errorMessage2: 'Incorrect password'
|
|
},
|
|
tip: {
|
|
error500Message: 'Sorry, the service is currently under maintenance. Please try again later!',
|
|
errorIdentifyMessage: 'Unable to identify user',
|
|
errorLimitMessage:
|
|
'Sorry, you have reached the maximum number of questions. Please try again tomorrow!'
|
|
},
|
|
executionDetails: {
|
|
title: 'Execution Details',
|
|
paramInput: 'Parameter Input',
|
|
paramOutput: 'Parameter Output'
|
|
},
|
|
KnowledgeSource: {
|
|
title: 'Knowledge Source',
|
|
referenceParagraph: 'Referenced Paragraph',
|
|
consume: 'Consumption',
|
|
consumeTime: 'Time Consumed'
|
|
}
|
|
}
|