Written in Python with FastAPI.
- To get started, we need to deploy resources to create DynamoDB / Bedrock resource. To deploy, please see Deploy using CDK.
- Create poetry environment on your local machine
cd backend
python3 -m venv .venv # Optional (If you don't want to install poetry on your env)
source .venv/bin/activate # Optional (If you don't want to install poetry on your env)
pip install poetry
poetry install
- Configure environment variables
export TABLE_NAME=BedrockChatStack-DatabaseConversationTablexxxx
export ACCOUNT=yyyy
export REGION=ap-northeast-1
export BEDROCK_REGION=ap-southeast-2
export DOCUMENT_BUCKET=bedrockchatstack-documentbucketxxxxxxx
export LARGE_MESSAGE_BUCKET=bedrockchatstack-largemessagebucketxxx
export USER_POOL_ID=xxxxxxxxx
export CLIENT_ID=xxxxxxxxx
poetry run uvicorn app.main:app --reload --host 0.0.0.0 --port 8000
- To refer the specification, access to http://127.0.0.1:8000/docs for Swagger and http://127.0.0.1:8000/redoc for Redoc.
poetry run python tests/test_bedrock.py
poetry run python tests/test_repositories/test_conversation.py