Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the path to the tranlsations.json #244

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion bot/openai_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,19 @@ def default_max_tokens(model: str) -> int:
return 1200 if model in GPT_3_MODELS else 2400


with open('translations.json', 'r', encoding='utf-8') as f:
### this will reload the correct translations.json which is located inside the parent directory

import os

parent_dir_path = os.path.join(os.path.dirname(__file__), os.pardir)
translations_file_path = os.path.join(parent_dir_path, 'translations.json')

with open(translations_file_path, 'r', encoding='utf-8') as f:
translations = json.load(f)

#with open('translations.json', 'r', encoding='utf-8') as f:
# translations = json.load(f)


def localized_text(key, bot_language):
"""
Expand Down