Files
FastGPT/client/src/constants/kb.ts
archer a993eba7f0 ts
2023-07-25 13:24:23 +08:00

13 lines
252 B
TypeScript

import type { KbItemType } from '@/types/plugin';
export const defaultKbDetail: KbItemType = {
_id: '',
userId: '',
updateTime: new Date(),
avatar: '/icon/logo.png',
name: '',
tags: '',
totalData: 0,
model: 'text-embedding-ada-002'
};