vizsum-pro / main_test.py
Vartex39's picture
🔥 Yeni UI entegrasyonu: RAG + geçmiş + özetleme
4c198b1
raw
history blame contribute delete
269 Bytes
from rag_engine import SimpleRAG
rag = SimpleRAG()
rag.load_docs("docs")
rag.build_index()
query = "FPGA ile yapılan veri gizleme uygulamaları neler?"
results = rag.search(query)
for fname, content in results:
print(f"\n--- {fname} ---\n{content[:300]}...\n")