projects/pyrag3/test_search.py
2026-04-05 17:30:07 -07:00

8 lines
175 B
Python

import logging
from pyrag3.search_manager import SearchManager
logging.basicConfig(level=logging.DEBUG)
sm = SearchManager()
res = sm.search("test")
print(f"Results: {res}")