From 30229a913cad1bec8b78a5ca349c14856261a71c Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Thu, 7 Dec 2023 13:39:24 -0800 Subject: [PATCH] Update examples/typescript-simplechat/client.ts Co-authored-by: Bruce MacDonald --- examples/typescript-simplechat/client.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/typescript-simplechat/client.ts b/examples/typescript-simplechat/client.ts index 7e37fe30..5d703a75 100644 --- a/examples/typescript-simplechat/client.ts +++ b/examples/typescript-simplechat/client.ts @@ -42,7 +42,6 @@ async function chat(messages: Message[]): Promise { if (json.done === false) { process.stdout.write(json.message.content); content.push(json.message.content) - // messages.push({role: "system", content: text}) } }