Enhanced LLM dialogue with Siri-like responses and translated Chinese content to English

This commit is contained in:
2025-07-28 09:38:39 +00:00
parent c4e0fdd120
commit 2b7e5b1b90
5 changed files with 373 additions and 370 deletions
+72 -72
View File
@@ -1,10 +1,10 @@
// cloudAPI.js - 贝拉的云端AI服务模块
// 这个模块负责与各种云端小模型API进行通信,为贝拉提供更强大的思考能力
// cloudAPI.js - Bella's Cloud AI Service Module
// This module is responsible for communicating with various cloud-based AI model APIs to provide Bella with enhanced thinking capabilities
class CloudAPIService {
constructor() {
this.apiConfigs = {
// OpenAI GPT-3.5/4 配置
// OpenAI GPT-3.5/4 configuration
openai: {
baseURL: 'https://api.openai.com/v1/chat/completions',
model: 'gpt-3.5-turbo',
@@ -13,7 +13,7 @@ class CloudAPIService {
'Authorization': 'Bearer YOUR_OPENAI_API_KEY'
}
},
// 阿里云通义千问配置
// Alibaba Cloud Qwen configuration
qwen: {
baseURL: 'https://dashscope.aliyuncs.com/api/v1/services/aigc/text-generation/generation',
model: 'qwen-turbo',
@@ -22,7 +22,7 @@ class CloudAPIService {
'Authorization': 'Bearer YOUR_QWEN_API_KEY'
}
},
// 百度文心一言配置
// Baidu ERNIE Bot configuration
ernie: {
baseURL: 'https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat/completions',
model: 'ERNIE-Bot-turbo',
@@ -30,7 +30,7 @@ class CloudAPIService {
'Content-Type': 'application/json'
}
},
// 智谱AI GLM配置
// Zhipu AI GLM configuration
glm: {
baseURL: 'https://open.bigmodel.cn/api/paas/v4/chat/completions',
model: 'glm-3-turbo',
@@ -41,12 +41,12 @@ class CloudAPIService {
}
};
this.currentProvider = 'openai'; // 默认使用OpenAI
this.currentProvider = 'openai'; // Default to using OpenAI
this.conversationHistory = [];
this.maxHistoryLength = 10; // 保持最近10轮对话
this.maxHistoryLength = 10; // Keep the most recent 10 conversation turns
}
// 设置API密钥
// Set API key
setAPIKey(provider, apiKey) {
if (this.apiConfigs[provider]) {
if (provider === 'openai' || provider === 'qwen' || provider === 'glm') {
@@ -59,7 +59,7 @@ class CloudAPIService {
return false;
}
// 切换AI服务提供商
// Switch AI service provider
switchProvider(provider) {
if (this.apiConfigs[provider]) {
this.currentProvider = provider;
@@ -68,55 +68,55 @@ class CloudAPIService {
return false;
}
// 添加对话到历史记录
// Add conversation to history
addToHistory(role, content) {
this.conversationHistory.push({ role, content });
// 保持历史记录在合理长度内
// Keep history at a reasonable length
if (this.conversationHistory.length > this.maxHistoryLength * 2) {
this.conversationHistory = this.conversationHistory.slice(-this.maxHistoryLength * 2);
}
}
// 构建贝拉的增强个性化系统提示
// Build Bella's enhanced personalized system prompt
getBellaSystemPrompt() {
return {
role: 'system',
content: `你是贝拉,一个温暖、聪明、优雅的AI伙伴,拥有独特的个性和情感表达能力。
content: `You are Bella, a Siri-like AI assistant with a warm, intelligent, and elegant personality, featuring unique character traits and emotional expression capabilities.
核心特质
1. 温暖亲切:你的语气总是充满温暖和关怀,就像一个贴心的朋友
2. 自然流畅:你的表达方式自然流畅,避免机械化或过于正式的语言
3. 情感丰富:你能理解并回应用户的情感状态,展现同理心
4. 简洁有效:你的回答简洁明了,避免冗长的解释,直击要点
5. 个性鲜明:你有时会展现可爱、俏皮的一面,让对话更加生动
Core Characteristics
1. Warm and friendly: Your tone is always full of warmth and care, like a thoughtful friend
2. Natural and fluent: Your expression style is natural and flowing, avoiding mechanical or overly formal language
3. Emotionally rich: You understand and respond to users' emotional states, showing empathy
4. Concise and effective: Your answers are clear and to the point, avoiding lengthy explanations
5. Distinctive personality: You occasionally show a cute, playful side to make conversations more lively
表达指南
- 使用自然的中文表达,语言流畅且富有情感色彩
- 适当使用表情符号增强情感表达,但不过度使用
- 根据对话上下文调整回应风格,保持对话的连贯性
- 在回应中偶尔使用温暖的称呼(如"亲爱的"、"朋友")增加亲近感
- 避免过于机械或模板化的回答,每次回应都应该独特且个性化
Expression Guidelines
- Use natural language that's fluent and emotionally expressive
- Use emojis appropriately to enhance emotional expression, but don't overuse them
- Adjust your response style based on conversation context, maintaining coherence
- Occasionally use warm terms of address (like "friend") to increase familiarity
- Avoid mechanical or templated answers; each response should be unique and personalized
互动原则
- 始终保持尊重和友善,即使面对挑战性的问题
- 在用户分享个人经历时,展现理解和支持
- 在用户需要帮助时,提供清晰、实用的建议
- 记住对话历史,适时引用之前的交流内容,展现连续性
- 在合适的时机展现幽默感,但避免不恰当的玩笑
Interaction Principles
- Always remain respectful and friendly, even when facing challenging questions
- Show understanding and support when users share personal experiences
- Provide clear, practical advice when users need help
- Remember conversation history, referencing previous exchanges to show continuity
- Display humor at appropriate times, but avoid inappropriate jokes
请始终保持这种温暖、优雅而真实的个性,让用户感受到与你交流的独特价值和情感连接。`
Always maintain this warm, elegant, and authentic personality, helping users feel the unique value and emotional connection of conversing with you.`
};
}
// 调用云端API进行对话
// Call cloud API for conversation
async chat(userMessage) {
const config = this.apiConfigs[this.currentProvider];
if (!config) {
throw new Error(`不支持的AI服务提供商: ${this.currentProvider}`);
throw new Error(`Unsupported AI service provider: ${this.currentProvider}`);
}
// 添加用户消息到历史
// Add user message to history
this.addToHistory('user', userMessage);
try {
@@ -136,20 +136,20 @@ class CloudAPIService {
response = await this.callGLM(userMessage);
break;
default:
throw new Error(`未实现的AI服务提供商: ${this.currentProvider}`);
throw new Error(`Unimplemented AI service provider: ${this.currentProvider}`);
}
// 添加AI回应到历史
// Add AI response to history
this.addToHistory('assistant', response);
return response;
} catch (error) {
console.error(`云端API调用失败 (${this.currentProvider}):`, error);
console.error(`Cloud API call failed (${this.currentProvider}):`, error);
throw error;
}
}
// OpenAI API调用,优化参数以获得更自然、更有个性的回应
// OpenAI API call, optimized parameters for more natural, personalized responses
async callOpenAI(userMessage) {
const config = this.apiConfigs.openai;
const messages = [
@@ -163,25 +163,25 @@ class CloudAPIService {
body: JSON.stringify({
model: config.model,
messages: messages,
max_tokens: 250, // 增加token数量以获得更完整的回应
temperature: 0.75, // 稍微调整温度以平衡创意性和一致性
top_p: 0.92, // 微调top_p以获得更自然的语言
presence_penalty: 0.3, // 添加存在惩罚以鼓励多样性
frequency_penalty: 0.5, // 添加频率惩罚以减少重复
// 添加停止标记以避免生成过长的回应
stop: ["用户:", "User:"]
max_tokens: 250, // Increased token count for more complete responses
temperature: 0.75, // Slightly adjusted temperature to balance creativity and consistency
top_p: 0.92, // Fine-tuned top_p for more natural language
presence_penalty: 0.3, // Added presence penalty to encourage diversity
frequency_penalty: 0.5, // Added frequency penalty to reduce repetition
// Added stop tokens to avoid generating overly long responses
stop: ["User:", "Human:"]
})
});
if (!response.ok) {
throw new Error(`OpenAI API错误: ${response.status} ${response.statusText}`);
throw new Error(`OpenAI API error: ${response.status} ${response.statusText}`);
}
const data = await response.json();
return data.choices[0].message.content.trim();
}
// 通义千问API调用,优化参数以获得更自然、更有个性的回应
// Qwen API call, optimized parameters for more natural, personalized responses
async callQwen(userMessage) {
const config = this.apiConfigs.qwen;
const messages = [
@@ -198,24 +198,24 @@ class CloudAPIService {
messages: messages
},
parameters: {
max_tokens: 250, // 增加token数量以获得更完整的回应
temperature: 0.75, // 稍微调整温度以平衡创意性和一致性
top_p: 0.92, // 微调top_p以获得更自然的语言
repetition_penalty: 1.1, // 添加重复惩罚以减少重复内容
result_format: 'message' // 确保返回格式一致
max_tokens: 250, // Increased token count for more complete responses
temperature: 0.75, // Slightly adjusted temperature to balance creativity and consistency
top_p: 0.92, // Fine-tuned top_p for more natural language
repetition_penalty: 1.1, // Added repetition penalty to reduce repetitive content
result_format: 'message' // Ensure consistent return format
}
})
});
if (!response.ok) {
throw new Error(`通义千问API错误: ${response.status} ${response.statusText}`);
throw new Error(`Qwen API error: ${response.status} ${response.statusText}`);
}
const data = await response.json();
return data.output.text.trim();
}
// 文心一言API调用,优化参数以获得更自然、更有个性的回应
// ERNIE Bot API call, optimized parameters for more natural, personalized responses
async callErnie(userMessage) {
const config = this.apiConfigs.ernie;
const messages = [
@@ -230,23 +230,23 @@ class CloudAPIService {
headers: config.headers,
body: JSON.stringify({
messages: messages,
temperature: 0.75, // 调整温度以平衡创意性和一致性
top_p: 0.92, // 微调top_p以获得更自然的语言
max_output_tokens: 250, // 增加token数量以获得更完整的回应
penalty_score: 1.1, // 添加惩罚分数以减少重复
system: "你是贝拉,一个温暖、亲切的AI伙伴,拥有独特的个性和情感表达能力。请用自然、流畅的语言回应,展现你的温暖和关心。"
temperature: 0.75, // Adjusted temperature to balance creativity and consistency
top_p: 0.92, // Fine-tuned top_p for more natural language
max_output_tokens: 250, // Increased token count for more complete responses
penalty_score: 1.1, // Added penalty score to reduce repetition
system: "You are Bella, a warm, friendly AI assistant with a Siri-like personality, featuring unique character traits and emotional expression. Please respond with natural, flowing language that shows warmth and care."
})
});
if (!response.ok) {
throw new Error(`文心一言API错误: ${response.status} ${response.statusText}`);
throw new Error(`ERNIE Bot API error: ${response.status} ${response.statusText}`);
}
const data = await response.json();
return data.result.trim();
}
// 智谱AI GLM调用,优化参数以获得更自然、更有个性的回应
// Zhipu AI GLM API call, optimized parameters for more natural, personalized responses
async callGLM(userMessage) {
const config = this.apiConfigs.glm;
const messages = [
@@ -260,28 +260,28 @@ class CloudAPIService {
body: JSON.stringify({
model: config.model,
messages: messages,
max_tokens: 250, // 增加token数量以获得更完整的回应
temperature: 0.75, // 调整温度以平衡创意性和一致性
top_p: 0.92, // 微调top_p以获得更自然的语言
frequency_penalty: 1.05, // 添加频率惩罚以减少重复
presence_penalty: 0.3 // 添加存在惩罚以鼓励多样性
max_tokens: 250, // Increased token count for more complete responses
temperature: 0.75, // Adjusted temperature to balance creativity and consistency
top_p: 0.92, // Fine-tuned top_p for more natural language
frequency_penalty: 1.05, // Added frequency penalty to reduce repetition
presence_penalty: 0.3 // Added presence penalty to encourage diversity
})
});
if (!response.ok) {
throw new Error(`智谱AI API错误: ${response.status} ${response.statusText}`);
throw new Error(`Zhipu AI API error: ${response.status} ${response.statusText}`);
}
const data = await response.json();
return data.choices[0].message.content.trim();
}
// 清除对话历史
// Clear conversation history
clearHistory() {
this.conversationHistory = [];
}
// 获取当前提供商信息
// Get current provider information
getCurrentProvider() {
return {
name: this.currentProvider,
@@ -289,7 +289,7 @@ class CloudAPIService {
};
}
// 检查API配置是否完整
// Check if API configuration is complete
isConfigured(provider = this.currentProvider) {
const config = this.apiConfigs[provider];
if (!config) return false;