Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
taprosoft committed Dec 7, 2024
1 parent ee2e05e commit 6b80516
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flowsettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from pathlib import Path

from decouple import config
from ktem.utils.lang import SUPPORTED_LANGUAGE_MAP
from theflow.settings.default import * # noqa

cur_frame = currentframe()
Expand Down Expand Up @@ -284,7 +285,7 @@
"lang": {
"name": "Language",
"value": "en",
"choices": [("English", "en"), ("Japanese", "ja"), ("Vietnamese", "vi")],
"choices": [(lang, code) for code, lang in SUPPORTED_LANGUAGE_MAP.items()],
"component": "dropdown",
},
"max_context_length": {
Expand Down

0 comments on commit 6b80516

Please sign in to comment.