[GH-ISSUE #3142] [FEAT]: Updating embedded chat to support thinking #2018

Open
opened 2026-02-22 18:27:46 -05:00 by yindo · 1 comment
Owner

Originally created by @Hogesyx on GitHub (Feb 6, 2025).
Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/3142

What would you like to see?

#3001 has updated the main web ui component on this, it would be good to support this and maybe extending it to allow hiding of the thinking content in the embedded chat.

Originally created by @Hogesyx on GitHub (Feb 6, 2025). Original GitHub issue: https://github.com/Mintplex-Labs/anything-llm/issues/3142 ### What would you like to see? #3001 has updated the main web ui component on this, it would be good to support this and maybe extending it to allow hiding of the thinking content in the[ embedded chat.](https://github.com/Mintplex-Labs/anythingllm-embed)
yindo added the enhancementfeature requestembed-widget labels 2026-02-22 18:27:46 -05:00
Author
Owner

@mainifestion1 commented on GitHub (Feb 9, 2025):

Thinking Support Chat

To facilitate discussion and thinking around this issue, we've embedded a chat below. Please feel free to share your thoughts, ask questions, or provide insights.

Chat Transcript

Your Thoughts?

Type your message below:

Send <script> const chatForm = document.getElementById('chat-form'); const chatInput = document.getElementById('chat-input'); const chatSubmit = document.getElementById('chat-submit'); chatSubmit.addEventListener('click', (e) => { e.preventDefault(); const message = chatInput.value.trim(); if (message) { // Render the message in the chat transcript const chatTranscript = document.getElementById('chat-transcript'); const messageElement = document.createElement('div'); messageElement.textContent = message; chatTranscript.appendChild(messageElement); chatInput.value = ''; } }); </script>



@mainifestion1 commented on GitHub (Feb 9, 2025): ## Thinking Support Chat To facilitate discussion and thinking around this issue, we've embedded a chat below. Please feel free to share your thoughts, ask questions, or provide insights. ### Chat Transcript <!-- Chat transcript will be rendered here --> ### Your Thoughts? Type your message below: <form> <textarea id="chat-input" placeholder="Share your thoughts..."></textarea> <button id="chat-submit">Send</button> </form> <!-- Script to handle chat submission and rendering --> <script> const chatForm = document.getElementById('chat-form'); const chatInput = document.getElementById('chat-input'); const chatSubmit = document.getElementById('chat-submit'); chatSubmit.addEventListener('click', (e) => { e.preventDefault(); const message = chatInput.value.trim(); if (message) { // Render the message in the chat transcript const chatTranscript = document.getElementById('chat-transcript'); const messageElement = document.createElement('div'); messageElement.textContent = message; chatTranscript.appendChild(messageElement); chatInput.value = ''; } }); </script> ```
yindo changed title from [FEAT]: Updating embedded chat to support thinking to [GH-ISSUE #3142] [FEAT]: Updating embedded chat to support thinking 2026-06-05 14:44:02 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#2018