Some checks failed
Release / build (push) Failing after 4m28s
## 核心功能 - 双记忆系统合并:picoclaw MEMORY.md + hxclaw 会话摘要 - 独立上下文系统:不依赖 picoclaw session - 向量检索:硅基流动 BGE-M3 API - 三重检测:关键词/向量相似度/命令 ## 数据库 - libSQL (TursoDB) 存储 - sessions + chats 表设计 - 向量存储使用 binary 编码 ## 查询场景 - RecallHistory: 查询所有会话摘要 - RecallTopic: 按话题向量检索 - RecallSession: 指定会话详情 - RecallWithinSession: 会话内检索 ## 导出 - MongoDB 风格:~/.config/hxclaw/export-data.json - chats 嵌套在 sessions 下 - 增量导出,同 session 累加 ## UI 优化 - 合并状态显示(耗时 · 状态 · 消息数) - 颜色设计:金色图标 + 暗绿色/暗红色状态 ## 配置项 - memory.recall: keywords, auto_recall, similarity_threshold - memory.vector: max_search_results - memory.auto_export
33 lines
520 B
YAML
33 lines
520 B
YAML
# hxclaw 项目配置文件
|
|
|
|
# 模拟流式输出配置
|
|
streaming:
|
|
line_delay_ms: 1000
|
|
last_line_delay_ms: 600
|
|
|
|
# Markdown 渲染配置
|
|
markdown:
|
|
theme: dark
|
|
line_width: -1
|
|
|
|
# UI 配置
|
|
ui:
|
|
logo: "🦐"
|
|
user_icon: "👀 "
|
|
|
|
# TTS 语音配置
|
|
tts:
|
|
enabled: false
|
|
port: 9876
|
|
auto: true
|
|
|
|
# 聊天记忆体配置
|
|
memory:
|
|
enabled: false
|
|
auto_session: true
|
|
auto_export: true
|
|
vector:
|
|
base_url: "https://api.siliconflow.cn/v1"
|
|
model: "BAAI/bge-m3"
|
|
dimension: 1024
|
|
max_search_results: 10 |