# 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/zo6kiha
2 個簡單技巧把 RAG 檢索準確率從 50- 提高到 95 -
在討論了 RAG 的 chunking、embedding、評估指標、評估流程等技術後,我們進一步探討 RAG 系統的實際應用。在實際項目中,RAG(Retrieval-Augmented Generation)系統的檢索階段往往是影響生成效果的核心環節。RAG 系統的工作流程包括數據攝取(Data Ingestion)和數據查詢(Data Querying),其中檢索是至關重要的一步。本文介紹了 ⌘ Read more