Skip to content

Commit c556312

Browse files
author
zxxz1000
committed
Improve repository discoverability messaging
1 parent 2a2c7d3 commit c556312

2 files changed

Lines changed: 56 additions & 0 deletions

File tree

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ It also treats image, audio, and video as first-class citizens. Text, audio, and
5454

5555
**Core keywords:** multimodal memory, video ingest, audio ingest, knowledge graph, TKG, tenant isolation, agent memory
5656

57+
## 🎯 Use Cases
58+
59+
Use LATRACE when you need one of these product capabilities:
60+
61+
- Build long-term memory for AI agents, copilots, or chatbots without hand-rolling a memory stack
62+
- Add unified text, audio, and video memory to the same application instead of splitting modalities into separate silos
63+
- Keep memory tenant-isolated for SaaS products where `tenant_id`, `user_id`, and `memory_domain` must stay clean
64+
- Explain why a retrieval result exists by walking back through evidence, timeline, entity, and graph edges
65+
- Turn session data into a typed graph that supports retrieval, timeline views, entity profiles, and agent tools
66+
5767
## 🌐 One Graph, All Modalities
5868

5969
LATRACE uses the same memory backbone for every modality:
@@ -65,6 +75,24 @@ LATRACE uses the same memory backbone for every modality:
6575

6676
The practical result is simple: a spoken sentence, a frame sequence, and a dialog snippet can be queried, explained, and published together instead of living in separate systems.
6777

78+
## ❓ FAQ
79+
80+
**What is LATRACE?**
81+
82+
LATRACE is a multimodal memory service for AI products. It turns text, audio, image, and video into the same tenant-isolated typed graph and retrieval surface.
83+
84+
**How is LATRACE different from plain RAG?**
85+
86+
Plain RAG retrieves chunks. LATRACE writes memory as entities, events, states, timelines, and evidence chains, then lets you retrieve or query them in structured ways.
87+
88+
**How do audio and video fit into the same graph as text?**
89+
90+
They enter through source-based ingest endpoints, are compiled into the same TKG backbone, and reuse the same isolation, time semantics, and write contracts as dialog memory.
91+
92+
**When should I use Retrieval API vs ADK tools?**
93+
94+
Use the Retrieval API when you want the fastest path to memory-enhanced prompting. Use ADK tools when your agent should ask explicit memory questions at runtime.
95+
6896
---
6997

7098
## 🚀 Quick Start

README_zh.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ LATRACE 是一个**生产级多模态记忆服务**,面向聊天助手、Copil
5454

5555
**核心关键词:** 多模态记忆、视频接入、音频接入、知识图谱、TKG、租户隔离、Agent 记忆
5656

57+
## 🎯 适用场景
58+
59+
当你的产品需要下面这些能力时,LATRACE 就是合适的底座:
60+
61+
- 为聊天助手、Copilot 或 Agent 系统提供长期记忆,而不是自己从零拼一套 memory stack
62+
- 把文本、音频、图片、视频统一接入同一张图,而不是让不同模态各自形成孤岛
63+
- 在 SaaS 场景下严格按 `tenant_id``user_id``memory_domain` 做记忆隔离
64+
- 不只“召回一段文本”,还能回溯证据链、时间线、实体关系和图谱边
65+
- 把会话与媒体数据沉淀成 typed graph,支撑检索、时间线、实体画像和 Agent 工具调用
66+
5767
## 🌐 全模态同图谱
5868

5969
LATRACE 统一使用同一套记忆底座承接所有模态:
@@ -65,6 +75,24 @@ LATRACE 统一使用同一套记忆底座承接所有模态:
6575

6676
结果很直接:对白、语音片段、视频片段不再分属不同系统,而是能一起被查询、解释和发布。
6777

78+
## ❓ 常见问题
79+
80+
**LATRACE 到底是什么?**
81+
82+
LATRACE 是一个面向 AI 产品的多模态记忆服务。它把文本、音频、图片和视频统一编译进同一张带隔离语义的 typed graph 和检索面。
83+
84+
**它和普通 RAG 有什么不同?**
85+
86+
普通 RAG 主要检索文本块。LATRACE 会把记忆写成实体、事件、状态、时间线和证据链,再提供结构化的召回和查询能力。
87+
88+
**音频和视频为什么能和文本落在同一张图里?**
89+
90+
因为它们通过 source-based ingest 入口进入系统,随后被编译到同一套 TKG 主干上,复用和文本一样的隔离键、时间语义与写入契约。
91+
92+
**什么时候该用 Retrieval API,什么时候该用 ADK tools?**
93+
94+
如果你想最快把长期记忆接进 prompt 流程,就用 Retrieval API;如果你希望 Agent 在运行时主动发起记忆查询,就用 ADK tools。
95+
6896
---
6997

7098
<a id="quick-start"></a>

0 commit comments

Comments
 (0)