https://github.com/pmeier/ragna-aws
https://github.com/pmeier/ragna-aws
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/pmeier/ragna-aws
- Owner: pmeier
- License: bsd-3-clause
- Created: 2023-12-06T22:29:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-19T09:52:45.000Z (about 2 years ago)
- Last Synced: 2025-03-11T06:56:55.998Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `ragna-aws`
AWS extensions for [Ragna](https://ragna.chat). Currently supports
- [AWS S3](https://aws.amazon.com/s3/) as `ragna.core.Document`
- [AWS Bedrock](https://aws.amazon.com/bedrock/) as `ragna.core.Assistant`s
## Installation
```shell
$ pip install ragna-aws
```
## Usage
Put the following, or a subset thereof, into your Ragna configuration file, e.g.
`ragna.toml`:
```toml
# ...
document = "ragna_aws.S3Document"
assistants = [
# ...
"ragna_aws.Claude",
"ragna_aws.ClaudeInstant",
"ragna_aws.Command",
"ragna_aws.CommandLight",
"ragna_aws.Jurassic2Mid",
"ragna_aws.Jurassic2Ultra",
"ragna_aws.Llama2Chat13B",
"ragna_aws.Llama2Chat70B",
"ragna_aws.TitanTextExpress",
"ragna_aws.TitanTextLite",
# ...
]
# ...
```