From 593e83117582c84c945f1d033d77d917991f7964 Mon Sep 17 00:00:00 2001 From: hanishkvc Date: Thu, 4 Dec 2025 11:36:49 +0530 Subject: [PATCH] SimpleSallap:Cleanup notes --- tools/server/public_simplechat/docs/changelog.md | 3 --- tools/server/public_simplechat/main.js | 8 +++++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/tools/server/public_simplechat/docs/changelog.md b/tools/server/public_simplechat/docs/changelog.md index e85b9e39da..a3895a337e 100644 --- a/tools/server/public_simplechat/docs/changelog.md +++ b/tools/server/public_simplechat/docs/changelog.md @@ -346,6 +346,3 @@ their respective functionalities. Add support for base64 encoded pdf passing to ai models, when the models and llama engine gain that capability in turn using openai file - file-data type sub block within content array or so ... - -See why the ai streamed response not showing up in TCExternalAi chat session ui, even thou the content is getting -appended to its DivStream. IE why it is hidden. diff --git a/tools/server/public_simplechat/main.js b/tools/server/public_simplechat/main.js index d60fc91034..b3d6608345 100644 --- a/tools/server/public_simplechat/main.js +++ b/tools/server/public_simplechat/main.js @@ -1,7 +1,9 @@ // @ts-check -// A simple implementation of GenAi/LLM chat web client ui / front end logic. -// It handshake with ai server's completions and chat/completions endpoints -// and helps with basic usage and testing. +// A simple minded GenAi/LLM chat web client implementation. +// Handshakes with +// * ai server's completions and chat/completions endpoints +// * simpleproxy tool calls provider +// Helps with basic usage and testing. // by Humans for All