fix: Delete the model.ts file of chat #1306 (#2129)

### What problem does this PR solve?
fix:  Delete the model.ts file of chat #1306

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2024-08-28 11:56:35 +08:00
committed by GitHub
parent e9f5468a49
commit 074d4f5031
2 changed files with 0 additions and 196 deletions

2
web/typings.d.ts vendored
View File

@ -1,5 +1,4 @@
import { KFModelState } from '@/pages/add-knowledge/components/knowledge-file/model';
import { ChatModelState } from '@/pages/chat/model';
declare module 'lodash';
@ -9,7 +8,6 @@ function useSelector<TState = RootState, TSelected = unknown>(
): TSelected;
export interface RootState {
chatModel: ChatModelState;
kFModel: KFModelState;
}