소스 검색

调整新建对话(全能模式)适配单剧集

lh 1 일 전
부모
커밋
269a6f69a7
2개의 변경된 파일137개의 추가작업 그리고 33개의 파일을 삭제
  1. 2 2
      app/Services/Anime/AnimeService.php
  2. 135 31
      app/Services/DeepSeek/DeepSeekService.php

+ 2 - 2
app/Services/Anime/AnimeService.php

@@ -250,11 +250,11 @@ class AnimeService
         $model = getProp($data, 'model');
         if (!$model) {
             // 用户没有输入,使用默认值
-            $model = 'doubao-seed-2-0-mini-260215';
+            $model = 'deepseek-v4-pro';
         }
         // 验证模型是否在可用模型表中
         if (!DB::table('mp_text_models')->where('model', $model)->where('is_enabled', 1)->exists()) {
-            $model = 'doubao-seed-2-0-mini-260215';
+            $model = 'deepseek-v4-pro';
         }
         $anime_data['model'] = $model;
 

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 135 - 31
app/Services/DeepSeek/DeepSeekService.php