Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion application/single_app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down
3 changes: 1 addition & 2 deletions application/single_app/static/js/chat/chat-message-export.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down