https://github.com/harinjy/aws-bedrock-image-generation
aws cdk project to create an api for image generation using bedrock
https://github.com/harinjy/aws-bedrock-image-generation
aws aws-apigateway aws-lambda bedrock cdk stable-diffusion typescript
Last synced: 5 months ago
JSON representation
aws cdk project to create an api for image generation using bedrock
- Host: GitHub
- URL: https://github.com/harinjy/aws-bedrock-image-generation
- Owner: harinjy
- Created: 2024-11-03T17:48:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-04T13:47:02.000Z (over 1 year ago)
- Last Synced: 2025-04-11T11:50:55.484Z (about 1 year ago)
- Topics: aws, aws-apigateway, aws-lambda, bedrock, cdk, stable-diffusion, typescript
- Language: TypeScript
- Homepage:
- Size: 57.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS Bedrock Image Generation
This project uses AWS CDK to set up an infrastructure for image generation using AWS Bedrock.
## Project Overview
This CDK application deploys the necessary resources to leverage AWS Bedrock for image generation tasks. AWS Bedrock is a fully managed service that makes it easy to use foundation models from leading AI companies through an API.
## Prerequisites
Before you begin, ensure you have the following installed:
- Node.js (version 18.x or later)
- AWS CDK CLI
- AWS CLI configured with appropriate credentials
- Model requested and available in your AWS account
## Installation
1. Clone this repository
2. Navigate to the project directory
3. Install dependencies
4. Synthesize the CloudFormation template
5. Deploy the stack
```sh
npm install
npm build
cdk synth
cdk deploy
```
## Cleaning Up
To avoid incurring future charges, remember to destroy the resources when you're done:
```sh
cdk destroy
```