Skip to content

Instantly share code, notes, and snippets.

View jasonforte's full-sized avatar

Jason Forté jasonforte

View GitHub Profile
@jasonforte
jasonforte / .env
Created August 19, 2025 13:52
Example Python code for interacting with Amazon S3 Vectors (boto3 & langchain)
REGION_NAME = "us-east-1"
AWS_DEFAULT_PROFILE = "demo"
MODEL_ID = "amazon.titan-embed-text-v2:0"
S3_VECTOR_BUCKET_NAME = ""
S3_VECTOR_INDEX_NAME = ""
INPUT_DATASET_PATH = "dataset/occurrences.csv"
MAX_INPUT_DOCUMENTS = "200"
@jasonforte
jasonforte / .env
Created August 31, 2025 11:13
How to Summarize Images with Bedrock Data Automation
AWS_REGION = 'eu-west-1'
BEDROCK_DATA_AUTOMATION_PROJECT_ARN = ''
BEDROCK_DATA_AUTOMATION_INPUT_BUCKET = ''
BEDROCK_DATA_AUTOMATION_OUTPUT_BUCKET = ''
BEDROCK_DATA_AUTOMATION_PROFILE_ARN = ''
@jasonforte
jasonforte / .env
Last active September 1, 2025 12:02
Simple Agent Example - Amazon Bedrock Agents
AWS_REGION_NAME = 'eu-west-1'
BEDROCK_AGENT_ALIAS_ID = ''
BEDROCK_AGENT_ID = ''
@jasonforte
jasonforte / README.md
Created September 11, 2025 16:06
Deploy AWS Lambda Python Webhook to Invoke Amazon Bedrock

Invoke Amazon Bedrock via AWS Lambda

This gist is part of a tutorial by MakeOps on how to invoke Amazon Bedrock from an AWS Lambda function.