Skip to main content

Chalice x Agents for Amazon Bedrock plug-ins

Project description

Chalice-A4AB

What is this library?

Chalice plugin: Support Agents for Amazon Bedrock

Usage

  1. Install
pip install chalice-a4ab
  1. Replace from chalice import Chalice to from chalice_a4ab import Chalice.

Before:

from chalice import Chalice

app = Chalice("app-name")

@app.router("path-name")
...

After:

from chalice_a4ab import Chalice

app = Chalice("app-name")

@app.router("path-name")
...
  1. Application work on Agents for Amazon Bedrock

Advanced Usage

Create OpenAPI Schema automatically.

  1. Install Chalice-spec
pip install chalice-spec chalice-a4ab
  1. Write Setting
from chalice_a4ab import Chalice, AgentsForAmazonBedrockConfig

# Set Config for Agents for Amazon bedrock
AgentsForAmazonBedrockConfig(
    title="title",
    instructions="Situation Settings for talking with Human and agent.(more than 40 words)",
    description="Description of application",
).apply()

app = Chalice("app-name")

@app.router("path-name")
...

documentation for @app.router sample: https://github.com/TestBoxLab/chalice-spec

  1. Upload by bash

Create AWS Resource for Cloudformation

chalice-a4ab init --profile ${PROFILE_NAME} --region ${REGION_NAME}

Or Update Already Exists AWS Resource

chalice-a4ab sync --profile ${PROFILE_NAME} --region ${REGION_NAME}

Delete AWS Resource

chalice-a4ab delete

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chalice_a4ab-0.1.2.tar.gz (12.6 kB view hashes)

Uploaded Source

Built Distribution

chalice_a4ab-0.1.2-py3-none-any.whl (17.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page