Spaces:
Sleeping
Sleeping
Tuchuanhuhuhu
commited on
Commit
•
16c2ffc
1
Parent(s):
86a7227
将设置API Key的方式改回视频里的样式
Browse files- ChuanhuChatbot.py +6 -5
ChuanhuChatbot.py
CHANGED
@@ -6,6 +6,10 @@ import argparse
|
|
6 |
from utils import *
|
7 |
from presets import *
|
8 |
|
|
|
|
|
|
|
|
|
9 |
parse = argparse.ArgumentParser()
|
10 |
parse.add_argument('--host', type=str, help='Server Host', default="127.0.0.1")
|
11 |
parse.add_argument('--port', type=int, help='Server Port', default=7860)
|
@@ -13,14 +17,11 @@ parse.add_argument('--api_key', type=str, help='OpenAI API Key', default="")
|
|
13 |
parse.add_argument('--share', type=bool, help='Share to public', default=False)
|
14 |
args = parse.parse_args()
|
15 |
|
16 |
-
my_api_key = "" # 在这里输入你的 API 密钥
|
17 |
-
HIDE_MY_KEY = False # 如果你想在UI中隐藏你的 API 密钥,将此值设置为 True
|
18 |
-
|
19 |
-
gr.Chatbot.postprocess = postprocess
|
20 |
-
|
21 |
if args.api_key:
|
22 |
my_api_key = args.api_key
|
23 |
|
|
|
|
|
24 |
#if we are running in Docker
|
25 |
if os.environ.get('dockerrun') == 'yes':
|
26 |
dockerflag = True
|
|
|
6 |
from utils import *
|
7 |
from presets import *
|
8 |
|
9 |
+
|
10 |
+
my_api_key = "" # 在这里输入你的 API 密钥
|
11 |
+
HIDE_MY_KEY = False # 如果你想在UI中隐藏你的 API 密钥,将此值设置为 True
|
12 |
+
|
13 |
parse = argparse.ArgumentParser()
|
14 |
parse.add_argument('--host', type=str, help='Server Host', default="127.0.0.1")
|
15 |
parse.add_argument('--port', type=int, help='Server Port', default=7860)
|
|
|
17 |
parse.add_argument('--share', type=bool, help='Share to public', default=False)
|
18 |
args = parse.parse_args()
|
19 |
|
|
|
|
|
|
|
|
|
|
|
20 |
if args.api_key:
|
21 |
my_api_key = args.api_key
|
22 |
|
23 |
+
gr.Chatbot.postprocess = postprocess
|
24 |
+
|
25 |
#if we are running in Docker
|
26 |
if os.environ.get('dockerrun') == 'yes':
|
27 |
dockerflag = True
|