更新版本至0.7.5,修复洞察模型错误,并在CHANGELOG中记录相关更改。

This commit is contained in:
duanfuxiang 2025-07-18 00:50:18 +08:00
parent 36778565cd
commit 0f04b3c413
4 changed files with 91 additions and 88 deletions

View File

@ -1,4 +1,7 @@
releases:
- version: "0.7.5"
features:
- "fix insight model error"
- version: "0.7.4"
fixes:
- "fix moonshot provider cors error"

View File

@ -1,7 +1,7 @@
{
"id": "infio-copilot",
"name": "Infio Copilot",
"version": "0.7.4",
"version": "0.7.5",
"minAppVersion": "0.15.0",
"description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes",
"author": "Felix.D",

View File

@ -1,6 +1,6 @@
{
"name": "obsidian-infio-copilot",
"version": "0.7.4",
"version": "0.7.5",
"description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes",
"main": "main.js",
"scripts": {

View File

@ -679,8 +679,8 @@ export class TransEngine {
// 使用默认模型或传入的模型
const llmModel: LLMModel = model || {
provider: this.settings.applyModelProvider,
modelId: this.settings.applyModelId,
provider: this.settings.insightModelProvider,
modelId: this.settings.insightModelId,
};
// 创建 LLM 客户端
@ -1812,8 +1812,8 @@ export class TransEngine {
// 使用默认模型或传入的模型
const llmModel: LLMModel = model || {
provider: this.settings.applyModelProvider,
modelId: this.settings.applyModelId,
provider: this.settings.insightModelProvider,
modelId: this.settings.insightModelId,
};
// 创建 LLM 客户端