跳转到主要内容

Documentation Index

Fetch the complete documentation index at: https://docs.mirobody.ai/llms.txt

Use this file to discover all available pages before exploring further.

更新

POST /api/v1/holywell/journal/update
Authorization: Bearer <access_token>
Content-Type: application/json
{
  "id":         "<session_id>",
  "text_input": "更新后的文本(可选)",
  "files":      [ /* 可选,新文件列表 */ ],
  "symptom":    [ /* 可选,症状数据 */ ],
  "ts":         1779431900000
}
仅当请求体携带新 text_inputfiles 时需要 BYOK header(会触发 AI 重处理)。仅更新 symptom / ts 等元数据时,只需 Authorization

删除

POST /api/v1/holywell/journal/delete
{ "id": "<session_id>" }
或:
{ "journal_id": 109 }

标已读

POST /api/v1/holywell/journal/mark_read
{ "session_id": "..." }

重处理(重跑 AI)

此接口需要 BYOK header。 详见 BYOK 协议
POST /api/v1/holywell/journal/reprocess
Authorization:   Bearer <access_token>
X-LLM-Provider:  dashscope | volcengine | openai | gemini
X-LLM-Api-Key:   <您的 LLM Key>
Content-Type:    application/json
{ "id": "<session_id>" }
重跑分类 / 摘要 / 症状抽取。前一次失败或切换 LLM 时可用。