|
import gradio as gr |
|
|
|
import os |
|
import sys |
|
from utils import * |
|
from presets import * |
|
|
|
my_api_key = "" |
|
HIDE_MY_KEY = False |
|
|
|
gr.Chatbot.postprocess = postprocess |
|
|
|
|
|
if os.environ.get('dockerrun') == 'yes': |
|
dockerflag = True |
|
else: |
|
dockerflag = False |
|
|
|
authflag = False |
|
|
|
if dockerflag: |
|
my_api_key = os.environ.get('my_api_key') |
|
if my_api_key == "empty": |
|
print("Please give a api key!") |
|
sys.exit(1) |
|
|
|
username = os.environ.get('USERNAME') |
|
password = os.environ.get('PASSWORD') |
|
if not (isinstance(username, type(None)) or isinstance(password, type(None))): |
|
authflag = True |
|
else: |
|
if os.path.exists("api_key.txt"): |
|
with open("api_key.txt", "r") as f: |
|
my_api_key = f.read().strip() |
|
if os.path.exists("auth.json"): |
|
with open("auth.json", "r") as f: |
|
auth = json.load(f) |
|
username = auth["username"] |
|
password = auth["password"] |
|
if username != "" and password != "": |
|
authflag = True |
|
|
|
with gr.Blocks(css=customCSS) as demo: |
|
gr.HTML(title) |
|
gr.HTML('''<center><a href="https://huggingface.co/spaces/JohnSmith9982/ChuanhuChatGPT?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="复制 Space"></a>强烈建议点击上面的按钮复制一份这个Space,在你自己的Space里运行,响应更迅速、也更安全👆</center>''') |
|
keyTxt = gr.Textbox(show_label=True, placeholder=f"在这里输入你的OpenAI API-key...", |
|
value=my_api_key, label="API Key", type="password", visible=not HIDE_MY_KEY).style(container=True) |
|
chatbot = gr.Chatbot() |
|
history = gr.State([]) |
|
promptTemplates = gr.State(load_template(get_template_names(plain=True)[0], mode=2)) |
|
TRUECOMSTANT = gr.State(True) |
|
FALSECONSTANT = gr.State(False) |
|
topic = gr.State("未命名对话历史记录") |
|
|
|
with gr.Row(): |
|
with gr.Column(scale=12): |
|
txt = gr.Textbox(show_label=False, placeholder="在这里输入").style( |
|
container=False) |
|
with gr.Column(min_width=50, scale=1): |
|
submitBtn = gr.Button("🚀", variant="primary") |
|
with gr.Row(): |
|
emptyBtn = gr.Button("🧹 新的对话") |
|
retryBtn = gr.Button("🔄 重新生成") |
|
delLastBtn = gr.Button("🗑️ 删除上条对话") |
|
reduceTokenBtn = gr.Button("♻️ 总结对话") |
|
statusDisplay = gr.Markdown("status: ready") |
|
systemPromptTxt = gr.Textbox(show_label=True, placeholder=f"在这里输入System Prompt...", |
|
label="System prompt", value=initial_prompt).style(container=True) |
|
with gr.Accordion(label="加载Prompt模板", open=False): |
|
with gr.Column(): |
|
with gr.Row(): |
|
with gr.Column(scale=6): |
|
templateFileSelectDropdown = gr.Dropdown(label="选择Prompt模板集合文件(.csv)", choices=get_template_names(plain=True), multiselect=False, value=get_template_names(plain=True)[0]) |
|
with gr.Column(scale=1): |
|
templateRefreshBtn = gr.Button("🔄 刷新") |
|
templaeFileReadBtn = gr.Button("📂 读入模板") |
|
with gr.Row(): |
|
with gr.Column(scale=6): |
|
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]) |
|
with gr.Column(scale=1): |
|
templateApplyBtn = gr.Button("⬇️ 应用") |
|
with gr.Accordion(label="保存/加载对话历史记录", open=False): |
|
with gr.Column(): |
|
with gr.Row(): |
|
with gr.Column(scale=6): |
|
saveFileName = gr.Textbox( |
|
show_label=True, placeholder=f"在这里输入保存的文件名...", label="设置保存文件名", value="对话历史记录").style(container=True) |
|
with gr.Column(scale=1): |
|
saveHistoryBtn = gr.Button("💾 保存对话") |
|
with gr.Row(): |
|
with gr.Column(scale=6): |
|
historyFileSelectDropdown = gr.Dropdown(label="从列表中加载对话", choices=get_history_names(plain=True), multiselect=False, value=get_history_names(plain=True)[0]) |
|
with gr.Column(scale=1): |
|
historyRefreshBtn = gr.Button("🔄 刷新") |
|
historyReadBtn = gr.Button("📂 读入对话") |
|
|
|
with gr.Accordion("参数", open=False): |
|
top_p = gr.Slider(minimum=-0, maximum=1.0, value=1.0, step=0.05, |
|
interactive=True, label="Top-p (nucleus sampling)",) |
|
temperature = gr.Slider(minimum=-0, maximum=5.0, value=1.0, |
|
step=0.1, interactive=True, label="Temperature",) |
|
|
|
|
|
gr.Markdown(description) |
|
|
|
|
|
txt.submit(predict, [txt, top_p, temperature, keyTxt, |
|
chatbot, history, systemPromptTxt], [chatbot, history, statusDisplay]) |
|
txt.submit(reset_textbox, [], [txt]) |
|
submitBtn.click(predict, [txt, top_p, temperature, keyTxt, chatbot, |
|
history, systemPromptTxt], [chatbot, history, statusDisplay], show_progress=True) |
|
submitBtn.click(reset_textbox, [], [txt]) |
|
emptyBtn.click(reset_state, outputs=[chatbot, history]) |
|
retryBtn.click(predict, [txt, top_p, temperature, keyTxt, chatbot, history, |
|
systemPromptTxt, TRUECOMSTANT], [chatbot, history, statusDisplay], show_progress=True) |
|
delLastBtn.click(delete_last_conversation, [chatbot, history], [ |
|
chatbot, history], show_progress=True) |
|
reduceTokenBtn.click(predict, [txt, top_p, temperature, keyTxt, chatbot, history, |
|
systemPromptTxt, FALSECONSTANT, TRUECOMSTANT], [chatbot, history, statusDisplay], show_progress=True) |
|
saveHistoryBtn.click(save_chat_history, [ |
|
saveFileName, systemPromptTxt, history, chatbot], None, show_progress=True) |
|
saveHistoryBtn.click(get_history_names, None, [historyFileSelectDropdown]) |
|
historyRefreshBtn.click(get_history_names, None, [historyFileSelectDropdown]) |
|
historyReadBtn.click(load_chat_history, [historyFileSelectDropdown, systemPromptTxt, history, chatbot], [saveFileName, systemPromptTxt, history, chatbot], show_progress=True) |
|
templateRefreshBtn.click(get_template_names, None, [templateFileSelectDropdown]) |
|
templaeFileReadBtn.click(load_template, [templateFileSelectDropdown], [promptTemplates, templateSelectDropdown], show_progress=True) |
|
templateApplyBtn.click(get_template_content, [promptTemplates, templateSelectDropdown, systemPromptTxt], [systemPromptTxt], show_progress=True) |
|
|
|
print("川虎的温馨提示:访问 http://localhost:7860 查看界面") |
|
|
|
demo.title = "川虎ChatGPT 🚀" |
|
|
|
|
|
if dockerflag: |
|
if authflag: |
|
demo.queue().launch(server_name="0.0.0.0", server_port=7860,auth=(username, password)) |
|
else: |
|
demo.queue().launch(server_name="0.0.0.0", server_port=7860, share=False) |
|
|
|
else: |
|
if authflag: |
|
demo.queue().launch(share=False, auth=(username, password)) |
|
else: |
|
demo.queue().launch(share=False) |
|
|
|
|
|
|
|
|