mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-16 08:21:55 +00:00
更新版本至0.7.5,修复洞察模型错误,并在CHANGELOG中记录相关更改。
This commit is contained in:
parent
36778565cd
commit
0f04b3c413
@ -1,4 +1,7 @@
|
||||
releases:
|
||||
- version: "0.7.5"
|
||||
features:
|
||||
- "fix insight model error"
|
||||
- version: "0.7.4"
|
||||
fixes:
|
||||
- "fix moonshot provider cors error"
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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": {
|
||||
|
||||
@ -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 客户端
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user