mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-07 02:51:50 +00:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
export function flushInteractionTime(): void {}
|
|
|
|
export function updateLastInteractionTime(): void {}
|
|
|
|
export function markScrollActivity(): void {}
|
|
|
|
export function getIsInteractive(): boolean {
|
|
return !!process.stdin.isTTY && !!process.stdout.isTTY
|
|
}
|