An open API service indexing awesome lists of open source software.

https://github.com/jritsema/agentcore-helloworld

Early preview of the Bedrock AgentCore HTTP runtime
https://github.com/jritsema/agentcore-helloworld

agent agentcore bedrock runtime strands

Last synced: 4 months ago
JSON representation

Early preview of the Bedrock AgentCore HTTP runtime

Awesome Lists containing this project

README

          

# agentcore-helloworld

Early preview of the Bedrock AgentCore HTTP runtime.

## Requirements

- Python
- Docker
- AWS CLI

## Usage

Optionally setup a Python virtual environment.

```sh
make init
```

Install all Python packages.

```sh
make install
```

Deploy agent to AWS. You can run this multiple times after making code changes.

```sh
make deploy app=my_agent
```

Test endpoint with test client.

```sh
make run-client
```

## Development
```
Choose a make command to run

init initialize a new python project
install add a new package (make install ), or install all project dependencies from piplock.txt (make install)
start run local project
run run uvicorn app
test test the invocations endpoint
build build container image
docker-run run container image
deploy deploy the agentcore agent (make deploy app=my-app)
run-client run test client
```

Generated by https://github.com/jritsema/cookiecutter-python