| |
| title = """<h1 align="left"> 五湖社 的ChatGPT 🚀</h1>""" |
| description = """<div align=center> |
| |
| 此App使用 `gpt-3.5-turbo` 大语言模型 |
| </div> |
| """ |
| customCSS = """ |
| 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; |
| white-space: pre; |
| background-color: hsla(0, 0%, 0%, 72%); |
| border: solid 5px var(--color-border-primary) !important; |
| border-radius: 10px; |
| padding: 0 1.2rem 1.2rem; |
| margin-top: 1em !important; |
| color: #FFF; |
| box-shadow: inset 0px 8px 16px hsla(0, 0%, 0%, .2) |
| } |
| |
| *{ |
| transition: all 0.6s; |
| } |
| |
| |
| """ |
|
|
| summarize_prompt = "你是谁?我们刚才聊了什么?" |
| MODELS = ["gpt-3.5-turbo", "gpt-3.5-turbo-0301", "gpt-4","gpt-4-0314", "gpt-4-32k", "gpt-4-32k-0314"] |
| 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} |
| Reply in 中文""" |
|
|
| |
| standard_error_msg = "☹️发生了错误:" |
| error_retrieve_prompt = "请检查网络连接,或者API-Key是否有效。" |
| connection_timeout_prompt = "连接超时,无法获取对话。" |
| read_timeout_prompt = "读取超时,无法获取对话。" |
| proxy_error_prompt = "代理错误,无法获取对话。" |
| ssl_error_prompt = "SSL错误,无法获取对话。" |
| no_apikey_msg = "API key长度不是51位,请检查是否输入正确。" |
|
|
| max_token_streaming = 3500 |
| timeout_streaming = 15 |
| max_token_all = 3500 |
| timeout_all = 200 |
| enable_streaming_option = True |
| HIDE_MY_KEY = False |
|
|