You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Construct the user prompt with the language name
79
-
user_prompt=f"Refine the following {target_language} machine translation to make it {characteristic}: '{translated_text}' based on the original English text: '{english_text}'."
78
+
# Separate the instruction from the data.
79
+
# It makes it hard for injected text to masquerade as instructions.
80
+
user_prompt= (
81
+
f"Refine the {target_language} machine translation below to make it {characteristic}.\n\n"
82
+
f"ENGLISH SOURCE:\n{english_text}\n\n"
83
+
f"MACHINE TRANSLATION TO REFINE:\n{translated_text}"
0 commit comments