suhyun.kang commited on
Commit
8ee349a
1 Parent(s): 0ac094d

[#4] Add more language options to Translation option.

Browse files

Changes:
- Added more language options to the Translation option.

Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -19,8 +19,9 @@ db = firestore.client()
19
  # TODO(#1): Add more models.
20
  SUPPORTED_MODELS = ["gpt-4", "gpt-4-turbo", "gpt-3.5-turbo", "gemini-pro"]
21
 
22
- # TODO(#4): Add more languages.
23
- SUPPORTED_TRANSLATION_LANGUAGES = ["Korean", "English"]
 
24
 
25
 
26
  class ResponseType(enum.Enum):
 
19
  # TODO(#1): Add more models.
20
  SUPPORTED_MODELS = ["gpt-4", "gpt-4-turbo", "gpt-3.5-turbo", "gemini-pro"]
21
 
22
+ SUPPORTED_TRANSLATION_LANGUAGES = [
23
+ "Korean", "English", "Chinese", "Japanese", "Spanish", "French"
24
+ ]
25
 
26
 
27
  class ResponseType(enum.Enum):