feat: clear model when create llm (#10711)

This commit is contained in:
CityFun 2025-10-21 17:53:20 +08:00 committed by GitHub
parent 5d8208a061
commit 34496f6a00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,6 +86,7 @@ const emit = defineEmits(['search']);
const openCreate = (): void => { const openCreate = (): void => {
mode.value = 'create'; mode.value = 'create';
drawerVisiable.value = true; drawerVisiable.value = true;
tensorRTLLM.value = newTensorRTLLM();
}; };
const openEdit = (rowData: any): void => { const openEdit = (rowData: any): void => {