UnisKB/ui/src/locales/lang/en-US/views/model.ts

83 lines
2.9 KiB
TypeScript
Raw Normal View History

2025-04-16 11:10:00 +00:00
export default {
title: 'Models',
provider: 'Provider',
providerPlaceholder: 'Select Provider',
addModel: 'Add Model',
searchBar: {
2025-05-13 11:18:27 +00:00
placeholder: 'Search by name',
2025-04-16 11:10:00 +00:00
},
delete: {
confirmTitle: 'Delete Model',
2025-05-13 11:18:27 +00:00
confirmMessage: 'Are you sure you want to delete the model:',
2025-04-16 11:10:00 +00:00
},
tip: {
createSuccessMessage: 'Model created successfully',
createErrorMessage: 'There are errors in the basic information',
errorMessage: 'Variable already exists: ',
emptyMessage1: 'Please select the model type and base model in the basic information first',
emptyMessage2: 'The selected model does not support parameter settings',
updateSuccessMessage: 'Model updated successfully',
saveSuccessMessage: 'Model parameters saved successfully',
downloadError: 'Download failed',
2025-05-13 11:18:27 +00:00
noModel: 'Model does not exist in Ollama',
2025-04-16 11:10:00 +00:00
},
model: {
allModel: 'All Models',
publicModel: 'Public Models',
privateModel: 'Private Models',
LLM: 'LLM',
EMBEDDING: 'Embedding Model',
RERANKER: 'Rerank',
STT: 'Speech2Text',
TTS: 'TTS',
IMAGE: 'Vision Model',
2025-05-13 11:18:27 +00:00
TTI: 'Image Generation',
2025-04-16 11:10:00 +00:00
},
2025-04-28 10:14:16 +00:00
modelForm: {
2025-04-16 11:10:00 +00:00
title: {
baseInfo: 'Basic Information',
advancedInfo: 'Advanced Settings',
modelParams: 'Model Parameters',
paramSetting: 'Model Parameter Settings',
2025-05-13 11:18:27 +00:00
apiParamPassing: 'Interface Parameters',
},
modeName: {
label: 'Model Name',
placeholder: 'Set a name for the base model',
tooltip: 'Custom model name in MaxKB',
requiredMessage: 'Model name cannot be empty',
},
permissionType: {
label: 'Permission',
privateDesc: 'Available only to current user',
publicDesc: 'Available to all users',
requiredMessage: 'Permission cannot be empty',
},
model_type: {
label: 'Model Type',
placeholder: 'Select a model type',
tooltip1: 'LLM: An inference model for AI chats in the APP.',
tooltip2: 'Embedding Model: A model for vectorizing document content in the knowledge.',
tooltip3: 'Speech2Text: A model used for speech recognition in the APP.',
tooltip4: 'TTS: A model used for TTS in the APP.',
tooltip5:
'Rerank: A model used to reorder candidate segments when using multi-route recall in advanced orchestration APP.',
tooltip6:
'Vision Model: A visual model used for image understanding in advanced orchestration APP.',
tooltip7:
'Image Generation: A visual model used for image generation in advanced orchestration APP.',
requiredMessage: 'Model type cannot be empty',
},
base_model: {
label: 'Base Model',
tooltip: 'For models not listed, enter the model name and press Enter',
placeholder: 'Enter the base model name and press Enter to add',
requiredMessage: 'Base model cannot be empty',
2025-04-16 11:10:00 +00:00
},
},
download: {
downloading: 'Downloading...',
2025-05-13 11:18:27 +00:00
cancelDownload: 'Cancel Download',
},
2025-04-16 11:10:00 +00:00
}