feat: US-004 - Preload ONNX model during boot sequence
This commit is contained in:
@@ -6,6 +6,7 @@ import { LoginScreen } from './components/LoginScreen'
|
||||
import { DashboardLayout } from './components/DashboardLayout'
|
||||
import { AccessibilityProvider } from './contexts/AccessibilityContext'
|
||||
import { DetailPanelProvider } from './contexts/DetailPanelContext'
|
||||
import { initModel } from './lib/embedding-model'
|
||||
|
||||
function SkipButton({ onSkip }: { onSkip: () => void }) {
|
||||
const [visible, setVisible] = useState(false)
|
||||
@@ -47,6 +48,10 @@ function App() {
|
||||
const [phase, setPhase] = useState<Phase>('login')
|
||||
const cursorPositionRef = useRef<{ x: number; y: number } | null>(null)
|
||||
|
||||
useEffect(() => {
|
||||
initModel()
|
||||
}, [])
|
||||
|
||||
const skipToLogin = () => setPhase('login')
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user