shukdevdatta123 commited on
Commit
641580e
·
verified ·
1 Parent(s): e7339e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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-4",
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
  )