# -*- coding:utf-8 -*- title = """

ChatGPT-dteam 🚀

""" description = """
""" customCSS = """ /* 表格 */ table { margin: 1em 0; border-collapse: collapse; empty-cells: show; } td,th { border: 1.2px solid var(--border-color-primary) !important; padding: 0.2em; } thead { background-color: rgba(175,184,193,0.2); } thead th { padding: .5em .2em; } /* 行内代码 */ code { display: inline; white-space: break-spaces; border-radius: 6px; margin: 0 2px 0 2px; padding: .2em .4em .1em .4em; background-color: rgba(175,184,193,0.2); } /* 代码块 */ pre code { display: block; overflow: auto; white-space: pre; background-color: hsla(0, 0%, 0%, 80%)!important; border-radius: 10px; padding: 1rem 1.2rem 1rem; margin: 1.2em 2em 1.2em 0.5em; color: #FFF; box-shadow: 6px 6px 16px hsla(0, 0%, 0%, 0.2); } /* 代码高亮样式 */ .highlight .hll { background-color: #49483e } .highlight .c { color: #75715e } /* Comment */ .highlight .err { color: #960050; background-color: #1e0010 } /* Error */ .highlight .k { color: #66d9ef } /* Keyword */ .highlight .l { color: #ae81ff } /* Literal */ .highlight .n { color: #f8f8f2 } /* Name */ .highlight .o { color: #f92672 } /* Operator */ .highlight .p { color: #f8f8f2 } /* Punctuation */ .highlight .ch { color: #75715e } /* Comment.Hashbang */ .highlight .cm { color: #75715e } /* Comment.Multiline */ .highlight .cp { color: #75715e } /* Comment.Preproc */ .highlight .cpf { color: #75715e } /* Comment.PreprocFile */ .highlight .c1 { color: #75715e } /* Comment.Single */ .highlight .cs { color: #75715e } /* Comment.Special */ .highlight .gd { color: #f92672 } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gi { color: #a6e22e } /* Generic.Inserted */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #75715e } /* Generic.Subheading */ .highlight .kc { color: #66d9ef } /* Keyword.Constant */ .highlight .kd { color: #66d9ef } /* Keyword.Declaration */ .highlight .kn { color: #f92672 } /* Keyword.Namespace */ .highlight .kp { color: #66d9ef } /* Keyword.Pseudo */ .highlight .kr { color: #66d9ef } /* Keyword.Reserved */ .highlight .kt { color: #66d9ef } /* Keyword.Type */ .highlight .ld { color: #e6db74 } /* Literal.Date */ .highlight .m { color: #ae81ff } /* Literal.Number */ .highlight .s { color: #e6db74 } /* Literal.String */ .highlight .na { color: #a6e22e } /* Name.Attribute */ .highlight .nb { color: #f8f8f2 } /* Name.Builtin */ .highlight .nc { color: #a6e22e } /* Name.Class */ .highlight .no { color: #66d9ef } /* Name.Constant */ .highlight .nd { color: #a6e22e } /* Name.Decorator */ .highlight .ni { color: #f8f8f2 } /* Name.Entity */ .highlight .ne { color: #a6e22e } /* Name.Exception */ .highlight .nf { color: #a6e22e } /* Name.Function */ .highlight .nl { color: #f8f8f2 } /* Name.Label */ .highlight .nn { color: #f8f8f2 } /* Name.Namespace */ .highlight .nx { color: #a6e22e } /* Name.Other */ .highlight .py { color: #f8f8f2 } /* Name.Property */ .highlight .nt { color: #f92672 } /* Name.Tag */ .highlight .nv { color: #f8f8f2 } /* Name.Variable */ .highlight .ow { color: #f92672 } /* Operator.Word */ .highlight .w { color: #f8f8f2 } /* Text.Whitespace */ .highlight .mb { color: #ae81ff } /* Literal.Number.Bin */ .highlight .mf { color: #ae81ff } /* Literal.Number.Float */ .highlight .mh { color: #ae81ff } /* Literal.Number.Hex */ .highlight .mi { color: #ae81ff } /* Literal.Number.Integer */ .highlight .mo { color: #ae81ff } /* Literal.Number.Oct */ .highlight .sa { color: #e6db74 } /* Literal.String.Affix */ .highlight .sb { color: #e6db74 } /* Literal.String.Backtick */ .highlight .sc { color: #e6db74 } /* Literal.String.Char */ .highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */ .highlight .sd { color: #e6db74 } /* Literal.String.Doc */ .highlight .s2 { color: #e6db74 } /* Literal.String.Double */ .highlight .se { color: #ae81ff } /* Literal.String.Escape */ .highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */ .highlight .si { color: #e6db74 } /* Literal.String.Interpol */ .highlight .sx { color: #e6db74 } /* Literal.String.Other */ .highlight .sr { color: #e6db74 } /* Literal.String.Regex */ .highlight .s1 { color: #e6db74 } /* Literal.String.Single */ .highlight .ss { color: #e6db74 } /* Literal.String.Symbol */ .highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #a6e22e } /* Name.Function.Magic */ .highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */ .highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */ .highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */ .highlight .vm { color: #f8f8f2 } /* Name.Variable.Magic */ .highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */ *{ transition: all 0.6s; } """ summarize_prompt = "你是谁?我们刚才聊了什么?" # 总结对话时的 prompt # MODELS = ["gpt-3.5-turbo", "gpt-3.5-turbo-0301", "gpt-4","gpt-4-0314", "gpt-4-32k", "gpt-4-32k-0314"] # 可选的模型 MODELS = ["gpt-3.5-turbo-0301"] websearch_prompt = """Web search results: {web_results} Current date: {current_date} Instructions: Using the provided web search results, write a comprehensive reply to the given query. Make sure to cite results using [[number](URL)] notation after the reference. If the provided search results refer to multiple subjects with the same name, write separate answers for each subject. Query: {query} """ # 错误信息 standard_error_msg = "☹️发生了错误:" # 错误信息的标准前缀 error_retrieve_prompt = "请检查网络连接,或者API-Key是否有效。" # 获取对话时发生错误 connection_timeout_prompt = "连接超时,无法获取对话。" # 连接超时 read_timeout_prompt = "读取超时,无法获取对话。" # 读取超时 proxy_error_prompt = "代理错误,无法获取对话。" # 代理错误 ssl_error_prompt = "SSL错误,无法获取对话。" # SSL 错误 no_apikey_msg = "API key长度不是51位,请检查是否输入正确。" # API key 长度不足 51 位 no_invite_code_msg = "输入的invite code不存在" no_useful_invite_code_msg = "输入的invite code状态不可用" max_token_streaming = 3500 # 流式对话时的最大 token 数 timeout_streaming = 30 # 流式对话时的超时时间 max_token_all = 3500 # 非流式对话时的最大 token 数 timeout_all = 200 # 非流式对话时的超时时间 enable_streaming_option = True # 是否启用选择选择是否实时显示回答的勾选框 HIDE_MY_KEY = False # 如果你想在UI中隐藏你的 API 密钥,将此值设置为 True