Change prompt to Assistant

This commit is contained in:
Peter Morton 2025-05-19 18:08:51 -05:00
parent ebf7017da5
commit 724742c294

View File

@ -21,7 +21,7 @@ const init = async () => {
rl.on("line", async (input) => { rl.on("line", async (input) => {
if (input.trim().length > 0) { if (input.trim().length > 0) {
output = await client.send(input); output = await client.send(input);
console.log(`Server: ${output}`); console.log(`Assistant: ${output}`);
} }
rl.prompt(); rl.prompt();
}); });