Skip to content

Commit e36463d

Browse files
committed
chore(release): v4.3.6
1 parent e747ce3 commit e36463d

4 files changed

Lines changed: 91 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [4.3.6] - 2026-08-20
4+
5+
### 更新公告
6+
7+
- **控制台**
8+
- 关系备注支持按内容、来源、QQ 号搜索
9+
- 可在控制台直接手动改写关系备注文本
10+
- 捆绑控制台 WebUI v0.9.10
11+
12+
### Added
13+
14+
* feat(webui): 关系备注支持按内容 / 来源 / QQ 号搜索,并可手动改写备注文本(set-content 接口)
15+
316
## [4.3.5] - 2026-08-20
417

518
### 更新公告

openspec/pallas-console-v1.json

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.1.0",
33
"info": {
44
"title": "Pallas-Bot 控制台 API",
5-
"version": "v4.3.4-97-g56ac5ee6",
5+
"version": "v4.3.5-6-g9c68599b",
66
"description": "仅包含控制台 API 前缀下的接口。"
77
},
88
"paths": {
@@ -18066,6 +18066,81 @@
1806618066
}
1806718067
}
1806818068
},
18069+
"/pallas/api/llm/conversation-kernel/relationship-notes/set-content": {
18070+
"post": {
18071+
"tags": [
18072+
"Pallas-Bot 控制台"
18073+
],
18074+
"summary": " Llm Conversation Kernel Relationship Notes Set Content",
18075+
"operationId": "_llm_conversation_kernel_relationship_notes_set_content_pallas_api_llm_conversation_kernel_relationship_notes_set_content_post",
18076+
"parameters": [
18077+
{
18078+
"name": "token",
18079+
"in": "query",
18080+
"required": false,
18081+
"schema": {
18082+
"anyOf": [
18083+
{
18084+
"type": "string"
18085+
},
18086+
{
18087+
"type": "null"
18088+
}
18089+
],
18090+
"title": "Token"
18091+
}
18092+
},
18093+
{
18094+
"name": "X-Pallas-Token",
18095+
"in": "header",
18096+
"required": false,
18097+
"schema": {
18098+
"anyOf": [
18099+
{
18100+
"type": "string"
18101+
},
18102+
{
18103+
"type": "null"
18104+
}
18105+
],
18106+
"title": "X-Pallas-Token"
18107+
}
18108+
}
18109+
],
18110+
"requestBody": {
18111+
"required": true,
18112+
"content": {
18113+
"application/json": {
18114+
"schema": {
18115+
"type": "object",
18116+
"additionalProperties": true,
18117+
"title": "Body"
18118+
}
18119+
}
18120+
}
18121+
},
18122+
"responses": {
18123+
"200": {
18124+
"description": "Successful Response",
18125+
"content": {
18126+
"application/json": {
18127+
"schema": {}
18128+
}
18129+
}
18130+
},
18131+
"422": {
18132+
"description": "Validation Error",
18133+
"content": {
18134+
"application/json": {
18135+
"schema": {
18136+
"$ref": "#/components/schemas/HTTPValidationError"
18137+
}
18138+
}
18139+
}
18140+
}
18141+
}
18142+
}
18143+
},
1806918144
"/pallas/api/llm/conversation-kernel/knowledge-sources": {
1807018145
"get": {
1807118146
"tags": [

pallas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Pallas Bot 内核包(pallas-core)。"""
22

3-
__version__ = "4.3.5"
3+
__version__ = "4.3.6"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pallas-bot"
3-
version = "4.3.5"
3+
version = "4.3.6"
44
description = "《明日方舟》帕拉斯 Bot"
55
authors = [{ name = "MistEO" }]
66
maintainers = [

0 commit comments

Comments
 (0)