hermes / ui-tui /src /content /setup.ts
haochengsama's picture
Add files using upload-large-folder tool
04d8658 verified
Raw
History Blame Contribute Delete
483 Bytes
import type { PanelSection } from '../types.js'
export const SETUP_REQUIRED_TITLE = 'Setup Required'
export const buildSetupRequiredSections = (): PanelSection[] => [
{
text: 'Hermes needs a model provider before the TUI can start a session.'
},
{
rows: [
['/model', 'configure provider + model in-place'],
['/setup', 'run full first-time setup wizard in-place'],
['Ctrl+C', 'exit and run `hermes setup` manually']
],
title: 'Actions'
}
]