Louis 96dba2690d feat: class-based plugin manager
chore: add facades

refactor: core module export

refactor: inference plugin - deprecate function registering (#537)

* refactor: revamp inference plugin as class - deprecate function registering

* refactor: monitoring plugin - deprecate service registering (#538)

refactor: revamp inference plugin as class - deprecate function registering

chore: update import

refactor: plugin revamp - model management

chore: update build steps and remove experimental plugins

refactor: remove pluggable electron

chore: add sorting for conversations

chore: build plugins for testing

chore: consistent plugin directory name

chore: docs

chore: fix CI

chore: update conversation prefix
2023-11-06 13:46:01 +07:00

22 lines
619 B
TypeScript

import React from 'react'
import ModelTable from '../ModelTable'
import { useGetDownloadedModels } from '@hooks/useGetDownloadedModels'
const DownloadedModelTable: React.FC = () => {
const { downloadedModels } = useGetDownloadedModels()
if (!downloadedModels || downloadedModels.length === 0) return null
return (
<div className="mt-5">
{/* <h3 className="mt-[50px] text-xl leading-[25px]">Downloaded Models</h3> */}
{/* <div className="w-[568px] py-5">
<SearchBar />
</div> */}
<ModelTable models={downloadedModels} />
</div>
)
}
export default DownloadedModelTable