feat: add count to get document count in vector db (#164)

This commit is contained in:
cachho
2023-07-07 11:01:14 +02:00
committed by GitHub
parent f3888cc7a8
commit 41a1dbab0e
2 changed files with 16 additions and 0 deletions

View File

@@ -332,6 +332,14 @@ Resets the database and deletes all embeddings. Irreversible. Requires reinitial
app.reset()
```
### Count
Counts the number of embeddings (chunks) in the database.
```
print(app.count())
# returns: 481
```
# How does it work?
Creating a chat bot over any dataset needs the following steps to happen