* Update version to 3.74 * Add support for Yi Model API (#1635) * 更新以支持零一万物模型 * 删除newbing * 修改config --------- Co-authored-by: binary-husky <qingxu.fu@outlook.com> * Refactor function signatures in bridge files * fix qwen api change * rename and ref functions * rename and move some cookie functions * 增加haiku模型,新增endpoint配置说明 (#1626) * haiku added * 新增haiku,新增endpoint配置说明 * Haiku added * 将说明同步至最新Endpoint --------- Co-authored-by: binary-husky <qingxu.fu@outlook.com> * private_upload目录下进行文件鉴权 (#1596) * private_upload目录下进行文件鉴权 * minor fastapi adjustment * Add logging functionality to enable saving conversation records * waiting to fix username retrieve * support 2rd web path * allow accessing default user dir --------- Co-authored-by: binary-husky <qingxu.fu@outlook.com> * remove yaml deps * fix favicon * fix abs path auth problem * forget to write a return * add `dashscope` to deps * fix GHSA-v9q9-xj86-953p * 用户名重叠越权访问patch (#1681) * add cohere model api access * cohere + can_multi_thread * fix block user access(fail) * fix fastapi bug * change cohere api endpoint * explain version * # fix com_zhipuglm.py illegal temperature problem (#1687) * Update com_zhipuglm.py # fix 用户在使用 zhipuai 界面时遇到了关于温度参数的非法参数错误 * allow store lm model dropdown * add a btn to reverse previous reset * remove extra fns * Add support for glm-4v model (#1700) * 修改chatglm3量化加载方式 (#1688) Co-authored-by: zym9804 <ren990603@gmail.com> * save chat stage 1 * consider null cookie situation * 在点击复制按钮时激活语音 * miss some parts * move all to js * done first stage * add edge tts * bug fix * bug fix * remove console log * bug fix * bug fix * bug fix * audio switch * update tts readme * remove tempfile when done * disable auto audio follow * avoid play queue update after shut up * feat: minimizing common.js * improve tts functionality * deterine whether the cached model is in choices * Add support for Ollama (#1740) * print err when doc2x not successful * add icon * adjust url for doc2x key version * prepare merge --------- Co-authored-by: Menghuan1918 <menghuan2003@outlook.com> Co-authored-by: Skyzayre <120616113+Skyzayre@users.noreply.github.com> Co-authored-by: XIao <46100050+Kilig947@users.noreply.github.com> Co-authored-by: Yuki <903728862@qq.com> Co-authored-by: zyren123 <91042213+zyren123@users.noreply.github.com> Co-authored-by: zym9804 <ren990603@gmail.com>
121 lines
2.2 KiB
CSS
121 lines
2.2 KiB
CSS
/* hide remove all button */
|
|
.remove-all.svelte-aqlk7e.svelte-aqlk7e.svelte-aqlk7e {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* hide selector border */
|
|
#input-plugin-group .wrap.svelte-aqlk7e.svelte-aqlk7e.svelte-aqlk7e {
|
|
border: 0px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#input-plugin-group .secondary-wrap.svelte-aqlk7e.svelte-aqlk7e.svelte-aqlk7e {
|
|
border: none;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* hide selector label */
|
|
#input-plugin-group .svelte-1gfkn6j {
|
|
visibility: hidden;
|
|
}
|
|
|
|
|
|
/* height of the upload box */
|
|
.wrap.svelte-xwlu1w {
|
|
min-height: var(--size-32);
|
|
}
|
|
|
|
/* status bar height */
|
|
.min.svelte-1yrv54 {
|
|
min-height: var(--size-12);
|
|
}
|
|
|
|
/* copy btn */
|
|
.message-btn-row {
|
|
width: 19px;
|
|
height: 19px;
|
|
position: absolute;
|
|
left: calc(100% + 3px);
|
|
top: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
/* .message-btn-row-leading, .message-btn-row-trailing {
|
|
display: inline-flex;
|
|
gap: 4px;
|
|
} */
|
|
.message-btn-row button {
|
|
font-size: 18px;
|
|
align-self: center;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
white-space: nowrap;
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
padding-block: 2px !important;
|
|
}
|
|
|
|
|
|
/* Scrollbar Width */
|
|
::-webkit-scrollbar {
|
|
height: 12px;
|
|
width: 12px;
|
|
}
|
|
|
|
/* Scrollbar Track */
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
/* Scrollbar Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
/* Scrollbar Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
|
|
/* input btns: clear, reset, stop */
|
|
#input-panel button {
|
|
min-width: min(80px, 100%);
|
|
}
|
|
|
|
/* input btns: clear, reset, stop */
|
|
#input-panel2 button {
|
|
min-width: min(80px, 100%);
|
|
}
|
|
|
|
|
|
#cbs {
|
|
background-color: var(--block-background-fill) !important;
|
|
}
|
|
|
|
#cbsc {
|
|
background-color: var(--block-background-fill) !important;
|
|
}
|
|
|
|
#interact-panel .form {
|
|
border: hidden
|
|
}
|
|
|
|
.drag-area {
|
|
border: solid;
|
|
border-width: thin;
|
|
user-select: none;
|
|
padding-left: 2%;
|
|
}
|
|
|
|
.floating-component #input-panel2 {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border: solid;
|
|
border-width: thin;
|
|
border-top-width: 0;
|
|
}
|