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);