mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
chore: uptick
This commit is contained in:
parent
9bf6e1cd6e
commit
882278520b
2 changed files with 5 additions and 10 deletions
|
|
@ -2,15 +2,7 @@ import { describe, expect, it } from 'vitest'
|
|||
|
||||
import type { Frame } from './frame.js'
|
||||
import { LogUpdate } from './log-update.js'
|
||||
import {
|
||||
CellWidth,
|
||||
CharPool,
|
||||
createScreen,
|
||||
HyperlinkPool,
|
||||
type Screen,
|
||||
setCellAt,
|
||||
StylePool
|
||||
} from './screen.js'
|
||||
import { CellWidth, CharPool, createScreen, HyperlinkPool, type Screen, setCellAt, StylePool } from './screen.js'
|
||||
|
||||
/**
|
||||
* Contract tests for LogUpdate.render() — the diff-to-ANSI path that owns
|
||||
|
|
|
|||
|
|
@ -672,7 +672,10 @@ export function useMainApp(gw: GatewayClient) {
|
|||
return top + vp >= total - 3
|
||||
})()
|
||||
|
||||
const liveProgress = useMemo(() => ({ ...turn, showProgressArea, showStreamingArea: Boolean(turn.streaming) }), [turn, showProgressArea])
|
||||
const liveProgress = useMemo(
|
||||
() => ({ ...turn, showProgressArea, showStreamingArea: Boolean(turn.streaming) }),
|
||||
[turn, showProgressArea]
|
||||
)
|
||||
|
||||
const frozenProgressRef = useRef(liveProgress)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue