first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export default {
|
||||
'ai.agent.page.title': 'Agent Management',
|
||||
'ai.agent.page.description': 'Manage AI Agent registration and status. Agents are registered via database seeder.',
|
||||
'ai.agent.update.success': 'Updated successfully',
|
||||
'ai.agent.update.failed': 'Failed to update',
|
||||
'ai.agent.empty': 'No agents registered.',
|
||||
'ai.agent.goChat': 'Chat',
|
||||
};
|
||||
@@ -0,0 +1,22 @@
|
||||
export default {
|
||||
'ai.chat.title': 'AI Chat',
|
||||
'ai.chat.newChat': 'New Chat',
|
||||
'ai.chat.placeholder': 'Type your question, press Enter to send...',
|
||||
'ai.chat.welcome.title': 'How can I help you?',
|
||||
'ai.chat.welcome.description': 'I am your AI assistant. I can answer questions, write code, analyze data, and more.',
|
||||
'ai.chat.loading': 'Thinking...',
|
||||
'ai.chat.error.send': 'Failed to send, please retry',
|
||||
'ai.chat.delete.confirm': 'Are you sure you want to delete this conversation?',
|
||||
'ai.chat.delete.success': 'Conversation deleted',
|
||||
'ai.chat.empty': 'No conversations yet, start a new chat',
|
||||
'ai.chat.copy': 'Copy',
|
||||
'ai.chat.copy.success': 'Copied to clipboard',
|
||||
'ai.chat.retry': 'Retry',
|
||||
'ai.chat.thinking': 'Deep thinking...',
|
||||
'ai.chat.thinking.done': 'Thinking completed',
|
||||
'ai.chat.attachment.upload': 'Upload file',
|
||||
'ai.chat.attachment.maxCount': 'Maximum {count} files',
|
||||
'ai.chat.attachment.error': 'File upload failed',
|
||||
'ai.chat.switchAgent': 'Switch Agent',
|
||||
'ai.chat.defaultTitle': 'AI Chat',
|
||||
};
|
||||
@@ -0,0 +1,26 @@
|
||||
export default {
|
||||
'ai.conversation.page.title': 'AI Conversation Management',
|
||||
'ai.conversation.page.description': 'Manage AI chat conversations and message records',
|
||||
'ai.conversation.id': 'Conversation ID',
|
||||
'ai.conversation.username': 'User',
|
||||
'ai.conversation.title': 'Title',
|
||||
'ai.conversation.messageCount': 'Messages',
|
||||
'ai.conversation.createdAt': 'Created At',
|
||||
'ai.conversation.updatedAt': 'Updated At',
|
||||
'ai.conversation.deleteConfirm': 'Are you sure you want to delete this conversation? All messages will be removed.',
|
||||
'ai.conversation.deleteSuccess': 'Conversation deleted',
|
||||
'ai.conversation.viewMessages': 'View Messages',
|
||||
'ai.conversation.messageTitle': 'Conversation Messages',
|
||||
'ai.conversation.noUser': 'Anonymous',
|
||||
|
||||
'ai.conversation.message.id': 'Message ID',
|
||||
'ai.conversation.message.role': 'Role',
|
||||
'ai.conversation.message.role.user': 'User',
|
||||
'ai.conversation.message.role.assistant': 'Assistant',
|
||||
'ai.conversation.message.role.system': 'System',
|
||||
'ai.conversation.message.agent': 'AI Model',
|
||||
'ai.conversation.message.content': 'Content',
|
||||
'ai.conversation.message.createdAt': 'Sent At',
|
||||
'ai.conversation.message.toolCalls': 'Tool Calls',
|
||||
'ai.conversation.message.usage': 'Usage',
|
||||
};
|
||||
Reference in New Issue
Block a user