LocalAI/examples/semantic-todo/README.md
Richard Palethorpe 643d85d2cc
feat(stores): Vector store backend (#1795)
Add simple vector store backend

Signed-off-by: Richard Palethorpe <io@richiejp.com>
2024-03-22 21:14:04 +01:00

16 lines
329 B
Markdown

This demonstrates the vector store backend in its simplest form.
You can add tasks and then search/sort them using the TUI.
To build and run do
```bash
$ go get .
$ go run .
```
A seperate LocaAI instance is required of course. For e.g.
```bash
$ docker run -e DEBUG=true --rm -it -p 8080:8080 <LocalAI-image> bert-cpp
```