mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-07 02:51:50 +00:00
This PR groups the TUI fixes that restore macOS Terminal usability and clean up the theme/composer regressions: - copy transcript selections on macOS drag-release so Terminal.app users can copy while mouse tracking is enabled - copy composer selections on macOS drag-release; composer selection is internal to TextInput and does not use the global Ink selection bus - keep IDE Cmd+C forwarding setup macOS-only, and make keybinding conflict checks respect simple when-clause overlap/negation - force truecolor before chalk initializes (unless NO_COLOR / FORCE_COLOR / HERMES_TUI_TRUECOLOR opt-outs apply) so the default banner keeps its gold/amber/bronze gradient in Terminal.app - move TUI surfaces onto semantic theme tokens and preserve skin prompt symbols as bare tokens with renderer-owned spacing - render focused placeholders as dim hint text in TTY mode instead of inverse/selected-looking synthetic cursor text
301 lines
8.8 KiB
TypeScript
301 lines
8.8 KiB
TypeScript
import { Box, Text, useInput, useStdout } from '@hermes/ink'
|
|
import { useEffect, useMemo, useState } from 'react'
|
|
|
|
import { providerDisplayNames } from '../domain/providers.js'
|
|
import { TUI_SESSION_MODEL_FLAG } from '../domain/slash.js'
|
|
import type { GatewayClient } from '../gatewayClient.js'
|
|
import type { ModelOptionProvider, ModelOptionsResponse } from '../gatewayTypes.js'
|
|
import { asRpcResult, rpcErrorMessage } from '../lib/rpc.js'
|
|
import type { Theme } from '../theme.js'
|
|
|
|
import { OverlayHint, useOverlayKeys, windowItems, windowOffset } from './overlayControls.js'
|
|
|
|
const VISIBLE = 12
|
|
const MIN_WIDTH = 40
|
|
const MAX_WIDTH = 90
|
|
|
|
export function ModelPicker({ gw, onCancel, onSelect, sessionId, t }: ModelPickerProps) {
|
|
const [providers, setProviders] = useState<ModelOptionProvider[]>([])
|
|
const [currentModel, setCurrentModel] = useState('')
|
|
const [err, setErr] = useState('')
|
|
const [loading, setLoading] = useState(true)
|
|
const [persistGlobal, setPersistGlobal] = useState(false)
|
|
const [providerIdx, setProviderIdx] = useState(0)
|
|
const [modelIdx, setModelIdx] = useState(0)
|
|
const [stage, setStage] = useState<'model' | 'provider'>('provider')
|
|
|
|
const { stdout } = useStdout()
|
|
// Pin the picker to a stable width so the FloatBox parent (which shrinks-
|
|
// to-fit with alignSelf="flex-start") doesn't resize as long provider /
|
|
// model names scroll into view, and so `wrap="truncate-end"` on each row
|
|
// has an actual constraint to truncate against.
|
|
const width = Math.max(MIN_WIDTH, Math.min(MAX_WIDTH, (stdout?.columns ?? 80) - 6))
|
|
|
|
useEffect(() => {
|
|
gw.request<ModelOptionsResponse>('model.options', sessionId ? { session_id: sessionId } : {})
|
|
.then(raw => {
|
|
const r = asRpcResult<ModelOptionsResponse>(raw)
|
|
|
|
if (!r) {
|
|
setErr('invalid response: model.options')
|
|
setLoading(false)
|
|
|
|
return
|
|
}
|
|
|
|
const next = r.providers ?? []
|
|
setProviders(next)
|
|
setCurrentModel(String(r.model ?? ''))
|
|
setProviderIdx(
|
|
Math.max(
|
|
0,
|
|
next.findIndex(p => p.is_current)
|
|
)
|
|
)
|
|
setModelIdx(0)
|
|
setStage('provider')
|
|
setErr('')
|
|
setLoading(false)
|
|
})
|
|
.catch((e: unknown) => {
|
|
setErr(rpcErrorMessage(e))
|
|
setLoading(false)
|
|
})
|
|
}, [gw, sessionId])
|
|
|
|
const provider = providers[providerIdx]
|
|
const models = provider?.models ?? []
|
|
const names = useMemo(() => providerDisplayNames(providers), [providers])
|
|
|
|
const back = () => {
|
|
if (stage === 'model') {
|
|
setStage('provider')
|
|
setModelIdx(0)
|
|
|
|
return
|
|
}
|
|
|
|
onCancel()
|
|
}
|
|
|
|
useOverlayKeys({ onBack: back, onClose: onCancel })
|
|
|
|
useInput((ch, key) => {
|
|
const count = stage === 'provider' ? providers.length : models.length
|
|
const sel = stage === 'provider' ? providerIdx : modelIdx
|
|
const setSel = stage === 'provider' ? setProviderIdx : setModelIdx
|
|
|
|
if (key.upArrow && sel > 0) {
|
|
setSel(v => v - 1)
|
|
|
|
return
|
|
}
|
|
|
|
if (key.downArrow && sel < count - 1) {
|
|
setSel(v => v + 1)
|
|
|
|
return
|
|
}
|
|
|
|
if (key.return) {
|
|
if (stage === 'provider') {
|
|
if (!provider) {
|
|
return
|
|
}
|
|
|
|
setStage('model')
|
|
setModelIdx(0)
|
|
|
|
return
|
|
}
|
|
|
|
const model = models[modelIdx]
|
|
|
|
if (provider && model) {
|
|
onSelect(`${model} --provider ${provider.slug}${persistGlobal ? ' --global' : ` ${TUI_SESSION_MODEL_FLAG}`}`)
|
|
} else {
|
|
setStage('provider')
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
if (ch.toLowerCase() === 'g') {
|
|
setPersistGlobal(v => !v)
|
|
|
|
return
|
|
}
|
|
|
|
const n = ch === '0' ? 10 : parseInt(ch, 10)
|
|
|
|
if (!Number.isNaN(n) && n >= 1 && n <= Math.min(10, count)) {
|
|
const offset = windowOffset(count, sel, VISIBLE)
|
|
|
|
if (stage === 'provider') {
|
|
const next = offset + n - 1
|
|
|
|
if (providers[next]) {
|
|
setProviderIdx(next)
|
|
}
|
|
} else if (provider && models[offset + n - 1]) {
|
|
onSelect(
|
|
`${models[offset + n - 1]} --provider ${provider.slug}${persistGlobal ? ' --global' : ` ${TUI_SESSION_MODEL_FLAG}`}`
|
|
)
|
|
}
|
|
}
|
|
})
|
|
|
|
if (loading) {
|
|
return <Text color={t.color.muted}>loading models…</Text>
|
|
}
|
|
|
|
if (err) {
|
|
return (
|
|
<Box flexDirection="column">
|
|
<Text color={t.color.label}>error: {err}</Text>
|
|
<OverlayHint t={t}>Esc/q cancel</OverlayHint>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
if (!providers.length) {
|
|
return (
|
|
<Box flexDirection="column">
|
|
<Text color={t.color.muted}>no authenticated providers</Text>
|
|
<OverlayHint t={t}>Esc/q cancel</OverlayHint>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
if (stage === 'provider') {
|
|
const rows = providers.map(
|
|
(p, i) => `${p.is_current ? '*' : ' '} ${names[i]} · ${p.total_models ?? p.models?.length ?? 0} models`
|
|
)
|
|
|
|
const { items, offset } = windowItems(rows, providerIdx, VISIBLE)
|
|
|
|
return (
|
|
<Box flexDirection="column" width={width}>
|
|
<Text bold color={t.color.accent} wrap="truncate-end">
|
|
Select provider (step 1/2)
|
|
</Text>
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
Full model IDs on the next step · Enter to continue
|
|
</Text>
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
Current: {currentModel || '(unknown)'}
|
|
</Text>
|
|
<Text color={t.color.label} wrap="truncate-end">
|
|
{provider?.warning ? `warning: ${provider.warning}` : ' '}
|
|
</Text>
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
{offset > 0 ? ` ↑ ${offset} more` : ' '}
|
|
</Text>
|
|
|
|
{Array.from({ length: VISIBLE }, (_, i) => {
|
|
const row = items[i]
|
|
const idx = offset + i
|
|
|
|
return row ? (
|
|
<Text
|
|
bold={providerIdx === idx}
|
|
color={providerIdx === idx ? t.color.accent : t.color.muted}
|
|
inverse={providerIdx === idx}
|
|
key={providers[idx]?.slug ?? `row-${idx}`}
|
|
wrap="truncate-end"
|
|
>
|
|
{providerIdx === idx ? '▸ ' : ' '}
|
|
{i + 1}. {row}
|
|
</Text>
|
|
) : (
|
|
<Text color={t.color.muted} key={`pad-${i}`} wrap="truncate-end">
|
|
{' '}
|
|
</Text>
|
|
)
|
|
})}
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
{offset + VISIBLE < rows.length ? ` ↓ ${rows.length - offset - VISIBLE} more` : ' '}
|
|
</Text>
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
persist: {persistGlobal ? 'global' : 'session'} · g toggle
|
|
</Text>
|
|
<OverlayHint t={t}>↑/↓ select · Enter choose · 1-9,0 quick · Esc/q cancel</OverlayHint>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
const { items, offset } = windowItems(models, modelIdx, VISIBLE)
|
|
|
|
return (
|
|
<Box flexDirection="column" width={width}>
|
|
<Text bold color={t.color.accent} wrap="truncate-end">
|
|
Select model (step 2/2)
|
|
</Text>
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
{names[providerIdx] || '(unknown provider)'} · Esc back
|
|
</Text>
|
|
<Text color={t.color.label} wrap="truncate-end">
|
|
{provider?.warning ? `warning: ${provider.warning}` : ' '}
|
|
</Text>
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
{offset > 0 ? ` ↑ ${offset} more` : ' '}
|
|
</Text>
|
|
|
|
{Array.from({ length: VISIBLE }, (_, i) => {
|
|
const row = items[i]
|
|
const idx = offset + i
|
|
|
|
if (!row) {
|
|
return !models.length && i === 0 ? (
|
|
<Text color={t.color.muted} key="empty" wrap="truncate-end">
|
|
no models listed for this provider
|
|
</Text>
|
|
) : (
|
|
<Text color={t.color.muted} key={`pad-${i}`} wrap="truncate-end">
|
|
{' '}
|
|
</Text>
|
|
)
|
|
}
|
|
|
|
const prefix = modelIdx === idx ? '▸ ' : row === currentModel ? '* ' : ' '
|
|
|
|
return (
|
|
<Text
|
|
bold={modelIdx === idx}
|
|
color={modelIdx === idx ? t.color.accent : t.color.muted}
|
|
inverse={modelIdx === idx}
|
|
key={`${provider?.slug ?? 'prov'}:${idx}:${row}`}
|
|
wrap="truncate-end"
|
|
>
|
|
{prefix}
|
|
{i + 1}. {row}
|
|
</Text>
|
|
)
|
|
})}
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
{offset + VISIBLE < models.length ? ` ↓ ${models.length - offset - VISIBLE} more` : ' '}
|
|
</Text>
|
|
|
|
<Text color={t.color.muted} wrap="truncate-end">
|
|
persist: {persistGlobal ? 'global' : 'session'} · g toggle
|
|
</Text>
|
|
<OverlayHint t={t}>
|
|
{models.length ? '↑/↓ select · Enter switch · 1-9,0 quick · Esc back · q close' : 'Enter/Esc back · q close'}
|
|
</OverlayHint>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
interface ModelPickerProps {
|
|
gw: GatewayClient
|
|
onCancel: () => void
|
|
onSelect: (value: string) => void
|
|
sessionId: string | null
|
|
t: Theme
|
|
}
|