This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

idk

+2 -2
+2 -2
scripts/chat.ts
··· 3 3 import { renderMarkdownAnsi } from "./terminal-markdown" 4 4 5 5 const HOST = process.env.NIRI_HOST ?? "http://localhost" 6 - const PORT = process.env.PORT ?? "3000" 6 + const PORT = process.env.PORT ?? "4000" 7 7 const BASE = `${HOST}:${PORT}` 8 8 9 9 const c = { ··· 121 121 streamStatusCheckInFlight = true 122 122 try { 123 123 const status = await client.getStatus() 124 - if (!status.running) { 124 + if (!status.running || status.idle) { 125 125 endActiveStream() 126 126 } else { 127 127 scheduleStreamSettleCheck()