Add DeepseekV3.2 of Tongyi-Qianwen and remove unused code (#11898)

### What problem does this PR solve?

Add DeepseekV3.2 of Tongyi-Qianwen and remove unused code

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
TeslaZY
2025-12-11 13:55:01 +08:00
committed by GitHub
parent e3cfe8e848
commit bd0eff2954
5 changed files with 11 additions and 9 deletions

View File

@ -50,8 +50,8 @@ export default function TestingForm({
setValues,
}: TestingFormProps) {
const { t } = useTranslation();
const { id } = useParams(); // 正确解构出id参数
const knowledgeBaseId = id; // 现在knowledgeBaseId是字符串类型
const { id } = useParams();
const knowledgeBaseId = id;
const formSchema = z.object({
question: z.string().min(1, {
@ -100,7 +100,6 @@ export default function TestingForm({
<CrossLanguageFormField
name={'cross_languages'}
></CrossLanguageFormField>
{/* 添加元数据过滤组件 */}
<MetadataFilter prefix=""></MetadataFilter>
</FormContainer>
<FormField