Crates.io | rig-bedrock |
lib.rs | rig-bedrock |
version | |
source | src |
created_at | 2025-04-07 15:32:31.828648+00 |
updated_at | 2025-05-05 16:12:51.086649+00 |
description | AWS Bedrock model provider for Rig integration. |
homepage | |
repository | |
max_upload_size | |
id | 1624375 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This companion crate integrates AWS Bedrock as model provider with Rig.
Add the companion crate to your Cargo.toml
, along with the rig-core crate:
[dependencies]
rig-bedrock = "0.1.0"
rig-core = "0.9.1"
You can also run cargo add rig-bedrock rig-core
to add the most recent versions of the dependencies to your project.
See the /examples
folder for usage examples.
Make sure to have AWS credentials env vars loaded before starting client such as:
export AWS_DEFAULT_REGION=us-east-1
export AWS_SECRET_ACCESS_KEY=.......
export AWS_ACCESS_KEY_ID=......