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

@@ -5,16 +5,12 @@ export type User = {
};
export type Doc = {
id?: string;
location: string;
name: string;
language: string;
version: string;
description: string;
fullName: string;
date: string;
docLink: string;
model: string;
tokens?: string;
type?: string;
retriever?: string;
};
export type PromptProps = {