Files
whitepaper/flow/interactive.md
2026-02-03 20:12:59 -08:00

53 lines
1.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
```mermaid
graph TD
subgraph AI_LLM
GEMINI
end
subgraph AI_Server_Proxy
Prompts[Prompt 模板API]
LLM_REQ[AI请求代理 API]
LLM_RESP[AI返回代理 API]
LLM_REQ --> LLM_P[包装提示词]
LLM_P --> GEMINI
GEMINI --> LLM_RESP
end
%% 第一阶段AI 普惠层
subgraph AI_Interaction [1. AI 交互与本地日志]
A[手机端定期检查或者推送]
B(手机端 AI 小助手)
RESULT(手机端展示结果)
A --> Prompts
Prompts --> |模板描述和模板ID| B
B -->|用户输入| C{隐私代理}
C -->|脱敏| LLM_REQ
LLM_RESP -->|回传| RESULT
C -->|本地保存| E[(交互记录 Local DB)]
RESULT --> E
end
%% 第二阶段:智能归档决策
subgraph Decision_Phase [2. 总结与备份触发]
E -->|AI 本地总结| F[资产/信息识别]
F -->|询问用户| G{确认备份?}
G -->|No| H[仅本地留存]
end
%% 第三阶段:哨兵双重加密存储
subgraph Secure_Vault [3. 哨兵双重加密流程]
G -->|Yes: 授权| I[TEE 调用密钥]
I -->|内层加密| J[用户密文 Data_Enc_D0]
J -->|上传| K[Sentinel 服务器]
K -->|服务器公钥/外层加密| L[最终密文 Enc_Data_Final]
L -->|分布式存储| M[(Arweave / Filecoin)]
M -->|记录 Hash| N[智能合约锁死/存证]
end
%% 样式
style I fill:#f96,stroke:#333
style K fill:#bbf,stroke:#333
style M fill:#9f9,stroke:#333
```