https://github.com/gptscript-ai/claude3-bedrock-provider
GPTScript provider for Claude3 on AWS Bedrock
https://github.com/gptscript-ai/claude3-bedrock-provider
Last synced: 10 months ago
JSON representation
GPTScript provider for Claude3 on AWS Bedrock
- Host: GitHub
- URL: https://github.com/gptscript-ai/claude3-bedrock-provider
- Owner: gptscript-ai
- Created: 2024-05-22T20:34:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T22:57:06.000Z (almost 2 years ago)
- Last Synced: 2024-07-16T03:00:01.885Z (almost 2 years ago)
- Language: Python
- Size: 7.81 KB
- Stars: 1
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Claude3 Bedrock Provider
## Usage Example
```
gptscript --default-model='anthropic.claude-3-opus-20240229-v1:0 from github.com/gptscript-ai/claude3-bedrock-provider' examples/helloworld.gpt
```
The Claude3 Anthropic provider can be found [here](https://github.com/gptscript-ai/claude3-anthropic-provider)
## Development
* You need to have AWS credentials and a region configured in your environment.
Run using the following commands
```
python -m venv .venv
source ./.venv/bin/activate
pip install --upgrade -r requirements.txt
./run.sh
```
```
export OPENAI_BASE_URL=http://127.0.0.1:8000/v1
export GPTSCRIPT_DEBUG=true
gptscript --default-model=anthropic.claude-3-opus-20240229-v1:0 examples/bob.gpt
```