Compare commits

...

1 Commits

Author SHA1 Message Date
Joan Fontanals bb9a886374
Update README.md 2023-07-05 14:40:45 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ db = InMemoryExactNNVectorDB[MyDoc](workspace='./vectordb') # notice how `db` is
if __name__ == '__main__':
# make sure to protect this part of the code
with app.serve() as service:
with db.serve() as service:
service.block()
```