remove unnecessary preservation in progress calculation that was creating placeholder confusion

This commit is contained in:
Russell Ballestrini 2025-07-11 21:18:59 -04:00
parent a7dddf24d8
commit cfc6dec1f4

View file

@ -333,14 +333,8 @@ export function openTranslateModal() {
? `${rawContent.substring(0, maxLength)}...`
: rawContent;
const { preservedText } = preserveSpecialContent(contentToProcess);
// Build the actual prompt that will be sent to the AI
const prompt = `Translate the following HTML content into ${SUPPORTED_LANGUAGES[targetLanguage]}. The input is in English and formatted as HTML, which includes formatting, code blocks, and technical content. Ensure the output preserves the structure, syntax, and formatting of the original. Do not translate or modify placeholders like __CODE_0__, __URI_0__, __HTML_0__, etc., as they represent code blocks, URLs, or HTML elements that should remain unchanged. Only translate the surrounding text. Here is the text to translate:
${preservedText}`;
const tokenInfo = await countTokensWithUpstream(prompt, getSelectedModel());
// Just estimate tokens without preservation for progress calculation
const tokenInfo = await countTokensWithUpstream(contentToProcess, getSelectedModel());
const estimatedSeconds = estimateProcessingTime(tokenInfo.totalTokens);
// Create progress indicator