Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ def translate_to_english(api_key, text, lang_code):
|
|
57 |
try:
|
58 |
prompt = f"Translate the following text from {lang_code} to English: \n\n{text}"
|
59 |
response = openai.ChatCompletion.create(
|
60 |
-
model="gpt-
|
61 |
messages=[{"role": "system", "content": "You are a helpful assistant that translates text."},
|
62 |
{"role": "user", "content": prompt}]
|
63 |
)
|
|
|
57 |
try:
|
58 |
prompt = f"Translate the following text from {lang_code} to English: \n\n{text}"
|
59 |
response = openai.ChatCompletion.create(
|
60 |
+
model="gpt-4o",
|
61 |
messages=[{"role": "system", "content": "You are a helpful assistant that translates text."},
|
62 |
{"role": "user", "content": prompt}]
|
63 |
)
|