소스 검색

[Mod 0000]让模型思考等级默认为高

wangkeyi 3 주 전
부모
커밋
64a66b218e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/ventAI/manageAssistent/components/chatModal/ChatInputArea.vue

+ 1 - 1
src/views/ventAI/manageAssistent/components/chatModal/ChatInputArea.vue

@@ -419,7 +419,7 @@
     { key: 'highest', label: '最高', desc: '极致思考,质量最高但较慢' },
   ];
 
-  const selectedThinkLevel = ref<ThinkLevelOption>(thinkLevelOptions[0]);
+  const selectedThinkLevel = ref<ThinkLevelOption>(thinkLevelOptions[1]);
 
   watch(
     () => props.initialThinkLevel,