manhdo's picture
First
c48801f
raw
history blame contribute delete
No virus
5.34 kB
from dataclasses import dataclass
from typing import List # NOQA: UP035
from .constants import AI_ROLE_OPTIONS_EN, AI_ROLE_OPTIONS_VI
@dataclass
class Locale:
ai_role_options: List[str]
ai_role_prefix: str
ai_role_postfix: str
title: str
language: str
lang_code: str
chat_placeholder: str
chat_run_btn: str
chat_clear_btn: str
chat_save_btn: str
fill_api_address: str
select_placeholder1: str
select_placeholder2: str
select_placeholder3: str
radio_placeholder: str
radio_text1: str
radio_text2: str
reset_conversation: str
stt_placeholder: str
footer_title: str
footer_option0: str
footer_option1: str
footer_chat: str
footer_channel: str
product_information: str
tokens_count: str
message_cost: str
total_cost: str
# --- LOCALE SETTINGS ---
en = Locale(
ai_role_options=AI_ROLE_OPTIONS_EN,
ai_role_prefix="You are a female",
ai_role_postfix="Answer as concisely as possible.",
title="HangerAI Chatbot Assistant",
language="English",
lang_code="en",
chat_placeholder="Start Your Conversation With AI:",
chat_run_btn="Ask",
chat_clear_btn="Clear",
chat_save_btn="Save",
fill_api_address="Enter api address",
select_placeholder1="Select Model",
select_placeholder2="Select Role",
select_placeholder3="Create Role",
radio_placeholder="Role Interaction",
radio_text1="Select",
radio_text2="Create",
reset_conversation="New chat",
stt_placeholder="To Hear The Voice Of AI Press Play",
footer_title="Support & Feedback",
footer_option0="Chat",
footer_option1="Info",
footer_chat="AI Talks Chat",
footer_channel="AI Talks Channel",
product_information="""HangerChatbot tailored for the retail industry, specifically focusing on the fashion sector. Our chatbot is designed to provide exceptional assistance to customers in their product selection, exploration, and search. But that's not all – our product goes a step further by offering personalized clothing recommendations based on user interactions, preferences, history, and inquiries.\n
Powered by cutting-edge and state-of-the-art artificial intelligence technologies, our chatbot is here to revolutionize the way customers engage with your fashion brand. Whether it's helping customers find the perfect outfit, suggesting the latest trends, or answering their fashion-related questions, our chatbot is the ultimate solution to enhance the shopping experience.\n
Don't miss out on this opportunity to take your retail business to the next level with our advanced and customer-centric chatbot solution. Experience the future of retail with our innovative product today!""",
tokens_count="Tokens count: ",
message_cost="Message cost: ",
total_cost="Total cost of conversation: ",
)
vi = Locale(
ai_role_options=AI_ROLE_OPTIONS_VI,
ai_role_prefix="You are a female",
ai_role_postfix="Answer as concisely as possible.",
title="Trợ lý ảo Hanger",
language="Tiếng Việt",
lang_code="vi",
chat_placeholder="Start Your Conversation With AI:",
chat_run_btn="Ask",
chat_clear_btn="Clear",
chat_save_btn="Save",
fill_api_address="Nhập địa chỉ API",
select_placeholder1="Chọn mô hình",
select_placeholder2="Lựa chọn vai trò",
select_placeholder3="Tạo vai trò",
radio_placeholder="Lựa chọn phiên bản của trợ lý ảo",
radio_text1="Lựa chọn",
radio_text2="Tạo mới",
reset_conversation="Hội thoại mới",
stt_placeholder="To Hear The Voice Of AI Press Play",
footer_title="Support & Feedback",
footer_option0="Nói chuyện",
footer_option1="Thông tin",
footer_chat="AI Talks Chat",
footer_channel="AI Talks Channel",
product_information="""HangerChatbot được tùy chỉnh dành cho ngành bán lẻ, đặc biệt là tập trung vào lĩnh vực thời trang. Chatbot của chúng tôi được thiết kế để cung cấp sự hỗ trợ xuất sắc cho khách hàng trong việc lựa chọn sản phẩm, khám phá và tìm kiếm. Nhưng điều đó chưa đủ - sản phẩm của chúng tôi còn đi xa hơn bằng cách cung cấp các gợi ý về trang phục cá nhân dựa trên tương tác của người dùng, sở thích, lịch sử và câu hỏi.\n
Được trang bị bởi các công nghệ trí tuệ nhân tạo tiên tiến và hiện đại, chatbot của chúng tôi sẽ cách mạng hóa cách khách hàng tương tác với thương hiệu thời trang của bạn. Cho dù đó là giúp khách hàng tìm trang phục hoàn hảo, đề xuất các xu hướng mới nhất hoặc trả lời các câu hỏi liên quan đến thời trang, chatbot của chúng tôi là giải pháp tối ưu để nâng cao trải nghiệm mua sắm.\n
Đừng bỏ lỡ cơ hội này để đưa doanh nghiệp bán lẻ của bạn lên tầm cao mới với giải pháp chatbot tiên tiến và tập trung vào khách hàng của chúng tôi. Trải nghiệm tương lai của ngành bán lẻ với sản phẩm độc đáo của chúng tôi ngay hôm nay!""",
tokens_count="Tokens count: ",
message_cost="Message cost: ",
total_cost="Total cost of conversation: ",
)