rig-s3vectors 0.2.6

AWS S3Vectors vector store implementation for the rig framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Rig AWS S3Vectors integration
This crate integrates AWS S3Vectors into Rig, allowing you to easily use RAG with AWS' newest offering.

## Installation

```toml
[dependencies]
rig-s3vectors = "0.2.5"
rig-core = "0.36.0"
```

You can also run `cargo add rig-s3vectors rig-core` to add the latest published
versions. The root `rig` facade exposes this crate behind the `s3vectors` feature.

This integration will require that you have an AWS account, although the region does not matter.

See [`examples/s3vectors_vector_search.rs`](./examples/s3vectors_vector_search.rs)
for a vector search example.