Skip to main content

Chalice x Agents for Amazon Bedrock plug-ins

Project description

Chalice-A4AB

PyPI - Python Version

tests GitHub License

What is this?

Chalice plugin: Support Agents for Amazon Bedrock

PIP

Chalice-a4ab
https://pypi.org/project/chalice-a4ab/

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 chalice-spec==0.7.0 chalice-a4ab boto3 pydantic
  1. Write Setting
from chalice_a4ab import Chalice, AgentsForAmazonBedrockConfig

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

app = Chalice(app_name="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

Develop

Setup

poetry install

Run test

poetry run pytest

Lisence

MIT

API

Command Line TOOL

Command Descritpion
chalice-a4ab init Create AWS resource for Agents for amazon bedrock
chalice-a4ab sync Sync OpenAPI schema to AWS
chalice-a4ab delete Delete AWS resource for Agents for amazon bedrock
Options Description
--bucket Set S3 bucket name (for put OpenAPI schema)
--profile Set AWS Profile Name
--region Set AWS Region Name
--help Show Help

API

AgentsForAmazonBedrockConfig

Method Type Description
apply - Current instace becomes global variable.
agents_for_bedrock_schema_json - Get OpenAPI Schema
save_schema_to_local - Save OpenAPI Schema to local folder
save_schema_to_s3 - Upload OpenAPI Schema to S3 bucket
save_config_to_local - Save Config setting to local folder
get_global_config static Get global variable.

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.2.1.tar.gz (21.5 kB view hashes)

Uploaded Source

Built Distribution

chalice_a4ab-0.2.1-py3-none-any.whl (30.7 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