mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-12 13:00:39 +00:00
Merged back the original features and added more progress output
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
parent
5f83124113
commit
c1463eed1e
8 changed files with 48 additions and 7 deletions
|
@ -31,15 +31,16 @@ Importantly, Llama Stack always strives to provide at least one fully "local" pr
|
||||||
|
|
||||||
## Tool Runtime
|
## Tool Runtime
|
||||||
|
|
||||||
## Vector DBs
|
## Vector IO
|
||||||
|
|
||||||
|
Vector IO refers to operations on vector databases, such as adding documents, searching, and deleting documents.
|
||||||
|
Vector IO plays a crucial role in [Retreival Augmented Generation (RAG)](../building_applications/rag), where the vector
|
||||||
|
io and database are used to store and retrieve documents for retrieval.
|
||||||
|
|
||||||
|
The following providers (i.e., databases) are available for Vector IO:
|
||||||
|
|
||||||
```{toctree}
|
```{toctree}
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
vector_db/chromadb
|
vector_io/index
|
||||||
vector_db/sqlite-vec
|
|
||||||
vector_db/faiss
|
|
||||||
vector_db/pgvector
|
|
||||||
vector_db/qdrant
|
|
||||||
vector_db/weaviate
|
|
||||||
```
|
```
|
||||||
|
|
10
docs/source/providers/vector_io/index.md
Normal file
10
docs/source/providers/vector_io/index.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
```{toctree}
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
chromadb
|
||||||
|
sqlite-vec
|
||||||
|
faiss
|
||||||
|
pgvector
|
||||||
|
qdrant
|
||||||
|
weaviate
|
||||||
|
```
|
30
docs/source/providers/vector_io/weaviate.md
Normal file
30
docs/source/providers/vector_io/weaviate.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# Weaviate
|
||||||
|
|
||||||
|
[Weaviate](https://weaviate.io/) is a vector database provider for Llama Stack.
|
||||||
|
It allows you to store and query vectors directly within a Weaviate database.
|
||||||
|
That means you're not limited to storing vectors in memory or in a separate service.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
Weaviate supports:
|
||||||
|
- Store embeddings and their metadata
|
||||||
|
- Vector search
|
||||||
|
- Full-text search
|
||||||
|
- Hybrid search
|
||||||
|
- Document storage
|
||||||
|
- Metadata filtering
|
||||||
|
- Multi-modal retrieval
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To use Weaviate in your Llama Stack project, follow these steps:
|
||||||
|
|
||||||
|
1. Install the necessary dependencies.
|
||||||
|
2. Configure your Llama Stack project to use chroma.
|
||||||
|
3. Start storing and querying vectors.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
To install Weaviate see the [Weaviate quickstart documentation](https://weaviate.io/developers/weaviate/quickstart).
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
See [Weaviate's documentation](https://weaviate.io/developers/weaviate) for more details about Weaviate in general.
|
Loading…
Add table
Add a link
Reference in a new issue