From 1b5714ae8ad423d06c7712e5549eab8220dd4b46 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 14:49:03 +0000 Subject: [PATCH 1/2] Initial plan From e6fe0761982ad70ddd8801b5eba057ff745f0caa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 10 Mar 2026 14:50:44 +0000 Subject: [PATCH 2/2] fix: update copyAsPrompt comment to match actual behavior Co-authored-by: eldong <11573590+eldong@users.noreply.github.com> --- application/single_app/config.py | 2 +- application/single_app/static/js/chat/chat-message-export.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/application/single_app/config.py b/application/single_app/config.py index fcf78486..79f5f323 100644 --- a/application/single_app/config.py +++ b/application/single_app/config.py @@ -94,7 +94,7 @@ EXECUTOR_TYPE = 'thread' EXECUTOR_MAX_WORKERS = 30 SESSION_TYPE = 'filesystem' -VERSION = "0.239.008" +VERSION = "0.239.009" SECRET_KEY = os.getenv('SECRET_KEY', 'dev-secret-key-change-in-production') diff --git a/application/single_app/static/js/chat/chat-message-export.js b/application/single_app/static/js/chat/chat-message-export.js index 48f8eca7..c2d61848 100644 --- a/application/single_app/static/js/chat/chat-message-export.js +++ b/application/single_app/static/js/chat/chat-message-export.js @@ -135,8 +135,7 @@ export async function exportMessageAsWord(messageDiv, messageId, role) { /** * Insert the message content as a formatted prompt directly into the chat * input box so the user can review, edit, and send it. - * For AI messages, wraps with instructions to continue/build on the response. - * For user messages, inserts the raw content as a reusable prompt. + * The raw message content is inserted unchanged for both user and AI messages. */ export function copyAsPrompt(messageDiv, messageId, role) { const content = getMessageMarkdown(messageDiv, role);