Legora / LegalRag /usage.py
sai-Rohan's picture
added llm layer
6064cea
Raw
History Blame Contribute Delete
157 Bytes
from LegalRag.rag_pipeline import RAGPipeline
rag = RAGPipeline()
result = rag.search(
"Can police arrest without warrant?"
)
print(result["answer"])