File size: 257 Bytes
47372da | 1 2 3 4 5 6 7 8 | 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)))
|