diff --git a/web/types/searchModelParam.hf.d.ts b/web/types/searchModelParam.hf.d.ts deleted file mode 100644 index d59e38b9a..000000000 --- a/web/types/searchModelParam.hf.d.ts +++ /dev/null @@ -1,53 +0,0 @@ -type Task = - | 'text-classification' - | 'token-classification' - | 'table-question-answering' - | 'question-answering' - | 'zero-shot-classification' - | 'translation' - | 'summarization' - | 'conversational' - | 'feature-extraction' - | 'text-generation' - | 'text2text-generation' - | 'fill-mask' - | 'sentence-similarity' - | 'text-to-speech' - | 'automatic-speech-recognition' - | 'audio-to-audio' - | 'audio-classification' - | 'voice-activity-detection' - | 'depth-estimation' - | 'image-classification' - | 'object-detection' - | 'image-segmentation' - | 'text-to-image' - | 'image-to-text' - | 'image-to-image' - | 'unconditional-image-generation' - | 'video-classification' - | 'reinforcement-learning' - | 'robotics' - | 'tabular-classification' - | 'tabular-regression' - | 'tabular-to-text' - | 'table-to-text' - | 'multiple-choice' - | 'text-retrieval' - | 'time-series-forecasting' - | 'visual-question-answering' - | 'document-question-answering' - | 'zero-shot-image-classification' - | 'graph-ml' - | 'other' - -type SearchModelParamHf = { - search?: { - owner?: string - task?: Task - } - credentials?: { - accessToken: string - } - limit: number -} diff --git a/web/types/users.d.ts b/web/types/users.d.ts deleted file mode 100644 index cc181a46a..000000000 --- a/web/types/users.d.ts +++ /dev/null @@ -1,11 +0,0 @@ -export enum Role { - User = 'user', - Assistant = 'assistant', -} - -type User = { - id: string - displayName: string - avatarUrl: string - email?: string -}