# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/l5m6daq
什麼是 RAG 系統?**
下面是一個簡單的基於 RAG 的聊天機器人的例子,用於查詢您的私人知識庫。第一步是以適合查詢的格式存儲內部文檔的知識。我們通過使用嵌入模型嵌入它來做到這一點:𝟭: 將整個知識庫的文本語料庫分割成塊——塊將表示可查詢的單個上下文。感興趣的數據可以來自多個來源,例如由 PDF 報告補充的 Confluence 中的文檔。 𝟮: 使用嵌入模型將每個塊轉換爲矢量嵌入。 𝟯: 將所有矢量嵌入存儲在矢量數 ⌘ Read more