mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-21 16:18:55 +00:00
fmt(js): npm run fix on merge (#67793)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
04113b5a89
commit
26480e6c57
1 changed files with 10 additions and 2 deletions
|
|
@ -215,13 +215,21 @@ const storedIds = (states: Record<string, ClientSessionState>, pred: (s: ClientS
|
|||
let workingIds: readonly string[] = []
|
||||
export const $workingSessionIds = computed(
|
||||
$sessionStates,
|
||||
states => (workingIds = stableArray(workingIds, storedIds(states, s => s.busy)))
|
||||
states =>
|
||||
(workingIds = stableArray(
|
||||
workingIds,
|
||||
storedIds(states, s => s.busy)
|
||||
))
|
||||
)
|
||||
|
||||
let attentionIds: readonly string[] = []
|
||||
export const $attentionSessionIds = computed(
|
||||
$sessionStates,
|
||||
states => (attentionIds = stableArray(attentionIds, storedIds(states, s => s.needsInput)))
|
||||
states =>
|
||||
(attentionIds = stableArray(
|
||||
attentionIds,
|
||||
storedIds(states, s => s.needsInput)
|
||||
))
|
||||
)
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue