Spaces:
Runtime error
Runtime error
JohnSmith9982
commited on
Commit
•
4399c5c
1
Parent(s):
9a9f703
Upload 3 files
Browse files- app.py +44 -44
- presets.py +0 -1
app.py
CHANGED
@@ -51,9 +51,10 @@ with gr.Blocks(css=customCSS,) as demo:
|
|
51 |
FALSECONSTANT = gr.State(False)
|
52 |
topic = gr.State("未命名对话历史记录")
|
53 |
|
54 |
-
gr.HTML("""
|
55 |
-
<div style="text-align: center; margin-top: 20px;">
|
56 |
-
""")
|
|
|
57 |
|
58 |
with gr.Row(scale=1).style(equal_height=True):
|
59 |
|
@@ -69,53 +70,52 @@ with gr.Blocks(css=customCSS,) as demo:
|
|
69 |
with gr.Row(scale=1):
|
70 |
emptyBtn = gr.Button("🧹 新的对话",)
|
71 |
retryBtn = gr.Button("🔄 重新生成")
|
72 |
-
delLastBtn = gr.Button("🗑️
|
73 |
reduceTokenBtn = gr.Button("♻️ 总结对话")
|
74 |
|
75 |
|
76 |
|
77 |
with gr.Column():
|
78 |
-
with gr.
|
79 |
-
gr.HTML(title)
|
80 |
status_display = gr.Markdown("status: ready")
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
|
120 |
|
121 |
|
|
|
51 |
FALSECONSTANT = gr.State(False)
|
52 |
topic = gr.State("未命名对话历史记录")
|
53 |
|
54 |
+
# gr.HTML("""
|
55 |
+
# <div style="text-align: center; margin-top: 20px;">
|
56 |
+
# """)
|
57 |
+
gr.HTML(title)
|
58 |
|
59 |
with gr.Row(scale=1).style(equal_height=True):
|
60 |
|
|
|
70 |
with gr.Row(scale=1):
|
71 |
emptyBtn = gr.Button("🧹 新的对话",)
|
72 |
retryBtn = gr.Button("🔄 重新生成")
|
73 |
+
delLastBtn = gr.Button("🗑️ 删除一条对话")
|
74 |
reduceTokenBtn = gr.Button("♻️ 总结对话")
|
75 |
|
76 |
|
77 |
|
78 |
with gr.Column():
|
79 |
+
with gr.Column(min_width=50,scale=1):
|
|
|
80 |
status_display = gr.Markdown("status: ready")
|
81 |
+
with gr.Tab(label="ChatGPT"):
|
82 |
+
keyTxt = gr.Textbox(show_label=True, placeholder=f"OpenAI API-key...",value=my_api_key, type="password", visible=not HIDE_MY_KEY, label="API-Key")
|
83 |
+
model_select_dropdown = gr.Dropdown(label="选择模型", choices=MODELS, multiselect=False, value=MODELS[0])
|
84 |
+
with gr.Accordion("参数", open=False):
|
85 |
+
top_p = gr.Slider(minimum=-0, maximum=1.0, value=1.0, step=0.05,
|
86 |
+
interactive=True, label="Top-p (nucleus sampling)",)
|
87 |
+
temperature = gr.Slider(minimum=-0, maximum=2.0, value=1.0,
|
88 |
+
step=0.1, interactive=True, label="Temperature",)
|
89 |
+
use_streaming_checkbox = gr.Checkbox(label="实时传输回答", value=True, visible=enable_streaming_option)
|
90 |
+
use_websearch_checkbox = gr.Checkbox(label="使用在线搜索", value=False)
|
91 |
+
|
92 |
+
with gr.Tab(label="Prompt"):
|
93 |
+
systemPromptTxt = gr.Textbox(show_label=True, placeholder=f"在这里输入System Prompt...", label="System prompt", value=initial_prompt).style(container=True)
|
94 |
+
with gr.Accordion(label="加载Prompt模板", open=True):
|
95 |
+
with gr.Column():
|
96 |
+
with gr.Row():
|
97 |
+
with gr.Column(scale=6):
|
98 |
+
templateFileSelectDropdown = gr.Dropdown(label="选择Prompt模板集合文件", choices=get_template_names(plain=True), multiselect=False, value=get_template_names(plain=True)[0])
|
99 |
+
with gr.Column(scale=1):
|
100 |
+
templateRefreshBtn = gr.Button("🔄 刷新")
|
101 |
+
with gr.Row():
|
102 |
+
with gr.Column():
|
103 |
+
templateSelectDropdown = gr.Dropdown(label="从Prompt模板中加载", choices=load_template(get_template_names(plain=True)[0], mode=1), multiselect=False, value=load_template(get_template_names(plain=True)[0], mode=1)[0])
|
104 |
+
|
105 |
+
with gr.Tab(label="保存/加载"):
|
106 |
+
with gr.Accordion(label="保存/加载对话历史记录", open=True):
|
107 |
+
with gr.Column():
|
108 |
+
with gr.Row():
|
109 |
+
with gr.Column(scale=6):
|
110 |
+
saveFileName = gr.Textbox(
|
111 |
+
show_label=True, placeholder=f"在这里输入保存的文件名...", label="设置保存文件名", value="对话历史记录").style(container=True)
|
112 |
+
with gr.Column(scale=1):
|
113 |
+
saveHistoryBtn = gr.Button("💾 保存对话")
|
114 |
+
with gr.Row():
|
115 |
+
with gr.Column(scale=6):
|
116 |
+
historyFileSelectDropdown = gr.Dropdown(label="从列表中加载对话", choices=get_history_names(plain=True), multiselect=False, value=get_history_names(plain=True)[0])
|
117 |
+
with gr.Column(scale=1):
|
118 |
+
historyRefreshBtn = gr.Button("🔄 刷新")
|
119 |
|
120 |
|
121 |
|
presets.py
CHANGED
@@ -31,7 +31,6 @@ pre code {
|
|
31 |
}
|
32 |
|
33 |
*{
|
34 |
-
border-radius: 3px !important;
|
35 |
transition: all 0.6s;
|
36 |
}
|
37 |
|
|
|
31 |
}
|
32 |
|
33 |
*{
|
|
|
34 |
transition: all 0.6s;
|
35 |
}
|
36 |
|