chore(version): 0.9.25
This commit is contained in:
parent
195ef92acc
commit
c94450db44
@ -80,11 +80,9 @@ afterPack: scripts/after-pack.js
|
|||||||
afterSign: scripts/notarize.js
|
afterSign: scripts/notarize.js
|
||||||
releaseInfo:
|
releaseInfo:
|
||||||
releaseNotes: |
|
releaseNotes: |
|
||||||
增加服务商 LM Studio、魔搭、Perplexity、无问芯穹、DMXAPI
|
消息分组支持网格模式
|
||||||
提及功能支持上下按键循环选择模型
|
知识库支持多选
|
||||||
小程序增加小艺
|
支持库增加 DRAFTS, EPUB
|
||||||
增加Notion连接检测功能
|
知识库支持调节匹配度阈值
|
||||||
编辑模型弹窗搜索模型时,同时搜索模型的名字和ID
|
添加 NotebookLM, Coze 小程序
|
||||||
编辑模型弹窗增加推理模型筛选按钮
|
增加话题提示词
|
||||||
修复思考模型思考时间显示错误
|
|
||||||
修复部分模型翻译出错
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "0.9.24",
|
"version": "0.9.25",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A powerful AI assistant for producer.",
|
"description": "A powerful AI assistant for producer.",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
|
|||||||
@ -42,7 +42,7 @@ interface Props {
|
|||||||
|
|
||||||
const SettingsTab: FC<Props> = (props) => {
|
const SettingsTab: FC<Props> = (props) => {
|
||||||
const { assistant, updateAssistantSettings, updateAssistant } = useAssistant(props.assistant.id)
|
const { assistant, updateAssistantSettings, updateAssistant } = useAssistant(props.assistant.id)
|
||||||
const { messageStyle, codeStyle, fontSize, language, gridColumns } = useSettings()
|
const { messageStyle, codeStyle, fontSize, language } = useSettings()
|
||||||
|
|
||||||
const [temperature, setTemperature] = useState(assistant?.settings?.temperature ?? DEFAULT_TEMPERATURE)
|
const [temperature, setTemperature] = useState(assistant?.settings?.temperature ?? DEFAULT_TEMPERATURE)
|
||||||
const [contextCount, setContextCount] = useState(assistant?.settings?.contextCount ?? DEFAULT_CONTEXTCOUNT)
|
const [contextCount, setContextCount] = useState(assistant?.settings?.contextCount ?? DEFAULT_CONTEXTCOUNT)
|
||||||
@ -69,8 +69,7 @@ const SettingsTab: FC<Props> = (props) => {
|
|||||||
mathEngine,
|
mathEngine,
|
||||||
autoTranslateWithSpace,
|
autoTranslateWithSpace,
|
||||||
pasteLongTextThreshold,
|
pasteLongTextThreshold,
|
||||||
multiModelMessageStyle,
|
multiModelMessageStyle
|
||||||
gridPopoverTrigger
|
|
||||||
} = useSettings()
|
} = useSettings()
|
||||||
|
|
||||||
const onUpdateAssistantSettings = (settings: Partial<AssistantSettings>) => {
|
const onUpdateAssistantSettings = (settings: Partial<AssistantSettings>) => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user