mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-16 16:31:56 +00:00
更新版本至0.7.5,修复洞察模型错误,并在CHANGELOG中记录相关更改。
This commit is contained in:
parent
36778565cd
commit
0f04b3c413
@ -1,4 +1,7 @@
|
|||||||
releases:
|
releases:
|
||||||
|
- version: "0.7.5"
|
||||||
|
features:
|
||||||
|
- "fix insight model error"
|
||||||
- version: "0.7.4"
|
- version: "0.7.4"
|
||||||
fixes:
|
fixes:
|
||||||
- "fix moonshot provider cors error"
|
- "fix moonshot provider cors error"
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "infio-copilot",
|
"id": "infio-copilot",
|
||||||
"name": "Infio Copilot",
|
"name": "Infio Copilot",
|
||||||
"version": "0.7.4",
|
"version": "0.7.5",
|
||||||
"minAppVersion": "0.15.0",
|
"minAppVersion": "0.15.0",
|
||||||
"description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes",
|
"description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes",
|
||||||
"author": "Felix.D",
|
"author": "Felix.D",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-infio-copilot",
|
"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",
|
"description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@ -679,8 +679,8 @@ export class TransEngine {
|
|||||||
|
|
||||||
// 使用默认模型或传入的模型
|
// 使用默认模型或传入的模型
|
||||||
const llmModel: LLMModel = model || {
|
const llmModel: LLMModel = model || {
|
||||||
provider: this.settings.applyModelProvider,
|
provider: this.settings.insightModelProvider,
|
||||||
modelId: this.settings.applyModelId,
|
modelId: this.settings.insightModelId,
|
||||||
};
|
};
|
||||||
|
|
||||||
// 创建 LLM 客户端
|
// 创建 LLM 客户端
|
||||||
@ -1812,8 +1812,8 @@ export class TransEngine {
|
|||||||
|
|
||||||
// 使用默认模型或传入的模型
|
// 使用默认模型或传入的模型
|
||||||
const llmModel: LLMModel = model || {
|
const llmModel: LLMModel = model || {
|
||||||
provider: this.settings.applyModelProvider,
|
provider: this.settings.insightModelProvider,
|
||||||
modelId: this.settings.applyModelId,
|
modelId: this.settings.insightModelId,
|
||||||
};
|
};
|
||||||
|
|
||||||
// 创建 LLM 客户端
|
// 创建 LLM 客户端
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user