fix: Doc type

This commit is contained in:
Alex
2024-09-08 22:52:09 +01:00
parent 6c0da2ea94
commit 2fce25b0c8
4 changed files with 9 additions and 23 deletions

View File

@@ -1,15 +1,6 @@
import conversationService from '../api/services/conversationService';
import userService from '../api/services/userService';
// not all properties in Doc are going to be present. Make some optional
export type Doc = {
id: string | null;
name: string;
type: string;
date: string;
model: string;
retriever: string;
};
import { Doc } from '../models/misc';
//Fetches all JSON objects from the source. We only use the objects with the "model" property in SelectDocsModal.tsx. Hopefully can clean up the source file later.
export async function getDocs(): Promise<Doc[] | null> {