* feat: remote engine management * chore: fix linter issue * chore: remove unused imports * fix: populate engines, models and legacy settings (#4403) * fix: populate engines, models and legacy settings * chore: legacy logics update configured remote engine * fix: check exist path before reading * fix: engines and models persist - race condition * chore: update issue state * test: update test cases * chore: bring back Cortex extension settings * chore: setup button gear / plus based apikey * chore: fix remote engine from welcome screen * chore: resolve linter issue * chore: support request headers template * chore: update engines using header_template instead of api_key_template * chore: update models on changes * fix: anthropic response template * chore: fix welcome screen and debounce update value input * chore: update engines list on changes * chore: update engines list on change * chore: update desc form add modal remote engines * chore: bump cortex version to latest RC * chore: fix linter * fix: transform payload of Anthropic and OpenAI * fix: typo * fix: openrouter model id for auto routing * chore: remove remote engine URL setting * chore: add cohere engine and model support * fix: should not clean on app launch - models list display issue * fix: local engine check logic * chore: bump app version to latest release 0.5.13 * test: fix failed tests --------- Co-authored-by: Louis <louis@jan.ai>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { memo, useMemo } from 'react'
|
|
|
|
import { Button } from '@janhq/joi'
|
|
import { useAtomValue, useSetAtom } from 'jotai'
|
|
|
|
import LogoMark from '@/containers/Brand/Logo/Mark'
|
|
|
|
import { MainViewState } from '@/constants/screens'
|
|
|
|
import { isLocalEngine } from '@/utils/modelEngine'
|
|
|
|
import { mainViewStateAtom } from '@/helpers/atoms/App.atom'
|
|
import { installedEnginesAtom } from '@/helpers/atoms/Engines.atom'
|
|
import { downloadedModelsAtom } from '@/helpers/atoms/Model.atom'
|
|
|
|
const EmptyThread = () => {
|
|
const downloadedModels = useAtomValue(downloadedModelsAtom)
|
|
const setMainViewState = useSetAtom(mainViewStateAtom)
|
|
const engines = useAtomValue(installedEnginesAtom)
|
|
const showOnboardingStep = useMemo(
|
|
() =>
|
|
!downloadedModels.some(
|
|
(e) => isLocalEngine(engines, e.engine) || e.engine
|
|
),
|
|
[downloadedModels, engines]
|
|
)
|
|
return (
|
|
<div className="mx-auto flex h-full flex-col items-center justify-center text-center">
|
|
<LogoMark className="mx-auto mb-2 animate-wave" width={32} height={32} />
|
|
{showOnboardingStep ? (
|
|
<>
|
|
<p className="mt-1 font-medium">{`You don't have any model`}</p>
|
|
<Button
|
|
onClick={() => setMainViewState(MainViewState.Hub)}
|
|
variant="soft"
|
|
className="mt-3"
|
|
>
|
|
Explore The Hub
|
|
</Button>
|
|
</>
|
|
) : (
|
|
<p className="mt-1 font-medium">How can I help you?</p>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(EmptyThread)
|