Spaces:
Sleeping
Sleeping
Update ChuanhuChatbot.py
Browse files- ChuanhuChatbot.py +5 -6
ChuanhuChatbot.py
CHANGED
@@ -7,7 +7,7 @@ from utils import *
|
|
7 |
from presets import *
|
8 |
|
9 |
|
10 |
-
my_api_key = "" # 在这里输入你的 API 密钥
|
11 |
|
12 |
#if we are running in Docker
|
13 |
if os.environ.get('dockerrun') == 'yes':
|
@@ -137,7 +137,6 @@ with gr.Blocks(css=customCSS) as demo:
|
|
137 |
|
138 |
templateApplyBtn.click(get_template_content, [promptTemplates, templateSelectDropdown, systemPromptTxt], [systemPromptTxt], show_progress=True)
|
139 |
|
140 |
-
print("川虎的温馨提示:访问 http://localhost:7860 查看界面")
|
141 |
# 默认开启本地服务器,默认可以直接从IP访问,默认不创建公开分享链接
|
142 |
demo.title = "川虎ChatGPT 🚀"
|
143 |
|
@@ -153,7 +152,7 @@ if __name__ == "__main__":
|
|
153 |
if authflag:
|
154 |
demo.queue().launch(share=False, auth=(username, password))
|
155 |
else:
|
156 |
-
demo.queue().launch(share=False) # 改为 share=True 可以创建公开分享链接
|
157 |
-
|
158 |
-
|
159 |
-
|
|
|
7 |
from presets import *
|
8 |
|
9 |
|
10 |
+
my_api_key = os.environ["key"] # 在这里输入你的 API 密钥
|
11 |
|
12 |
#if we are running in Docker
|
13 |
if os.environ.get('dockerrun') == 'yes':
|
|
|
137 |
|
138 |
templateApplyBtn.click(get_template_content, [promptTemplates, templateSelectDropdown, systemPromptTxt], [systemPromptTxt], show_progress=True)
|
139 |
|
|
|
140 |
# 默认开启本地服务器,默认可以直接从IP访问,默认不创建公开分享链接
|
141 |
demo.title = "川虎ChatGPT 🚀"
|
142 |
|
|
|
152 |
if authflag:
|
153 |
demo.queue().launch(share=False, auth=(username, password))
|
154 |
else:
|
155 |
+
#demo.queue().launch(share=False) # 改为 share=True 可以创建公开分享链接
|
156 |
+
#demo.queue().launch(server_name="0.0.0.0", server_port=7860, share=False) # 可自定义端口
|
157 |
+
demo.queue().launch(server_name="0.0.0.0", server_port=7860,auth=("os.environ["userpass"]", "os.environ["userpass"]")) # 可设置用户名与密码
|
158 |
+
#demo.queue().launch(auth=("os.environ["userpass"]", "os.environ["userpass"]")) # 适合Nginx反向代理
|