InsureChat / debug_index.py
nkeer1's picture
Clean snapshot: remove PDF for HF main (including asyncio fix)
47372da
Raw
History Blame Contribute Delete
257 Bytes
import insurechat.app as app
print('Index texts:', len(app.index.texts))
if app.index.texts:
print('Sample text 0:', app.index.texts[0][:200])
else:
print('No texts loaded')
print('Query copay results count:', len(app.index.query('copay', topk=3)))