false, 'error' => 'No text provided']); exit; } $prompt = "Translate the following product name or description to $target_lang. Return ONLY the translated text, nothing else.\n\nText: $text"; $resp = LocalAIApi::createResponse([ 'input' => [ ['role' => 'system', 'content' => 'You are a helpful translation assistant.'], ['role' => 'user', 'content' => $prompt], ], ]); if (!empty($resp['success'])) { $translatedText = LocalAIApi::extractText($resp); echo json_encode(['success' => true, 'translated_text' => trim($translatedText)]); } else { echo json_encode(['success' => false, 'error' => $resp['error'] ?? 'AI error']); }