Spaces:
Running
Running
Merge pull request #13 from Y-IAB/4-language
Browse files[#4] Add more language options to Translation option
app.py
CHANGED
@@ -22,8 +22,9 @@ SUPPORTED_MODELS = [
|
|
22 |
"gpt-4", "gpt-4-0125-preview", "gpt-3.5-turbo", "gemini-pro"
|
23 |
]
|
24 |
|
25 |
-
|
26 |
-
|
|
|
27 |
|
28 |
|
29 |
class ResponseType(enum.Enum):
|
|
|
22 |
"gpt-4", "gpt-4-0125-preview", "gpt-3.5-turbo", "gemini-pro"
|
23 |
]
|
24 |
|
25 |
+
SUPPORTED_TRANSLATION_LANGUAGES = [
|
26 |
+
"Korean", "English", "Chinese", "Japanese", "Spanish", "French"
|
27 |
+
]
|
28 |
|
29 |
|
30 |
class ResponseType(enum.Enum):
|