| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662 |
- import axios from 'axios'
- import type {
- Recipe,
- CuisineType,
- NutritionAnalysis,
- WinePairing,
- SauceRecipe,
- SaucePreference,
- CustomSauceRequest,
- FortuneResult,
- DailyFortuneParams,
- MoodFortuneParams,
- CoupleFortuneParams,
- NumberFortuneParams
- } from '@/types'
- import { getTextGenerationConfig } from '@/utils/apiConfig'
- // 创建动态axios实例
- const createAiClient = () => {
- const config = getTextGenerationConfig()
- return axios.create({
- baseURL: config.baseUrl,
- timeout: config.timeout,
- headers: {
- 'Content-Type': 'application/json',
- Authorization: `Bearer ${config.apiKey}`
- }
- })
- }
- /**
- * 调用AI接口生成菜谱
- * @param ingredients 食材列表
- * @param cuisine 菜系信息
- * @param customPrompt 自定义提示词(可选)
- * @returns Promise<Recipe>
- */
- export const generateRecipe = async (ingredients: string[], cuisine: CuisineType, customPrompt?: string): Promise<Recipe> => {
- try {
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- // 构建提示词
- let prompt = `${cuisine.prompt}
- 用户提供的食材:${ingredients.join('、')}`
- // 如果有自定义要求,添加到提示词中
- if (customPrompt) {
- prompt += `
- 用户的特殊要求:${customPrompt}`
- }
- prompt += `
- 请按照以下JSON格式返回菜谱,不包含营养分析和酒水搭配:
- {
- "name": "菜品名称",
- "ingredients": ["食材1", "食材2"],
- "steps": [
- {
- "step": 1,
- "description": "步骤描述",
- "time": 5,
- "temperature": "中火"
- }
- ],
- "cookingTime": 30,
- "difficulty": "medium",
- "tips": ["技巧1", "技巧2"]
- }`
- // 调用AI接口
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的厨师,请根据用户提供的食材和菜系要求,生成详细的菜谱。请严格按照JSON格式返回,不要包含任何其他文字。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: apiConfig.temperature,
- stream: false
- })
- // 解析AI响应
- const aiResponse = response.data.choices[0].message.content
- // 清理响应内容,提取JSON部分
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const recipeData = JSON.parse(cleanResponse)
- // 构建完整的Recipe对象
- const recipe: Recipe = {
- id: `recipe-${cuisine.id}-${Date.now()}`,
- name: recipeData.name || `${cuisine.name}推荐菜品`,
- cuisine: cuisine.name,
- ingredients: recipeData.ingredients || ingredients,
- steps: recipeData.steps || [
- { step: 1, description: '准备所有食材', time: 5 },
- { step: 2, description: '按照传统做法烹饪', time: 20 }
- ],
- cookingTime: recipeData.cookingTime || 25,
- difficulty: recipeData.difficulty || 'medium',
- tips: recipeData.tips || ['注意火候控制', '调味要适中'],
- nutritionAnalysis: undefined,
- winePairing: undefined
- }
- return recipe
- } catch (error) {
- console.error(`生成${cuisine.name}菜谱失败:`, error)
- // 检查是否是400错误或其他特定错误
- if (error && typeof error === 'object' && 'response' in error) {
- const axiosError = error as any
- if (axiosError.response?.status === 400) {
- throw new Error(`${cuisine.name}表示这个食材搭配太有挑战性了`)
- }
- }
- // 抛出友好的错误信息
- throw new Error(`${cuisine.name}暂时学不会这道菜`)
- }
- }
- /**
- * 生成一桌菜的菜单
- * @param config 一桌菜配置
- * @returns Promise<DishInfo[]>
- */
- export const generateTableMenu = async (config: {
- dishCount: number
- flexibleCount: boolean
- tastes: string[]
- cuisineStyle: string
- diningScene: string
- nutritionFocus: string
- customRequirement: string
- customDishes: string[]
- }): Promise<
- Array<{
- name: string
- description: string
- category: string
- tags: string[]
- }>
- > => {
- try {
- // 构建提示词
- const tasteText = config.tastes.length > 0 ? config.tastes.join('、') : '适中'
- const sceneMap = {
- family: '家庭聚餐',
- friends: '朋友聚会',
- romantic: '浪漫晚餐',
- business: '商务宴请',
- festival: '节日庆祝',
- casual: '日常用餐'
- }
- const nutritionMap = {
- balanced: '营养均衡',
- protein: '高蛋白',
- vegetarian: '素食为主',
- low_fat: '低脂健康',
- comfort: '滋补养生'
- }
- const styleMap = {
- mixed: '混合菜系',
- chinese: '中式为主',
- western: '西式为主',
- japanese: '日式为主'
- }
- const styleText = (styleMap as Record<string, string>)[config.cuisineStyle] || '混合菜系'
- const sceneText = (sceneMap as Record<string, string>)[config.diningScene] || '家庭聚餐'
- const nutritionText = (nutritionMap as Record<string, string>)[config.nutritionFocus] || '营养均衡'
- let prompt = `请为我设计一桌菜,要求如下:
- - ${config.flexibleCount ? `参考菜品数量:${config.dishCount}道菜(可以根据实际情况智能调整,重点是搭配合理)` : `菜品数量:${config.dishCount}道菜(请严格按照这个数量生成)`}
- - 口味偏好:${tasteText}
- - 菜系风格:${styleText}
- - 用餐场景:${sceneText}
- - 营养搭配:${nutritionText}`
- if (config.customDishes.length > 0) {
- prompt += `\n- ${config.flexibleCount ? '优先考虑的菜品' : '必须包含的菜品'}:${config.customDishes.join('、')}${
- config.flexibleCount ? '(可以作为参考,根据搭配需要决定是否全部包含)' : '(请确保这些菜品都包含在菜单中)'
- }`
- }
- if (config.customRequirement) {
- prompt += `\n- 特殊要求:${config.customRequirement}`
- }
- if (config.flexibleCount) {
- prompt += `
- 智能搭配原则:
- 1. 菜品数量可以灵活调整(建议在${Math.max(2, config.dishCount - 2)}-${config.dishCount + 2}道之间),重点是搭配合理、营养均衡
- 2. 每道菜应该有独特的特色,避免食材和口味重复过多
- 3. 如果指定的菜品较少或重复度高,可以适当减少总菜品数量,确保每道菜都有特色
- 4. 优先考虑菜品的多样性和营养搭配,而不是强制凑够指定数量
- 5. 合理搭配不同类型的菜品:主菜、素菜、汤品、凉菜、主食等
- 6. 避免出现重复搭配,每道菜都应该有独特价值`
- } else {
- prompt += `
- 固定数量原则:
- 1. 严格按照${config.dishCount}道菜的数量生成菜单
- 2. 确保菜品搭配合理,营养均衡
- 3. 每道菜都有独特特色,尽量避免食材重复
- 4. 合理分配不同类型的菜品:主菜、素菜、汤品、凉菜、主食等`
- }
- prompt += `
- 请按照以下JSON格式返回菜单:
- {
- "dishes": [
- {
- "name": "菜品名称",
- "description": "菜品简介和特色描述",
- "category": "主菜/素菜/汤品/凉菜/主食/甜品",
- "tags": ["标签1", "标签2", "标签3"]
- }
- ]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位专业的菜单设计师,擅长根据不同场景和需求搭配合理的菜品组合。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答,包括菜名也要翻译成中文'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.8,
- stream: false
- })
- // 解析AI响应
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const menuData = JSON.parse(cleanResponse)
- return menuData.dishes || []
- } catch (error) {
- console.error('生成一桌菜菜单失败:', error)
- throw new Error('大厨表示这个菜单搭配太有挑战性了,请稍后重试')
- }
- }
- /**
- * 为一桌菜中的单个菜品生成详细菜谱
- * @param dishName 菜品名称
- * @param dishDescription 菜品描述
- * @param category 菜品分类
- * @returns Promise<Recipe>
- */
- export const generateDishRecipe = async (dishName: string, dishDescription: string, category: string): Promise<Recipe> => {
- try {
- const prompt = `请为以下菜品生成详细的菜谱:
- 菜品名称:${dishName}
- 菜品描述:${dishDescription}
- 菜品分类:${category}
- 请按照以下JSON格式返回菜谱:
- {
- "name": "菜品名称",
- "ingredients": ["食材1", "食材2"],
- "steps": [
- {
- "step": 1,
- "description": "步骤描述",
- "time": 5,
- "temperature": "中火"
- }
- ],
- "cookingTime": 30,
- "difficulty": "easy/medium/hard",
- "tips": ["技巧1", "技巧2"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的厨师,请根据菜品信息生成详细的制作菜谱。请严格按照JSON格式返回,不要包含任何其他文字。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: apiConfig.temperature,
- stream: false
- })
- // 解析AI响应
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const recipeData = JSON.parse(cleanResponse)
- const recipe: Recipe = {
- id: `dish-recipe-${Date.now()}`,
- name: recipeData.name || dishName,
- cuisine: category,
- ingredients: recipeData.ingredients || ['主要食材', '调料'],
- steps: recipeData.steps || [
- { step: 1, description: '准备食材', time: 5 },
- { step: 2, description: '开始制作', time: 15 }
- ],
- cookingTime: recipeData.cookingTime || 20,
- difficulty: recipeData.difficulty || 'medium',
- tips: recipeData.tips || ['注意火候', '调味适中']
- }
- return recipe
- } catch (error) {
- console.error('生成菜品菜谱失败:', error)
- throw new Error('大厨表示这道菜太有挑战性了,请稍后重试')
- }
- }
- // 使用自定义提示词生成菜谱
- export const generateCustomRecipe = async (ingredients: string[], customPrompt: string): Promise<Recipe> => {
- try {
- const prompt = `你是一位专业的厨师,请根据用户提供的食材和特殊要求,生成详细的菜谱。请严格按照JSON格式返回,不要包含任何其他文字。
- 用户提供的食材:${ingredients.join('、')}
- 用户的特殊要求:${customPrompt}
- 请按照以下JSON格式返回菜谱,不包含营养分析和酒水搭配:
- {
- "name": "菜品名称",
- "ingredients": ["食材1", "食材2"],
- "steps": [
- {
- "step": 1,
- "description": "步骤描述",
- "time": 5,
- "temperature": "中火"
- }
- ],
- "cookingTime": 30,
- "difficulty": "medium",
- "tips": ["技巧1", "技巧2"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的厨师,请根据用户提供的食材和特殊要求,生成详细的菜谱。请严格按照JSON格式返回,不要包含任何其他文字。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: apiConfig.temperature,
- max_tokens: 2000,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const recipeData = JSON.parse(cleanResponse)
- const recipe: Recipe = {
- id: `recipe-custom-${Date.now()}`,
- name: recipeData.name || '自定义菜品',
- cuisine: '自定义',
- ingredients: recipeData.ingredients || ingredients,
- steps: recipeData.steps || [
- { step: 1, description: '准备所有食材', time: 5 },
- { step: 2, description: '按照要求烹饪', time: 20 }
- ],
- cookingTime: recipeData.cookingTime || 25,
- difficulty: recipeData.difficulty || 'medium',
- tips: recipeData.tips || ['根据个人口味调整', '注意火候控制'],
- nutritionAnalysis: undefined,
- winePairing: undefined
- }
- return recipe
- } catch (error) {
- console.error('生成自定义菜谱失败:', error)
- throw new Error('大厨表示这个自定义要求太有挑战性了,请稍后重试')
- }
- }
- // 流式生成多个菜系的菜谱
- export const generateMultipleRecipesStream = async (
- ingredients: string[],
- cuisines: CuisineType[],
- onRecipeGenerated: (recipe: Recipe, index: number, total: number) => void,
- onRecipeError?: (error: Error, index: number, cuisine: CuisineType, total: number) => void,
- customPrompt?: string
- ): Promise<void> => {
- const total = cuisines.length
- let completedCount = 0
- // 为了更好的用户体验,我们不并行生成,而是依次生成
- // 这样用户可以看到一个个菜谱依次完成的效果
- for (let index = 0; index < cuisines.length; index++) {
- const cuisine = cuisines[index]
- try {
- // 添加一些随机延迟,让生成过程更自然
- const delay = 1000 + Math.random() * 2000 // 1-3秒的随机延迟
- await new Promise(resolve => setTimeout(resolve, delay))
- const recipe = await generateRecipe(ingredients, cuisine, customPrompt)
- completedCount++
- onRecipeGenerated(recipe, index, total)
- } catch (error) {
- console.error(`生成${cuisine.name}菜谱失败:`, error)
- // 调用错误回调,让前端可以显示友好的错误信息
- if (onRecipeError) {
- const friendlyError = new Error(`${cuisine.name}不会这道菜,哈哈`)
- onRecipeError(friendlyError, index, cuisine, total)
- }
- // 即使某个菜系失败,也继续生成其他菜系
- continue
- }
- }
- if (completedCount === 0) {
- throw new Error('所有菜系生成都失败了,请稍后重试')
- }
- if (completedCount < total) {
- console.warn(`${total - completedCount}个菜系生成失败,但已成功生成${completedCount}个菜谱`)
- }
- }
- /**
- * 获取菜谱的营养分析
- * @param recipe 菜谱信息
- * @returns Promise<NutritionAnalysis>
- */
- export const getNutritionAnalysis = async (recipe: Recipe): Promise<NutritionAnalysis> => {
- try {
- const prompt = `请为以下菜谱生成详细的营养分析:
- 菜名:${recipe.name}
- 食材:${recipe.ingredients.join('、')}
- 烹饪方法:${recipe.steps.map(step => step.description).join(',')}
- 请按照以下JSON格式返回营养分析:
- {
- "nutrition": {
- "calories": 350,
- "protein": 25,
- "carbs": 45,
- "fat": 12,
- "fiber": 8,
- "sodium": 800,
- "sugar": 6,
- "vitaminC": 30,
- "calcium": 150,
- "iron": 3
- },
- "healthScore": 8,
- "balanceAdvice": ["建议搭配蔬菜沙拉增加维生素", "可适量减少盐分"],
- "dietaryTags": ["高蛋白", "低脂"],
- "servingSize": "1人份"
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的营养师,请根据菜谱信息生成详细的营养分析。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答,包括菜名也要翻译成中文'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.5, // 使用更低的temperature以获得更准确的分析
- stream: false
- })
- // 解析AI响应
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const nutritionData = JSON.parse(cleanResponse)
- return nutritionData
- } catch (error) {
- console.error('获取营养分析失败:', error)
- return generateFallbackNutrition(recipe.ingredients)
- }
- }
- /**
- * 获取菜谱的酒水搭配建议
- * @param recipe 菜谱信息
- * @returns Promise<WinePairing>
- */
- export const getWinePairing = async (recipe: Recipe): Promise<WinePairing> => {
- try {
- const prompt = `请为以下菜谱推荐合适的酒水搭配:
- 菜名:${recipe.name}
- 菜系:${recipe.cuisine}
- 食材:${recipe.ingredients.join('、')}
- 请按照以下JSON格式返回酒水搭配建议:
- {
- "name": "推荐酒水名称",
- "type": "red_wine",
- "reason": "搭配理由说明",
- "servingTemperature": "16-18°C",
- "glassType": "波尔多杯",
- "alcoholContent": "13.5%",
- "flavor": "风味描述",
- "origin": "产地"
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的侍酒师,请根据菜谱信息推荐合适的酒水搭配。请严格按照JSON格式返回,不要包含任何其他文字。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.7,
- stream: false
- })
- // 解析AI响应
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const wineData = JSON.parse(cleanResponse)
- return wineData
- } catch (error) {
- console.error('获取酒水搭配失败:', error)
- return generateFallbackWinePairing({ id: 'custom', name: recipe.cuisine } as CuisineType, recipe.ingredients)
- }
- }
- // 生成后备营养分析数据
- const generateFallbackNutrition = (ingredients: string[]): NutritionAnalysis => {
- const baseCalories = ingredients.length * 50 + Math.floor(Math.random() * 100) + 200
- const hasVegetables = ingredients.some(ing => ['菜', '瓜', '豆', '萝卜', '白菜', '菠菜', '西红柿', '黄瓜', '茄子', '土豆'].some(veg => ing.includes(veg)))
- const hasMeat = ingredients.some(ing => ['肉', '鸡', '鱼', '虾', '蛋', '牛', '猪', '羊'].some(meat => ing.includes(meat)))
- const hasGrains = ingredients.some(ing => ['米', '面', '粉', '饭', '面条', '馒头'].some(grain => ing.includes(grain)))
- const dietaryTags: string[] = []
- if (hasVegetables && !hasMeat) dietaryTags.push('素食')
- if (hasMeat) dietaryTags.push('高蛋白')
- if (hasVegetables) dietaryTags.push('富含维生素')
- if (!hasGrains) dietaryTags.push('低碳水')
- if (baseCalories < 300) dietaryTags.push('低卡路里')
- const balanceAdvice: string[] = []
- if (!hasVegetables) balanceAdvice.push('建议搭配新鲜蔬菜增加维生素和膳食纤维')
- if (!hasMeat && !ingredients.some(ing => ['豆', '蛋', '奶'].some(protein => ing.includes(protein)))) {
- balanceAdvice.push('建议增加蛋白质来源,如豆类或蛋类')
- }
- if (hasGrains && hasMeat) balanceAdvice.push('营养搭配均衡,适合日常食用')
- if (ingredients.length > 5) balanceAdvice.push('食材丰富,营养全面')
- return {
- nutrition: {
- calories: baseCalories,
- protein: hasMeat ? 20 + Math.floor(Math.random() * 15) : 8 + Math.floor(Math.random() * 8),
- carbs: hasGrains ? 35 + Math.floor(Math.random() * 20) : 15 + Math.floor(Math.random() * 10),
- fat: hasMeat ? 12 + Math.floor(Math.random() * 8) : 5 + Math.floor(Math.random() * 5),
- fiber: hasVegetables ? 6 + Math.floor(Math.random() * 4) : 2 + Math.floor(Math.random() * 2),
- sodium: 600 + Math.floor(Math.random() * 400),
- sugar: 3 + Math.floor(Math.random() * 5),
- vitaminC: hasVegetables ? 20 + Math.floor(Math.random() * 30) : undefined,
- calcium: hasMeat || ingredients.some(ing => ['奶', '豆'].some(ca => ing.includes(ca))) ? 100 + Math.floor(Math.random() * 100) : undefined,
- iron: hasMeat ? 2 + Math.floor(Math.random() * 3) : undefined
- },
- healthScore: Math.floor(Math.random() * 3) + (hasVegetables ? 6 : 4) + (hasMeat ? 1 : 0),
- balanceAdvice: balanceAdvice.length > 0 ? balanceAdvice : ['营养搭配合理,可以放心享用'],
- dietaryTags: dietaryTags.length > 0 ? dietaryTags : ['家常菜'],
- servingSize: '1人份'
- }
- }
- // 生成后备酒水搭配数据
- const generateFallbackWinePairing = (cuisine: CuisineType, ingredients: string[]): WinePairing => {
- const hasSpicy = ingredients.some(ing => ['辣椒', '花椒', '胡椒', '姜', '蒜', '洋葱'].some(spice => ing.includes(spice)))
- const hasMeat = ingredients.some(ing => ['肉', '鸡', '鱼', '虾', '蛋', '牛', '猪', '羊'].some(meat => ing.includes(meat)))
- const hasSeafood = ingredients.some(ing => ['鱼', '虾', '蟹', '贝', '海带', '紫菜'].some(seafood => ing.includes(seafood)))
- const isLight = ingredients.some(ing => ['菜', '瓜', '豆腐', '蛋'].some(light => ing.includes(light)))
- const cuisineWineMap: Record<string, Partial<WinePairing>> = {
- 川菜大师: {
- name: '德国雷司令',
- type: 'white_wine',
- reason: '雷司令的甜度和酸度能很好地平衡川菜的麻辣,清洁口腔',
- servingTemperature: '8-10°C',
- glassType: '雷司令杯',
- alcoholContent: '11-12%',
- flavor: '清新果香,微甜带酸',
- origin: '德国莱茵河谷'
- },
- 粤菜大师: {
- name: '香槟',
- type: 'white_wine',
- reason: '香槟的气泡和酸度与粤菜的清淡鲜美完美搭配',
- servingTemperature: '6-8°C',
- glassType: '香槟杯',
- alcoholContent: '12%',
- flavor: '清爽气泡,柑橘香气',
- origin: '法国香槟区'
- },
- 日式料理大师: {
- name: '清酒',
- type: 'sake',
- reason: '清酒的清淡甘甜与日式料理的鲜美本味相得益彰',
- servingTemperature: '10-15°C',
- glassType: '清酒杯',
- alcoholContent: '15-16%',
- flavor: '清香甘甜,口感顺滑',
- origin: '日本'
- }
- }
- let winePairing = cuisineWineMap[cuisine.name] || {}
- if (!winePairing.name) {
- if (hasSpicy) {
- winePairing = {
- name: '德国雷司令',
- type: 'white_wine',
- reason: '甜白酒能很好地平衡辛辣食物,清洁口腔',
- servingTemperature: '8-10°C',
- glassType: '白酒杯',
- alcoholContent: '11-12%',
- flavor: '果香浓郁,微甜清新',
- origin: '德国'
- }
- } else if (hasSeafood) {
- winePairing = {
- name: '长相思白酒',
- type: 'white_wine',
- reason: '白酒的酸度和矿物质感与海鲜的鲜味完美搭配',
- servingTemperature: '8-10°C',
- glassType: '白酒杯',
- alcoholContent: '12-13%',
- flavor: '清新草本,柑橘香气',
- origin: '新西兰'
- }
- } else if (hasMeat && !isLight) {
- winePairing = {
- name: '赤霞珠红酒',
- type: 'red_wine',
- reason: '红酒的单宁与肉类的蛋白质结合,提升整体风味',
- servingTemperature: '16-18°C',
- glassType: '波尔多杯',
- alcoholContent: '13-14%',
- flavor: '浓郁果香,单宁丰富',
- origin: '法国波尔多'
- }
- } else {
- winePairing = {
- name: '绿茶',
- type: 'tea',
- reason: '绿茶的清香淡雅与清淡菜品相得益彰,有助消化',
- servingTemperature: '70-80°C',
- glassType: '茶杯',
- alcoholContent: '0%',
- flavor: '清香淡雅,回甘甜美',
- origin: '中国'
- }
- }
- }
- return {
- name: winePairing.name || '绿茶',
- type: winePairing.type || 'tea',
- reason: winePairing.reason || '经典搭配,有助消化',
- servingTemperature: winePairing.servingTemperature || '常温',
- glassType: winePairing.glassType,
- alcoholContent: winePairing.alcoholContent,
- flavor: winePairing.flavor || '清香怡人',
- origin: winePairing.origin
- }
- }
- /**
- * 测试AI服务连接
- * @returns Promise<boolean>
- */
- export const testAIConnection = async (): Promise<boolean> => {
- try {
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'user',
- content: '你好'
- }
- ],
- max_tokens: 10
- })
- return response.status === 200
- } catch (error) {
- console.error('AI服务连接测试失败:', error)
- return false
- }
- }
- /**
- * 根据菜名生成详细菜谱
- * @param dishName 菜品名称
- * @returns Promise<Recipe>
- */
- export const generateDishRecipeByName = async (dishName: string): Promise<Recipe> => {
- try {
- const prompt = `请为"${dishName}"这道菜生成详细的制作教程。
- 要求:
- 1. 提供完整的食材清单(包括主料和调料)
- 2. 详细的制作步骤,每个步骤要包含具体的时间和火候
- 3. 实用的烹饪技巧和注意事项
- 4. 如果是地方菜,请说明其特色和来源
- 请按照以下JSON格式返回菜谱:
- {
- "name": "菜品名称",
- "ingredients": ["主料1 200g", "调料1 适量", "调料2 1勺"],
- "steps": [
- {
- "step": 1,
- "description": "详细的步骤描述,包含具体操作方法",
- "time": 5,
- "temperature": "中火/大火/小火"
- }
- ],
- "cookingTime": 30,
- "difficulty": "easy/medium/hard",
- "tips": ["实用技巧1", "注意事项2", "口感调节3"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位经验丰富的中华料理大师,精通各种菜系的制作方法。请根据用户提供的菜名,生成详细、实用的制作教程。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.7,
- stream: false
- })
- // 解析AI响应
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const recipeData = JSON.parse(cleanResponse)
- // 构建完整的Recipe对象
- const recipe: Recipe = {
- id: `dish-search-${Date.now()}`,
- name: recipeData.name || dishName,
- cuisine: '传统菜谱',
- ingredients: recipeData.ingredients || ['主要食材', '调料'],
- steps: recipeData.steps || [
- { step: 1, description: '准备所有食材', time: 5 },
- { step: 2, description: '按照传统方法制作', time: 20 }
- ],
- cookingTime: recipeData.cookingTime || 25,
- difficulty: recipeData.difficulty || 'medium',
- tips: recipeData.tips || ['注意火候控制', '调味要适中'],
- nutritionAnalysis: undefined,
- winePairing: undefined
- }
- return recipe
- } catch (error) {
- console.error(`生成"${dishName}"菜谱失败:`, error)
- throw new Error(`大厨表示"${dishName}"这道菜太有挑战性了,请稍后重试`)
- }
- }
- /**
- * 根据酱料名称生成详细制作方法
- * @param sauceName 酱料名称
- * @returns Promise<SauceRecipe>
- */
- export const generateSauceRecipe = async (sauceName: string): Promise<SauceRecipe> => {
- try {
- const prompt = `请为"${sauceName}"这种酱料生成详细的制作教程。
- 要求:
- 1. 提供完整的食材清单(主料、辅料、调料)
- 2. 详细的制作步骤,包含具体操作方法、时间、温度控制
- 3. 实用的制作技巧和注意事项
- 4. 保存方法和保质期信息
- 5. 推荐的搭配菜品
- 6. 口味特点描述
- 请按照以下JSON格式返回酱料配方:
- {
- "name": "酱料名称",
- "category": "spicy/garlic/sweet/complex/regional/fusion",
- "ingredients": ["主料1 200g", "调料1 适量", "调料2 1勺"],
- "steps": [
- {
- "step": 1,
- "description": "详细的步骤描述",
- "time": 5,
- "temperature": "中火",
- "technique": "炒制"
- }
- ],
- "makingTime": 30,
- "difficulty": "easy/medium/hard",
- "tips": ["制作技巧1", "注意事项2"],
- "storage": {
- "method": "密封冷藏",
- "duration": "1个月",
- "temperature": "4°C"
- },
- "pairings": ["搭配菜品1", "搭配菜品2"],
- "tags": ["标签1", "标签2"],
- "spiceLevel": 3,
- "sweetLevel": 1,
- "saltLevel": 4,
- "sourLevel": 2,
- "description": "酱料特色描述"
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位专业的酱料制作大师,精通各种传统和创新酱料的制作方法。请根据用户提供的酱料名称,生成详细、实用的制作教程。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.7,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const sauceData = JSON.parse(cleanResponse)
- const sauceRecipe: SauceRecipe = {
- id: `sauce-${Date.now()}`,
- name: sauceData.name || sauceName,
- category: sauceData.category || 'complex',
- ingredients: sauceData.ingredients || ['主要食材', '调料'],
- steps: sauceData.steps || [
- { step: 1, description: '准备所有食材', time: 5 },
- { step: 2, description: '按照传统方法制作', time: 20 }
- ],
- makingTime: sauceData.makingTime || 25,
- difficulty: sauceData.difficulty || 'medium',
- tips: sauceData.tips || ['注意火候控制', '调味要适中'],
- storage: sauceData.storage || {
- method: '密封保存',
- duration: '1周',
- temperature: '常温'
- },
- pairings: sauceData.pairings || ['面条', '蔬菜'],
- tags: sauceData.tags || ['家常', '经典'],
- spiceLevel: sauceData.spiceLevel || 2,
- sweetLevel: sauceData.sweetLevel || 2,
- saltLevel: sauceData.saltLevel || 3,
- sourLevel: sauceData.sourLevel || 2,
- description: sauceData.description || '经典酱料配方'
- }
- return sauceRecipe
- } catch (error) {
- console.error(`生成"${sauceName}"酱料配方失败:`, error)
- throw new Error(`酱料大师表示"${sauceName}"这个配方太有挑战性了,请稍后重试`)
- }
- }
- /**
- * 根据用户偏好推荐酱料
- * @param preferences 用户偏好配置
- * @returns Promise<string[]>
- */
- export const recommendSauces = async (preferences: SaucePreference): Promise<string[]> => {
- try {
- const useCaseMap = {
- noodles: '拌面',
- dipping: '蘸菜',
- cooking: '炒菜',
- bbq: '烧烤',
- hotpot: '火锅'
- }
- const useCaseText = preferences.useCase.map(uc => (useCaseMap as Record<string, string>)[uc] || uc).join('、')
- const ingredientsText = preferences.availableIngredients.length > 0 ? preferences.availableIngredients.join('、') : '无特殊要求'
- const prompt = `请根据以下用户偏好推荐合适的酱料:
- 用户偏好:
- - 辣度偏好:${preferences.spiceLevel}/5
- - 甜度偏好:${preferences.sweetLevel}/5
- - 咸度偏好:${preferences.saltLevel}/5
- - 酸度偏好:${preferences.sourLevel}/5
- - 使用场景:${useCaseText}
- - 现有食材:${ingredientsText}
- 请推荐5-8种最适合的酱料,按匹配度排序。
- 请按照以下JSON格式返回推荐结果:
- {
- "recommendations": [
- "酱料名称1",
- "酱料名称2",
- "酱料名称3"
- ]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的酱料推荐专家,能够根据用户的口味偏好和使用场景推荐最合适的酱料。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.8,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const recommendationData = JSON.parse(cleanResponse)
- return recommendationData.recommendations || []
- } catch (error) {
- console.error('获取酱料推荐失败:', error)
- throw new Error('酱料大师暂时想不出好的推荐,请稍后重试')
- }
- }
- /**
- * 创建自定义酱料配方
- * @param request 自定义酱料创作请求
- * @returns Promise<SauceRecipe>
- */
- export const createCustomSauce = async (request: CustomSauceRequest): Promise<SauceRecipe> => {
- try {
- const baseTypeMap = {
- oil: '油性酱料',
- water: '水性酱料',
- paste: '膏状酱料',
- granular: '颗粒状酱料'
- }
- const flavorMap = {
- spicy: '辣味',
- sweet: '甜味',
- sour: '酸味',
- umami: '鲜味',
- aromatic: '香味'
- }
- const prompt = `请根据以下要求创作一个独特的酱料配方:
- 创作要求:
- - 基础类型:${baseTypeMap[request.baseType]}
- - 主要风味:${flavorMap[request.flavorDirection]}
- - 特殊食材:${request.specialIngredients.join('、')}
- - 期望口感:${request.expectedTexture}
- - 用途:${request.intendedUse}
- ${request.customRequirements ? `- 特殊要求:${request.customRequirements}` : ''}
- 请创作一个创新的酱料配方,要有独特性和实用性。
- 请按照以下JSON格式返回酱料配方:
- {
- "name": "创新酱料名称",
- "category": "fusion",
- "ingredients": ["主料1 200g", "调料1 适量"],
- "steps": [
- {
- "step": 1,
- "description": "详细步骤描述",
- "time": 5,
- "temperature": "中火",
- "technique": "制作技法"
- }
- ],
- "makingTime": 30,
- "difficulty": "medium",
- "tips": ["创作技巧1", "注意事项2"],
- "storage": {
- "method": "保存方法",
- "duration": "保质期",
- "temperature": "保存温度"
- },
- "pairings": ["搭配建议1", "搭配建议2"],
- "tags": ["创新", "自制"],
- "spiceLevel": 3,
- "sweetLevel": 2,
- "saltLevel": 3,
- "sourLevel": 2,
- "description": "创新酱料特色描述"
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位富有创意的酱料创作大师,擅长根据用户需求创作独特的酱料配方。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.9,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const sauceData = JSON.parse(cleanResponse)
- const customSauce: SauceRecipe = {
- id: `custom-sauce-${Date.now()}`,
- name: sauceData.name || '自创酱料',
- category: 'fusion',
- ingredients: sauceData.ingredients || ['创新食材'],
- steps: sauceData.steps || [
- { step: 1, description: '准备创新食材', time: 5 },
- { step: 2, description: '按照创意方法制作', time: 20 }
- ],
- makingTime: sauceData.makingTime || 25,
- difficulty: sauceData.difficulty || 'medium',
- tips: sauceData.tips || ['发挥创意', '调整口味'],
- storage: sauceData.storage || {
- method: '密封保存',
- duration: '1周',
- temperature: '冷藏'
- },
- pairings: sauceData.pairings || ['创意搭配'],
- tags: sauceData.tags || ['创新', '自制'],
- spiceLevel: sauceData.spiceLevel || 2,
- sweetLevel: sauceData.sweetLevel || 2,
- saltLevel: sauceData.saltLevel || 3,
- sourLevel: sauceData.sourLevel || 2,
- description: sauceData.description || '独特的自创酱料'
- }
- return customSauce
- } catch (error) {
- console.error('创建自定义酱料失败:', error)
- throw new Error('酱料大师表示这个自定义配方太有挑战性了,请稍后重试')
- }
- }
- /**
- * 获取酱料搭配建议
- * @param sauceName 酱料名称
- * @returns Promise<string[]>
- */
- export const getSaucePairings = async (sauceName: string): Promise<string[]> => {
- try {
- const prompt = `请为"${sauceName}"这种酱料推荐最佳的搭配菜品和使用方法。
- 要求:
- 1. 推荐5-8种最适合的搭配菜品
- 2. 说明具体的使用方法
- 3. 考虑不同的烹饪场景
- 请按照以下JSON格式返回搭配建议:
- {
- "pairings": [
- "搭配菜品1 - 使用方法",
- "搭配菜品2 - 使用方法",
- "搭配菜品3 - 使用方法"
- ]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content: '你是一位专业的美食搭配专家,精通各种酱料与菜品的最佳搭配方法。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.7,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const pairingData = JSON.parse(cleanResponse)
- return pairingData.pairings || []
- } catch (error) {
- console.error('获取酱料搭配建议失败:', error)
- return ['面条 - 拌面使用', '蔬菜 - 蘸食使用', '肉类 - 调味使用']
- }
- }
- /**
- * 生成今日运势菜
- * @param params 运势参数
- * @returns Promise<FortuneResult>
- */
- export const generateDailyFortune = async (params: DailyFortuneParams): Promise<FortuneResult> => {
- try {
- const prompt = `你是一位神秘的料理占卜师,请根据以下信息为用户推荐今日幸运菜:
- 星座:${params.zodiac}
- 生肖:${params.animal}
- 日期:${params.date}
- 请结合星座特性、生肖属性和今日能量,推荐一道能带来好运的菜品。
- 请按照以下JSON格式返回占卜结果:
- {
- "dishName": "菜品名称",
- "reason": "选择这道菜的占卜理由",
- "luckyIndex": 8,
- "description": "详细的占卜解析和菜品介绍",
- "tips": ["烹饪技巧1", "幸运提示2"],
- "difficulty": "medium",
- "cookingTime": 30,
- "mysticalMessage": "神秘的占卜师话语",
- "ingredients": ["主要食材1", "主要食材2"],
- "steps": ["制作步骤1", "制作步骤2"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位神秘而智慧的料理占卜师,精通星座学、生肖学和美食文化。你的话语充满神秘色彩,善于将占卜元素与美食完美结合。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.8,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const fortuneData = JSON.parse(cleanResponse)
- const fortune: FortuneResult = {
- id: `daily-fortune-${Date.now()}`,
- type: 'daily',
- date: params.date,
- dishName: fortuneData.dishName || '幸运料理',
- reason: fortuneData.reason || '星座与生肖的神秘指引',
- luckyIndex: fortuneData.luckyIndex || Math.floor(Math.random() * 3) + 7,
- description: fortuneData.description || '这道菜将为您带来今日好运',
- tips: fortuneData.tips || ['用心制作', '保持好心情'],
- difficulty: fortuneData.difficulty || 'medium',
- cookingTime: fortuneData.cookingTime || 30,
- mysticalMessage: fortuneData.mysticalMessage || '命运之轮正在转动,美味即将降临...',
- ingredients: fortuneData.ingredients || [],
- steps: fortuneData.steps || []
- }
- return fortune
- } catch (error) {
- console.error('生成今日运势菜失败:', error)
- throw new Error('占卜师暂时无法感应到星象,请稍后重试')
- }
- }
- /**
- * 生成心情料理
- * @param params 心情参数
- * @returns Promise<FortuneResult>
- */
- export const generateMoodCooking = async (params: MoodFortuneParams): Promise<FortuneResult> => {
- try {
- const moodText = params.moods.join('、')
- const intensityText = ['很轻微', '轻微', '一般', '强烈', '非常强烈'][params.intensity - 1]
- const prompt = `你是一位擅长情感治愈的料理占卜师,请根据以下心情状态推荐治愈菜品:
- 当前心情:${moodText}
- 情绪强度:${intensityText}
- 请推荐一道能够治愈这种心情的菜品,并给出温暖的情感分析。
- 请按照以下JSON格式返回占卜结果:
- {
- "dishName": "菜品名称",
- "reason": "这道菜如何治愈当前心情",
- "luckyIndex": 7,
- "description": "详细的情感分析和菜品治愈功效",
- "tips": ["情感治愈建议1", "烹饪心得2"],
- "difficulty": "easy",
- "cookingTime": 25,
- "mysticalMessage": "温暖治愈的话语",
- "ingredients": ["治愈食材1", "治愈食材2"],
- "steps": ["治愈步骤1", "治愈步骤2"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位温暖而智慧的情感治愈师,深谙美食与情感的关系。你善于通过菜品来抚慰人心,话语温暖治愈。请严格按照JSON���式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.7,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const fortuneData = JSON.parse(cleanResponse)
- const fortune: FortuneResult = {
- id: `mood-fortune-${Date.now()}`,
- type: 'mood',
- date: new Date().toISOString().split('T')[0],
- dishName: fortuneData.dishName || '治愈料理',
- reason: fortuneData.reason || '这道菜能温暖你的心',
- luckyIndex: fortuneData.luckyIndex || Math.floor(Math.random() * 3) + 6,
- description: fortuneData.description || '美食是最好的情感治愈师',
- tips: fortuneData.tips || ['慢慢品味', '感受温暖'],
- difficulty: fortuneData.difficulty || 'easy',
- cookingTime: fortuneData.cookingTime || 25,
- mysticalMessage: fortuneData.mysticalMessage || '让美食抚慰你的心灵,一切都会好起来的...',
- ingredients: fortuneData.ingredients || [],
- steps: fortuneData.steps || []
- }
- return fortune
- } catch (error) {
- console.error('生成心情料理失败:', error)
- throw new Error('情感占卜师暂时感应不到你的心情,请稍后重试')
- }
- }
- /**
- * 生成缘分配菜
- * @param params 双人参数
- * @returns Promise<FortuneResult>
- */
- export const generateCoupleCooking = async (params: CoupleFortuneParams): Promise<FortuneResult> => {
- try {
- const prompt = `你是一位专门分析人际关系的料理占卜师,请分析两人的配菜缘分:
- 第一人:
- - 星座:${params.user1.zodiac}
- - 生肖:${params.user1.animal}
- - 性格:${params.user1.personality.join('、')}
- 第二人:
- - 星座:${params.user2.zodiac}
- - 生肖:${params.user2.animal}
- - 性格:${params.user2.personality.join('、')}
- 请分析两人的配菜默契度,推荐适合合作制作的菜品。
- 请按照以下JSON格式返回占卜结果:
- {
- "dishName": "适合合作的菜品名称",
- "reason": "为什么这道菜适合你们一起做",
- "luckyIndex": 8,
- "description": "详细的缘分分析和配菜建议",
- "tips": ["合作建议1", "默契提升技巧2"],
- "difficulty": "medium",
- "cookingTime": 40,
- "mysticalMessage": "关于缘分和合作的神秘话语",
- "ingredients": ["需要合作的食材1", "需要合作的食材2"],
- "steps": ["合作步骤1", "合作步骤2"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位精通人际关系和美食文化的占卜师,善于分析人与人之间的默契和缘分。你的话语充满智慧和温暖。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.8,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const fortuneData = JSON.parse(cleanResponse)
- const fortune: FortuneResult = {
- id: `couple-fortune-${Date.now()}`,
- type: 'couple',
- date: new Date().toISOString().split('T')[0],
- dishName: fortuneData.dishName || '缘分料理',
- reason: fortuneData.reason || '你们的星座组合很适合这道菜',
- luckyIndex: fortuneData.luckyIndex || Math.floor(Math.random() * 3) + 7,
- description: fortuneData.description || '这道菜将增进你们的默契',
- tips: fortuneData.tips || ['互相配合', '享受过程'],
- difficulty: fortuneData.difficulty || 'medium',
- cookingTime: fortuneData.cookingTime || 40,
- mysticalMessage: fortuneData.mysticalMessage || '缘分天注定,美食见真情...',
- ingredients: fortuneData.ingredients || [],
- steps: fortuneData.steps || []
- }
- return fortune
- } catch (error) {
- console.error('生成缘分配菜失败:', error)
- throw new Error('缘分占卜师暂时无法感应到你们的默契,请稍后重试')
- }
- }
- /**
- * 生成幸运数字菜
- * @param params 数字参数
- * @returns Promise<FortuneResult>
- */
- export const generateNumberFortune = async (params: NumberFortuneParams): Promise<FortuneResult> => {
- try {
- const numberSource = params.isRandom ? '随机生成' : '用户选择'
- const prompt = `你是一位精通数字占卜的料理大师,请根据幸运数字推荐菜品:
- 幸运数字:${params.number}
- 数字来源:${numberSource}
- 请解析这个数字的寓意,并推荐对应的幸运菜品。
- 请按照以下JSON格式返回占卜结果:
- {
- "dishName": "与数字相关的菜品名称",
- "reason": "数字寓意和选择理由",
- "luckyIndex": 9,
- "description": "数字占卜解析和菜品象征意义",
- "tips": ["数字相关的幸运建议1", "制作要点2"],
- "difficulty": "medium",
- "cookingTime": 35,
- "mysticalMessage": "关于数字和命运的神秘话语",
- "ingredients": ["象征性食材1", "象征性食材2"],
- "steps": ["制作步骤1", "制作步骤2"]
- }`
- const aiClient = createAiClient()
- const apiConfig = getTextGenerationConfig()
- const response = await aiClient.post('/chat/completions', {
- model: apiConfig.model,
- messages: [
- {
- role: 'system',
- content:
- '你是一位精通数字学和美食文化的神秘占卜师,善于解读数字的深层含义并与菜品联系。你的话语充满神秘和智慧。请严格按照JSON格式返回,不要包含任何其他文字。请务必用中文回答。'
- },
- {
- role: 'user',
- content: prompt
- }
- ],
- temperature: 0.8,
- stream: false
- })
- const aiResponse = response.data.choices[0].message.content
- let cleanResponse = aiResponse.trim()
- if (cleanResponse.startsWith('```json')) {
- cleanResponse = cleanResponse.replace(/```json\s*/, '').replace(/```\s*$/, '')
- } else if (cleanResponse.startsWith('```')) {
- cleanResponse = cleanResponse.replace(/```\s*/, '').replace(/```\s*$/, '')
- }
- const fortuneData = JSON.parse(cleanResponse)
- const fortune: FortuneResult = {
- id: `number-fortune-${Date.now()}`,
- type: 'number',
- date: new Date().toISOString().split('T')[0],
- dishName: fortuneData.dishName || '数字料理',
- reason: fortuneData.reason || `数字${params.number}带来的神秘指引`,
- luckyIndex: fortuneData.luckyIndex || Math.floor(Math.random() * 3) + 7,
- description: fortuneData.description || '数字中蕴含着美食的秘密',
- tips: fortuneData.tips || ['相信数字的力量', '用心制作'],
- difficulty: fortuneData.difficulty || 'medium',
- cookingTime: fortuneData.cookingTime || 35,
- mysticalMessage: fortuneData.mysticalMessage || '数字是宇宙的语言,美食是心灵的慰藉...',
- ingredients: fortuneData.ingredients || [],
- steps: fortuneData.steps || []
- }
- return fortune
- } catch (error) {
- console.error('生成幸运数字菜失败:', error)
- throw new Error('数字占卜师暂时无法解读这个数字,请稍后重试')
- }
- }
- // 配置现在通过settings store管理,不再导出静态配置
- /**
- * 通用聊天(流式)
- * @param messages 对话历史
- * @param onDelta 每次增量文本回调
- * @param onComplete 结束回调(携带完整文本)
- * @param onError 错误回调
- */
- export const chatStream = async (
- messages: Array<{ role: 'system' | 'user' | 'assistant'; content: string }>,
- onDelta: (deltaText: string) => void,
- onComplete?: (fullText: string) => void,
- onError?: (err: unknown) => void
- ): Promise<void> => {
- const config = getTextGenerationConfig()
- const url = config.baseUrl.replace(/\/$/, '') + '/chat/completions'
- const headers: Record<string, string> = {
- 'Content-Type': 'application/json',
- Authorization: `Bearer ${config.apiKey}`
- }
- const body = JSON.stringify({
- model: config.model,
- messages,
- temperature: config.temperature,
- stream: true
- })
- try {
- const response = await fetch(url, {
- method: 'POST',
- headers,
- body
- })
- if (!response.ok || !response.body) {
- throw new Error(`请求失败: ${response.status}`)
- }
- const reader = response.body.getReader()
- const decoder = new TextDecoder('utf-8')
- let buffer = ''
- let fullText = ''
- while (true) {
- const { value, done } = await reader.read()
- if (done) break
- buffer += decoder.decode(value, { stream: true })
- // 以SSE事件为单位切分
- const parts = buffer.split(/\n\n/)
- buffer = parts.pop() || ''
- for (const part of parts) {
- const lines = part
- .split('\n')
- .map(l => l.trim())
- .filter(Boolean)
- for (const line of lines) {
- if (!line.startsWith('data:')) continue
- const data = line.slice(5).trim()
- if (data === '[DONE]') {
- if (onComplete) onComplete(fullText)
- return
- }
- try {
- const json = JSON.parse(data)
- // 兼容OpenAI/同构流式规范
- const delta = json.choices?.[0]?.delta?.content ?? json.choices?.[0]?.message?.content ?? ''
- if (delta) {
- fullText += delta
- onDelta(delta)
- }
- } catch (e) {
- // 非JSON行,忽略
- continue
- }
- }
- }
- }
- // 读流结束但未收到DONE
- if (onComplete) onComplete(fullText)
- } catch (err) {
- if (onError) onError(err)
- else console.error('chatStream error:', err)
- throw err
- }
- }
|