I understand your feelings.
However, please understand that preprocessing is inevitable in translation.
from openai import OpenAI
client = OpenAI()
response = client.completions.create(
model="gpt-3.5-turbo-instruct",
prompt="As a language processor, you must translate all the text presented by the user from English to Korean.\nMake sure that each phrase of text presented by the user corresponds to the translated text in the correct order.\n\n```original text\nProduce a long descriptive sentence that uses all these words: \nAlbuquerque, New Mexico, areaOfLand, 486.2 (square kilometres); Albuquerque, New Mexico, populationDensity, 1142.3 (inhabitants per square kilometre); Albuquerque, New Mexico, isPartOf, Bernalillo County, New Mexico; Albuquerque, New Mexico, areaTotal, 490.9 (square kilometres)\n\n```translated text\nAs a language processor, you must translate all the text presented by the user from English to Korean.\nMake sure that each phrase of text presented by the user corresponds to the translated text in the correct order.\n\n```original text\nProduce a long descriptive sentence that uses all these words: \nAlbuquerque, New Mexico, areaOfLand, 486.2 (square kilometres); Albuquerque, New Mexico, populationDensity, 1142.3 (inhabitants per square kilometre); Albuquerque, New Mexico, isPartOf, Bernalillo County, New Mexico; Albuquerque, New Mexico, areaTotal, 490.9 (square kilometres)\n\n```translated text\n이 모든 단어를 사용하는 긴 기술적인 문장을 만드세요: 앨버커키, 뉴멕시코, 면적, 486.2 (제곱 킬로미터); 앨버커키, 뉴멕시코, 인구 밀도, 1142.3 (제곱 킬로미터 당 거주자); 앨버커키, 뉴멕시코는 뉴멕시코 주의 버날리로 카운티의 일부입니다; 앨버커키, 뉴멕시코, 총 면적, 490.9 (제곱 킬로미터)",
temperature=0,
max_tokens=792,
top_p=0,
frequency_penalty=0,
presence_penalty=0
)