diff --git a/webui/Main.py b/webui/Main.py index 666cd7c..ad32c1f 100644 --- a/webui/Main.py +++ b/webui/Main.py @@ -143,6 +143,8 @@ def tr(key): return loc.get("Translation", {}).get(key, key) +st.write(tr("Get Help")) + with st.expander(tr("Basic Settings"), expanded=False): config_panels = st.columns(3) left_config_panel = config_panels[0] @@ -184,7 +186,6 @@ with st.expander(tr("Basic Settings"), expanded=False): llm_provider = st.selectbox(tr("LLM Provider"), options=llm_providers, index=saved_llm_provider_index) llm_provider = llm_provider.lower() config.app["llm_provider"] = llm_provider - st.write(f"**{tr('LLM Provider')}:** {llm_provider}") llm_api_key = config.app.get(f"{llm_provider}_api_key", "") llm_base_url = config.app.get(f"{llm_provider}_base_url", "") diff --git a/webui/i18n/de.json b/webui/i18n/de.json index 3369e24..63bd397 100644 --- a/webui/i18n/de.json +++ b/webui/i18n/de.json @@ -57,6 +57,7 @@ "Base Url": "Base Url", "Model Name": "Model Name", "Please Enter the LLM API Key": "Please Enter the **LLM API Key**", - "Please Enter the Pexels API Key": "Please Enter the **Pexels API Key**" + "Please Enter the Pexels API Key": "Please Enter the **Pexels API Key**", + "Get Help": "If you need help, or have any questions, you can join discord for help: https://harryai.cc/moneyprinterturbo" } } \ No newline at end of file diff --git a/webui/i18n/en.json b/webui/i18n/en.json index 79af2ac..47bd073 100644 --- a/webui/i18n/en.json +++ b/webui/i18n/en.json @@ -57,6 +57,7 @@ "Base Url": "Base Url", "Model Name": "Model Name", "Please Enter the LLM API Key": "Please Enter the **LLM API Key**", - "Please Enter the Pexels API Key": "Please Enter the **Pexels API Key**" + "Please Enter the Pexels API Key": "Please Enter the **Pexels API Key**", + "Get Help": "If you need help, or have any questions, you can join discord for help: https://harryai.cc/moneyprinterturbo" } } \ No newline at end of file diff --git a/webui/i18n/zh.json b/webui/i18n/zh.json index b949a27..7d71d05 100644 --- a/webui/i18n/zh.json +++ b/webui/i18n/zh.json @@ -57,6 +57,7 @@ "Base Url": "Base Url (可选)", "Model Name": "模型名称 (:blue[需要到大模型提供商的后台确认被授权的模型名称])", "Please Enter the LLM API Key": "请先填写大模型 **API Key**", - "Please Enter the Pexels API Key": "请先填写 **Pexels API Key**" + "Please Enter the Pexels API Key": "请先填写 **Pexels API Key**", + "Get Help": "有任何问题或建议,可以加入 **微信群** 求助或讨论:https://harryai.cc/moneyprinterturbo" } } \ No newline at end of file