Spaces:
Running
Running
suhyun.kang
commited on
Commit
•
8ee349a
1
Parent(s):
0ac094d
[#4] Add more language options to Translation option.
Browse filesChanges:
- Added more language options to the Translation option.
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 |
-
|
23 |
-
|
|
|
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):
|